{ "info": { "author": "Robert Peteuil", "author_email": "robert.s.peteuil@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: System :: Distributed Computing", "Topic :: System :: Systems Administration" ], "description": "Multi Cloud Control of AWS, Azure, GCP & AliCloud Instances\n===========================================================\n\nUnified Instance control across Enterprise Cloud Providers\n----------------------------------------------------------\n\n|PyPi release| |lang|\n---------------------\n\nMulti-Cloud-Control provides a single solution for controlling cloud VMs/Instances across AWS, Azure, GCP and Alibaba Cloud. It displays a combined list of VM-instances across providers, and allows starting, stopping and making connections. It's extremely useful for shell users who work in multi-cloud environments.\n\nThis utility can be executed with two different commands:\n\n- ``mccl`` - runs in \"List Mode\", which displays a unified list of instances and their state across providers\n- ``mcc`` - runs in \"Command Mode\", which displays a unified instance list and allows for command execution\n\n``mccl``\n--------\n\n- ``mccl`` Displays a unified list of VM/instances and their parameters across providers\n\n - useful when quick access to information is needed; it displays a list of instances and their state and exits\n\n**List Mode screenshot**\n\n\n.. image:: https://user-images.githubusercontent.com/1554603/33449863-4b1e182a-d5c7-11e7-958e-a1fac2ec1ee5.png\n\n\n``mcc``\n-------\n\n- ``mcc`` Displays a unified list of VM-Instances across providers and enables command execution\n\n - Designed for use when control of VM/instance is needed\n - After listing instances and command options, the authenticated connection to the provider is maintained, and it awaits user command selection\n - Supports commands for starting, stopping and connecting (via ssh)\n - Future commands may include: creating/deleting instances, changing configuration (hardware, disks, network), managing imaging/snapshots, managing disk/storage, add/remove to groups/clusters\n\n\n**Command Mode screenshot**\n\n\n.. image:: https://user-images.githubusercontent.com/1554603/33449859-47c4677e-d5c7-11e7-8974-9212c31e785f.png\n\n\nSupported Python versions & Platforms\n-------------------------------------\n\nPython 2.7, 3.4, 3.5, 3.6, 3.7\n\nPlatforms:\n\n- Linux\n- macOS (OS X)\n- Windows 10 - Linux Shells\n\nPre-Reqs\n--------\n\nThe libraries used for secure authentication may require compilation during the installation process on some systems. In order to successfully compile these dependencies, the following packages must be installed before installation:\n\n**Installing Pre-Reqs on Debian / Ubuntu Based Systems:**\n\n.. code:: shell\n\n sudo apt-get install gcc python-dev libssl-dev libffi-dev -y\n\n**Installing Pre-Reqs on RedHat / CentOS Based Systems:**\n\n.. code:: shell\n\n sudo yum install gcc python-devel openssl-devel libffi-devel -y\n\n\nInstallation\n------------\n\nThis utility can be installed with **pip**:\n\n.. code:: shell\n\n pip install --user mcc\n\nConfiguration\n-------------\n\nNew Configuration Instructions can be found on the `mcc wiki `_\n\nThe first time the utility is executed it performs the following setup tasks:\n\n- Creates its config directory **{HOME}/.cloud**\n- Copies a sample config.ini file to the new config dir\n- Instructs the user to add their credential information to config.ini\n\n - The sample config.ini contains sample configuration data, and extensive comments describing how to add your real data.\n\nNotes while editing the config.ini file:\n\n- do not change the names of the keys (titles left of the '=' symbol)\n- lines with comments may be deleted (lines beginning with #)\n\n**config.ini - info section and providers list**\n\n\n.. code:: ini\n\n # 'INFO' SECTION AND 'PROVIDERS' LIST\n # - There must be a section named [info] and it must contain the entry providers\n #\n # - providers is a list of the cloud providers the utility should connect to\n # - ONLY include providers you have credentials for AND want to use\n # - you must use the exact values listed to reference the providers:\n # - \"alicloud\", \"aws\", \"azure\", and \"gcp\"\n # - multiple account per provider is supported, see section at bottom for details\n\n [info]\n # this example - connects to all three providers\n providers = alicloud,aws,azure,gcp\n\n # CREDENTIALS DATA SECTIONS\n # - one section with matching name for each item listed in providers\n # - each section contains the credentials for that provider\n # ex: [aws] - specifies aws credentials\n\n\n**[alicloud] section** - specifies your Alibaba Cloud security credentials and default datacenter region. `Alibaba Cloud region list `_\n\n.. code:: ini\n\n # [alicloud] SECTION REQUIRED if alicloud is listed in providers\n\n [alicloud]\n ali_region = cn-hangzhou\n ali_access_key_id = EXCEWDYSWRP7VZOW\n ali_access_key_secret = CHVsdhV+YgBEjJuZsJNstLGgRY43kZggNHQ\n\n\n**[aws] section** - specifies your AWS security credentials and default datacenter region. `Information on AWS Credentials `_\n\n\n.. code:: ini\n\n # [aws] SECTION REQUIRED if aws is listed in providers\n\n [aws]\n aws_access_key_id = EXCEWDYSWRP7VZOW4VAW\n aws_secret_access_key = CHVsdhV+YgBEjJuZsJNstLGgRY43kZggNHQEh/JK\n aws_default_region = us-west-1\n\n\n**[azure] section** - specifies your Azure Tenant-ID, Subscription-ID, Application-ID and Application-Secret. `Creating an Azure Service Principal `_\n\n\n.. code:: ini\n\n # [azure] SECTION REQUIRED if azure is listed in providers\n\n [azure]\n az_tenant_id = a3b7de99-6c36-e71f-e7d7-c5a1eefd9c01\n az_sub_id = 2ac1b147-fdca-947c-4907-3f302a667100\n az_app_id = ee16ad1d-d266-bffa-031c-008ab40d971e\n az_app_sec = 22918C9e1cCC7665a+b3e4052f942630aE979CF68/v=\n\n\n**[gcp] section** - supports two authentication types. Service Account is likely easier for many users, but both options are available. Specify the type of Authentication: (S)ervice or (A)pplication (defaults to service if not specified), Google Compute project-id, and the remaining variables required for the authentication type as described below. `Information on Setting up Service Account Authentication `_\n\n\n.. code:: ini\n\n # [gcp] SECTION REQUIRED if gcp is listed in providers\n\n [gcp]\n gcp_auth_type = S\n gcp_proj_id = sampleproject-634368\n gcp_svc_acct_email = 12345678911-compute@developer.gserviceaccount.com\n gcp_pem_file = SampleProject-72fcfdb29717.json\n\n # gcp SUPPORTS TWO AUTHENTICATION TYPES:\n #\n # gcp_auth_type - specifies which type to use ( S or A )\n # - if omitted, it defaults to Service Account Auth\n #\n # S = Service Account Auth (default)\n # - requires that the service account key (json file) copied or moved to config dir\n # (the example above lists the values needed for Service Account Auth)\n #\n # A = Installed Application Auth - when using this auth type:\n # - the first time the program is run with the proper credentials listed\n # - it displays a URL in the terminal session\n # - this URL must be pasted into a web-browser to display a code\n # - copy the code from the web browser and paste it into the terminal\n # - then program will then continue running\n #\n # The example below lists the values needed for Installed Application Auth\n #\n # [gcp]\n # gcp_auth_type = A\n # gcp_proj_id = sampleproject-634368\n # gcp_client_id = 12345678911-LZXcWZmyzU3v3qNPPJNEimoKgh9Wruo4.apps.googleusercontent.com\n # gcp_client_sec = t4ugvWTocssrVtX448tDEWBW\n\n\n**specifying multiple accounts** - for one or more providers\n\n\n.. code:: ini\n\n # Step 1\n # - add an additional entry to the 'providers' list - in this exact format:\n # - the entry begins with the standard values: aws, azure, gcp\n # - it is immediately followed by a numeric suffix\n # ex: aws2 (for a 2nd set of aws credentials)\n # - no additional characters are allowed or it will not be recognized and fail\n #\n # Step 2\n # - add a section below of the same name containing the corresponding credentials\n # - ex: [aws2] (containing the 2nd set of aws credentials, for the earlier example)\n # - this new credentials section must include all credentials for the 2nd account,\n # even if some are the same as the primary account.\n\n\n\n.. |PyPi release| image:: https://img.shields.io/pypi/v/mcc.svg\n :target: https://pypi.python.org/pypi/mcc\n\n.. |lang| image:: https://img.shields.io/badge/language-python-3572A5.svg\n :target: https://github.com/robertpeteuil/multi-cloud-control\n\n.. |Dependency| image:: https://gemnasium.com/badges/github.com/robertpeteuil/multi-cloud-control.svg\n :target: https://gemnasium.com/github.com/robertpeteuil/multi-cloud-control", "description_content_type": "", "docs_url": null, "download_url": "https://pypi.python.org/pypi/mcc", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/robertpeteuil/multi-cloud-control", "keywords": "aws-ec2 gcp-compute azure-vm alibaba alicloud utility ssh start stop connect", "license": "GNU General Public License v3 (GPLv3)", "maintainer": "", "maintainer_email": "", "name": "mcc", "package_url": "https://pypi.org/project/mcc/", "platform": "", "project_url": "https://pypi.org/project/mcc/", "project_urls": { "Download": "https://pypi.python.org/pypi/mcc", "Homepage": "https://github.com/robertpeteuil/multi-cloud-control" }, "release_url": "https://pypi.org/project/mcc/0.9.8/", "requires_dist": null, "requires_python": "", "summary": "Command-Line Instance Control for AWS, Azure, GCP and AliCloud", "version": "0.9.8" }, "last_serial": 4189483, "releases": { "0.0.10": [ { "comment_text": "", "digests": { "md5": "fe40f72e85ae9eeeb2f77f34be36f151", "sha256": "45bbcb61a8c23769721a09056402e5749d5a17d46f27a31dc9d5a935a7da30be" }, "downloads": -1, "filename": "mcc-0.0.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fe40f72e85ae9eeeb2f77f34be36f151", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11611, "upload_time": "2017-06-01T21:30:30", "url": "https://files.pythonhosted.org/packages/6c/4f/fbfd063a4cd282aa2765d9265051289215dfafba69abe674893fb713631c/mcc-0.0.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b6d36e498279cf954c81e14d5e4176ee", "sha256": "8a2cea75d85ae5f0ea384d77155d47cef5111d5df1b1d67e64bc0cde0e150d22" }, "downloads": -1, "filename": "mcc-0.0.10.tar.gz", "has_sig": false, "md5_digest": "b6d36e498279cf954c81e14d5e4176ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18483, "upload_time": "2017-06-01T21:30:33", "url": "https://files.pythonhosted.org/packages/d6/fc/df24852c35ebebe946a84cf5c75e4d3573f4537addf5c08c7f3e0c860b7c/mcc-0.0.10.tar.gz" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "6f2c745fc2c772b3c14f767533380d35", "sha256": "e2a47aa06a625418d5b321058663037e91a6d698ae5cdb2171bc67ccd9612090" }, "downloads": -1, "filename": "mcc-0.0.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6f2c745fc2c772b3c14f767533380d35", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11580, "upload_time": "2017-06-01T21:42:55", "url": "https://files.pythonhosted.org/packages/c2/73/6782a03ff10521fd9b12c2cb67fddfa99de162749d50cd9b9f42a981f472/mcc-0.0.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "914db08cb0a9163338d6502b4ae1f632", "sha256": "7c0fef3f219f9964d307519a7d63c81787376bfe0c7f35767ec73143a8079dde" }, "downloads": -1, "filename": "mcc-0.0.11.tar.gz", "has_sig": false, "md5_digest": "914db08cb0a9163338d6502b4ae1f632", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18366, "upload_time": "2017-06-01T21:42:57", "url": "https://files.pythonhosted.org/packages/fa/4d/74c8557ea8ddafce68500b55ea81ea93177cad59e73f259a89b7ee609683/mcc-0.0.11.tar.gz" } ], "0.0.20": [ { "comment_text": "", "digests": { "md5": "64a689fb7ce84c5655033555abf8f156", "sha256": "93f1290953af5f698c80a3a64fb7490ca8fa94b2b4ed98a37e0cfd2b04955888" }, "downloads": -1, "filename": "mcc-0.0.20-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "64a689fb7ce84c5655033555abf8f156", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15714, "upload_time": "2017-06-04T22:33:01", "url": "https://files.pythonhosted.org/packages/97/36/158b622e5fe27c9619e9e52aacce6161fdcb793b31abcf09c72f6ed13fde/mcc-0.0.20-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "25d4c9a8b84f854015bf629f0ee814a7", "sha256": "6a1a37ffbeb9cc57462cf58cb981a4275e1e0c72c9016ea551cb8480bb31c813" }, "downloads": -1, "filename": "mcc-0.0.20.tar.gz", "has_sig": true, "md5_digest": "25d4c9a8b84f854015bf629f0ee814a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20246, "upload_time": "2017-06-04T22:32:39", "url": "https://files.pythonhosted.org/packages/5a/24/306db8a7929fbce5cb1938cff71ba51f5dc9bdb1be7b1faec07f06aa580e/mcc-0.0.20.tar.gz" } ], "0.0.33": [ { "comment_text": "", "digests": { "md5": "2692bfc87b0b13f95e3e77bdb1ce8fca", "sha256": "1784be5de506548039b788b6b0ff3618226cbe90c403ed5e6459d8f7378fd9cd" }, "downloads": -1, "filename": "mcc-0.0.33-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2692bfc87b0b13f95e3e77bdb1ce8fca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19212, "upload_time": "2017-06-12T23:49:54", "url": "https://files.pythonhosted.org/packages/c5/14/13c767c99190ef9805c4f8d43362ebb574f24a04739c39f5b689f45a73d0/mcc-0.0.33-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eccbac4a39e40e28e471d6c4e0ab4f16", "sha256": "c86f8761a655ef165f19dff1dee6ffcc88f24e40d0bc800641c12b0df484f2e5" }, "downloads": -1, "filename": "mcc-0.0.33.tar.gz", "has_sig": false, "md5_digest": "eccbac4a39e40e28e471d6c4e0ab4f16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22917, "upload_time": "2017-06-12T23:49:56", "url": "https://files.pythonhosted.org/packages/6b/b6/201611a1c55155e8d94d83be2d43c2b330e1aac7edca084c5cee4048bffd/mcc-0.0.33.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "7461123742cc0a20c2d0e0b17cea36c4", "sha256": "cc95b3e46088689f630d5b275e68ee14048338c2ea77eee96518b49bd9265b13" }, "downloads": -1, "filename": "mcc-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7461123742cc0a20c2d0e0b17cea36c4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22339, "upload_time": "2017-08-24T00:26:06", "url": "https://files.pythonhosted.org/packages/71/2e/fdf7e48d76bf676c735ff9374aecc582ad5ad8a8404cfec60f0ecb4f738f/mcc-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "09e73b04b4141a821d80d3784ff35daf", "sha256": "c61900c0af4ed53e209fa260b8241857942bee094747084228e372e43d5cfd27" }, "downloads": -1, "filename": "mcc-0.1.0.tar.gz", "has_sig": true, "md5_digest": "09e73b04b4141a821d80d3784ff35daf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25729, "upload_time": "2017-08-24T00:26:15", "url": "https://files.pythonhosted.org/packages/2f/54/5f2eee8ef4828ad1b4b336d77164cc1082e1687d81b1c930076404e542f8/mcc-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "2dbc0b7a7005a196166ca1ad55f5029a", "sha256": "8e605954ef0297a84821552941af2188339cffde521d26c8914d82ce793559f2" }, "downloads": -1, "filename": "mcc-0.1.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "2dbc0b7a7005a196166ca1ad55f5029a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 24727, "upload_time": "2017-10-26T15:31:26", "url": "https://files.pythonhosted.org/packages/32/1c/547bba0d72744c845a3c36dec97928edaec6cfca6ec9826ac0a4d2785685/mcc-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aa363da1209481208ea383974f5a7170", "sha256": "63d748c00dc8998465b9de569fec4a9ce67d62f37d5cce97c5c3bc91c9b99fa2" }, "downloads": -1, "filename": "mcc-0.1.1.tar.gz", "has_sig": true, "md5_digest": "aa363da1209481208ea383974f5a7170", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26995, "upload_time": "2017-10-26T15:31:09", "url": "https://files.pythonhosted.org/packages/89/1f/52586ba8a8bc472d60adaf662deaa4edc4017decb79312cae991ac13a384/mcc-0.1.1.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "5931cb578db64a68030f3cbc964a80db", "sha256": "4c3d978f34f52edbba0b973fbf1c7e1204d31ab95602af2ef064870624fab710" }, "downloads": -1, "filename": "mcc-0.9.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "5931cb578db64a68030f3cbc964a80db", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25513, "upload_time": "2017-11-30T23:01:43", "url": "https://files.pythonhosted.org/packages/90/70/8b63793940d2be090e220a3ea02a2f75822a0a0a1010d6fa37e7b34a5145/mcc-0.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d6339ecb48247e044b32abf5e6dc73a1", "sha256": "9b951982c967fce56b3f122682c9baa4a30d63b3d1e1f328b9bd1c6d84c940d7" }, "downloads": -1, "filename": "mcc-0.9.1.tar.gz", "has_sig": true, "md5_digest": "d6339ecb48247e044b32abf5e6dc73a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27800, "upload_time": "2017-11-30T23:01:28", "url": "https://files.pythonhosted.org/packages/71/83/ce04b177a156b03193c93a1f9f4da4ab743bd3d56c0443e49e1fc9d4ffc0/mcc-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "4a09bbbcc821d791702dc8a35e5a9835", "sha256": "1ace4abc8a07200790d1098ff8a88fe9998506526fa273a757c0f594db8a0bba" }, "downloads": -1, "filename": "mcc-0.9.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4a09bbbcc821d791702dc8a35e5a9835", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25468, "upload_time": "2018-01-07T18:31:35", "url": "https://files.pythonhosted.org/packages/03/59/c05d0baedce25580403a600320307d2035ad636d56b8f002e07b2610e566/mcc-0.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33321e629a33af756420ab8e72c5b7bd", "sha256": "0eb11aec88ae9ce7f6ad819a2d7e3939bf1128890aae2d3bb63be701035dee3c" }, "downloads": -1, "filename": "mcc-0.9.2.tar.gz", "has_sig": true, "md5_digest": "33321e629a33af756420ab8e72c5b7bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27829, "upload_time": "2018-01-07T18:30:59", "url": "https://files.pythonhosted.org/packages/3d/63/d599b9626bf100a02114dc7816eb4dfe9e25270998c6a6cd76e900d40bec/mcc-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "a255f156968cc46e1e6929783c13884c", "sha256": "fcbca3cca340500ca961ed77b3a87024e49c0a91b0354f19f436788adbe7e8c8" }, "downloads": -1, "filename": "mcc-0.9.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "a255f156968cc46e1e6929783c13884c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25430, "upload_time": "2018-02-09T19:06:22", "url": "https://files.pythonhosted.org/packages/32/db/0cdcfe87e5d00f8dc15525b12771a8d877b70698e0dce7b427cd1db966e8/mcc-0.9.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce4dd9621e76a2ed370b66d668c85508", "sha256": "4b5f496c8c7a006b0c628aa883fb87bf58ef45f27fba8b648823240239a8fcd6" }, "downloads": -1, "filename": "mcc-0.9.3.tar.gz", "has_sig": true, "md5_digest": "ce4dd9621e76a2ed370b66d668c85508", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27837, "upload_time": "2018-02-09T19:06:06", "url": "https://files.pythonhosted.org/packages/e6/4c/237e177e0745c170887404efa52ff6385db1bbd7bb5f21717b9a5c3bbbf3/mcc-0.9.3.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "678e66fd01bf4fd0ec2fa6187c451b7e", "sha256": "c061694c9fe535d7fe9c9c3f375251d9678fe74838035ab9adbfc204675141ee" }, "downloads": -1, "filename": "mcc-0.9.5-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "678e66fd01bf4fd0ec2fa6187c451b7e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21073, "upload_time": "2018-08-06T20:25:57", "url": "https://files.pythonhosted.org/packages/58/7f/db9a3fe86e8795652a7ae34be6aa0163c9bc65500e3f13ef2dc2cfc50a22/mcc-0.9.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "818550d38ece270a1305073815adad78", "sha256": "e4768fed98b9a5a74e668f776d661b3b534c441a3bbe23719d84fea0e0b7836f" }, "downloads": -1, "filename": "mcc-0.9.5.tar.gz", "has_sig": true, "md5_digest": "818550d38ece270a1305073815adad78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28280, "upload_time": "2018-08-06T20:25:40", "url": "https://files.pythonhosted.org/packages/67/09/c467f60b724d73f82fad22fcf1eba17ee439fa00a774a4749d4be6b3b3bc/mcc-0.9.5.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "ae6200178e931bca2cb5c841d0e7e5f3", "sha256": "c027634642d5239eecb301e73ef47b2f90042ce65308ffad3cb57fff5eb368d6" }, "downloads": -1, "filename": "mcc-0.9.6-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "ae6200178e931bca2cb5c841d0e7e5f3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21098, "upload_time": "2018-08-07T15:56:07", "url": "https://files.pythonhosted.org/packages/35/6c/7cebfdf2927816afb0d8ccba128201fc8709a3667ef5eeea9acdb47d5e58/mcc-0.9.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "38969936ece0a2b6b0e9fe9a7e42d869", "sha256": "a12643f63004e3966d739c9873cfa1993bc3e5c08d8e4fe6c9c320047ced47c3" }, "downloads": -1, "filename": "mcc-0.9.6.tar.gz", "has_sig": true, "md5_digest": "38969936ece0a2b6b0e9fe9a7e42d869", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28311, "upload_time": "2018-08-07T15:56:00", "url": "https://files.pythonhosted.org/packages/74/97/9dc8dccfb3156730655b92ea11ad91b63acc5509f16bb635c77f78d70bec/mcc-0.9.6.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "2727a70fef5024652b3f2bb4751386f3", "sha256": "fcc48eca80bb3594dedb0af4759276376b0e7184a5c2451fc17f76efd6959b12" }, "downloads": -1, "filename": "mcc-0.9.7-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "2727a70fef5024652b3f2bb4751386f3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21084, "upload_time": "2018-08-20T18:30:09", "url": "https://files.pythonhosted.org/packages/46/98/e2a742051af55d4657f2f2ef155c2f153f578d64db9e3c7e9c0d4a565b8d/mcc-0.9.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5f9c89838f0e75024455878c0270c1e5", "sha256": "1cd56b8004b8f783d15ab57d9851bf8b9be19b8099511e9dee9a793ec0c6c4e3" }, "downloads": -1, "filename": "mcc-0.9.7.tar.gz", "has_sig": true, "md5_digest": "5f9c89838f0e75024455878c0270c1e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28355, "upload_time": "2018-08-20T18:29:22", "url": "https://files.pythonhosted.org/packages/3c/7f/cd34c3cb501698c6068ac7f041333878b929df3e52ba952aaccb0359c17e/mcc-0.9.7.tar.gz" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "3482c950932268dbe4348650ebcd4d8f", "sha256": "f852a85352e7bf2d27a76b568adde30ae1f47538095b9ff15b1f11d887ff8d08" }, "downloads": -1, "filename": "mcc-0.9.8-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "3482c950932268dbe4348650ebcd4d8f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21085, "upload_time": "2018-08-20T18:44:58", "url": "https://files.pythonhosted.org/packages/de/f3/b3b9ec0ea15119e0dfff0ab4bf516aa27c8d016fa4e68868025605f2c1f5/mcc-0.9.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "88e3f3cc2eb24e3e98d3a0884a2d44d3", "sha256": "194c2173d2e40e03ae9862dd310d666ce72b4f2319310dae2212e4595a2893d4" }, "downloads": -1, "filename": "mcc-0.9.8.tar.gz", "has_sig": true, "md5_digest": "88e3f3cc2eb24e3e98d3a0884a2d44d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28356, "upload_time": "2018-08-20T18:44:55", "url": "https://files.pythonhosted.org/packages/68/3a/2ab03f0ce01911ca54c0bf74b1316e049cf69ee7ed13e1290eb9bf1252d9/mcc-0.9.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "3482c950932268dbe4348650ebcd4d8f", "sha256": "f852a85352e7bf2d27a76b568adde30ae1f47538095b9ff15b1f11d887ff8d08" }, "downloads": -1, "filename": "mcc-0.9.8-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "3482c950932268dbe4348650ebcd4d8f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21085, "upload_time": "2018-08-20T18:44:58", "url": "https://files.pythonhosted.org/packages/de/f3/b3b9ec0ea15119e0dfff0ab4bf516aa27c8d016fa4e68868025605f2c1f5/mcc-0.9.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "88e3f3cc2eb24e3e98d3a0884a2d44d3", "sha256": "194c2173d2e40e03ae9862dd310d666ce72b4f2319310dae2212e4595a2893d4" }, "downloads": -1, "filename": "mcc-0.9.8.tar.gz", "has_sig": true, "md5_digest": "88e3f3cc2eb24e3e98d3a0884a2d44d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28356, "upload_time": "2018-08-20T18:44:55", "url": "https://files.pythonhosted.org/packages/68/3a/2ab03f0ce01911ca54c0bf74b1316e049cf69ee7ed13e1290eb9bf1252d9/mcc-0.9.8.tar.gz" } ] }