{ "info": { "author": "Martin Simon", "author_email": "me@martinsimon.me", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "# ![icon](https://raw.githubusercontent.com/barnumbirr/coinmarketcap/master/doc/coinmarketcap.png) coinmarketcap\n\n[![PyPi Version](http://img.shields.io/pypi/v/coinmarketcap.svg)](https://pypi.python.org/pypi/coinmarketcap/)\n\n**coinmarketcap** is an APACHE licensed library written in Python providing an easy to use wrapper around the [coinmarketcap.com](http://coinmarketcap.com/) API. This library has been tested with Python 2.7.x and Python 3.6.x and uses.\n\nAs of version 5.0.0 this library uses coinmarketcap's ```Public API Version 2``` as ```Public API Version 1``` will be shutdown on **November 30th, 2018**.\n\n## Installation:\n\nFrom source use\n\n $ python setup.py install\n\nor install from PyPi\n\n $ pip install coinmarketcap\n\n## API Documentation:\n\n**Please note that all results are cached for 120 seconds.**\n\nThis API can currently retrieve the following data from [coinmarketcap.com](http://coinmarketcap.com/):\n\n#### **`GET /v2/listings/`**\n- **`Description`** - This endpoint displays all active cryptocurrency listings in one call. Use the ```id``` field on the ```ticker``` endpoint to query more information on a specific cryptocurrency.\n- **`Optional parameters:`**\n - None\n\n```python\n>>> from coinmarketcap import Market\n>>> coinmarketcap = Market()\n>>> coinmarketcap.listings()\n{\n \"cached\": false,\n \"data\": [\n {\n \"symbol\": \"BTC\",\n \"website_slug\": \"bitcoin\",\n \"id\": 1,\n \"name\": \"Bitcoin\"\n },\n {\n \"symbol\": \"LTC\",\n \"website_slug\": \"litecoin\",\n \"id\": 2,\n \"name\": \"Litecoin\"\n },\n {\n \"symbol\": \"NMC\",\n \"website_slug\": \"namecoin\",\n \"id\": 3,\n \"name\": \"Namecoin\"\n },\n ...\n ],\n \"metadata\": {\n \"timestamp\": 1525776852,\n \"num_cryptocurrencies\": 1597,\n \"error\": null\n }\n}\n```\n\n#### **`GET /v2/ticker/`**\n- **`Description`** - This endpoint displays cryptocurrency ticker data in order of rank. The maximum number of results per call is ```100```. Pagination is possible by using the ```start``` and ```limit``` parameters.\n- **`Optional parameters:`**\n - **(int) start** - return results from rank [start] and above (default is 1)\n - **(int) limit** - return a maximum of [limit] results (default is 100; max is 100)\n - **(string) convert** - return pricing info in terms of another currency.\n Valid fiat currency values are: \"AUD\", \"BRL\", \"CAD\", \"CHF\", \"CLP\", \"CNY\", \"CZK\", \"DKK\", \"EUR\", \"GBP\", \"HKD\", \"HUF\", \"IDR\", \"ILS\", \"INR\", \"JPY\", \"KRW\", \"MXN\", \"MYR\", \"NOK\", \"NZD\", \"PHP\", \"PKR\", \"PLN\", \"RUB\", \"SEK\", \"SGD\", \"THB\", \"TRY\", \"TWD\", \"ZAR\"\n Valid cryptocurrency values are: \"BTC\", \"ETH\" \"XRP\", \"LTC\", and \"BCH\"\n\n```python\n>>> from coinmarketcap import Market\n>>> coinmarketcap = Market()\n>>> coinmarketcap.ticker(start=0, limit=3, convert='EUR')\n{\n \"cached\": false,\n \"data\": {\n \"1\": {\n \"last_updated\": 1525778371,\n \"name\": \"Bitcoin\",\n \"symbol\": \"BTC\",\n \"rank\": 1,\n \"total_supply\": 17021800.0,\n \"quotes\": {\n \"USD\": {\n \"market_cap\": 158065966762.0,\n \"percent_change_7d\": 3.19,\n \"price\": 9286.09,\n \"percent_change_24h\": -0.5,\n \"volume_24h\": 7003230000.0,\n \"percent_change_1h\": -0.48\n },\n \"EUR\": {\n \"market_cap\": 132684366083.0,\n \"percent_change_7d\": 3.19,\n \"price\": 7794.96681216,\n \"percent_change_24h\": -0.5,\n \"volume_24h\": 5878679339.519999,\n \"percent_change_1h\": -0.48\n }\n },\n \"max_supply\": 21000000.0,\n \"circulating_supply\": 17021800.0,\n \"website_slug\": \"bitcoin\",\n \"id\": 1\n },\n \"1027\": {\n \"last_updated\": 1525778355,\n \"name\": \"Ethereum\",\n \"symbol\": \"ETH\",\n \"rank\": 2,\n \"total_supply\": 99305267.0,\n \"quotes\": {\n \"USD\": {\n \"market_cap\": 73659184992.0,\n \"percent_change_7d\": 12.49,\n \"price\": 741.745,\n \"percent_change_24h\": 2.05,\n \"volume_24h\": 3503160000.0,\n \"percent_change_1h\": -0.88\n },\n \"EUR\": {\n \"market_cap\": 61831287703.0,\n \"percent_change_7d\": 12.49,\n \"price\": 622.63855488,\n \"percent_change_24h\": 2.05,\n \"volume_24h\": 2940636579.839999,\n \"percent_change_1h\": -0.88\n }\n },\n \"max_supply\": null,\n \"circulating_supply\": 99305267.0,\n \"website_slug\": \"ethereum\",\n \"id\": 1027\n },\n \"52\": {\n \"last_updated\": 1525778642,\n \"name\": \"Ripple\",\n \"symbol\": \"XRP\",\n \"rank\": 3,\n \"total_supply\": 99992263539.0,\n \"quotes\": {\n \"USD\": {\n \"market_cap\": 31994651347.0,\n \"percent_change_7d\": -0.95,\n \"price\": 0.816643,\n \"percent_change_24h\": -0.98,\n \"volume_24h\": 469711000.0,\n \"percent_change_1h\": -0.96\n },\n \"EUR\": {\n \"market_cap\": 26857078212.0,\n \"percent_change_7d\": -0.95,\n \"price\": 0.6855097336,\n \"percent_change_24h\": -0.98,\n \"volume_24h\": 394286686.4639999,\n \"percent_change_1h\": -0.96\n }\n },\n \"max_supply\": 100000000000.0,\n \"circulating_supply\": 39178259468.0,\n \"website_slug\": \"ripple\",\n \"id\": 52\n }\n },\n \"metadata\": {\n \"timestamp\": 1525778464,\n \"num_cryptocurrencies\": 1597,\n \"error\": null\n }\n}\n```\n\n#### **`GET /v2/ticker/{id}`**\n- **`Description`** - This endpoint displays ticker data for a specific cryptocurrency. Use the ```id``` field from the ```listings``` endpoint in the URL.\n- **`Optional parameters:`**\n - **(string) convert** - return pricing info in terms of another currency.\n Valid fiat currency values are: \u201cAUD\u201d, \u201cBRL\u201d, \u201cCAD\u201d, \u201cCHF\u201d, \u201cCLP\u201d, \u201cCNY\u201d, \u201cCZK\u201d, \u201cDKK\u201d, \u201cEUR\u201d, \u201cGBP\u201d, \u201cHKD\u201d, \u201cHUF\u201d, \u201cIDR\u201d, \u201cILS\u201d, \u201cINR\u201d, \u201cJPY\u201d, \u201cKRW\u201d, \u201cMXN\u201d, \u201cMYR\u201d, \u201cNOK\u201d, \u201cNZD\u201d, \u201cPHP\u201d, \u201cPKR\u201d, \u201cPLN\u201d, \u201cRUB\u201d, \u201cSEK\u201d, \u201cSGD\u201d, \u201cTHB\u201d, \u201cTRY\u201d, \u201cTWD\u201d, \u201cZAR\u201d\n Valid cryptocurrency values are: \u201cBTC\u201d, \u201cETH\u201d \u201cXRP\u201d, \u201cLTC\u201d, and \u201cBCH\u201d\n\n```python\n>>> coinmarketcap.ticker(1, convert='EUR')\n{\n \"cached\": false,\n \"data\": {\n \"last_updated\": 1525778672,\n \"name\": \"Bitcoin\",\n \"symbol\": \"BTC\",\n \"rank\": 1,\n \"total_supply\": 17021800.0,\n \"quotes\": {\n \"USD\": {\n \"market_cap\": 157721275312.0,\n \"percent_change_7d\": 2.96,\n \"price\": 9265.84,\n \"percent_change_24h\": -0.74,\n \"volume_24h\": 6982350000.0,\n \"percent_change_1h\": -0.73\n },\n \"EUR\": {\n \"market_cap\": 132395023808.0,\n \"percent_change_7d\": 2.96,\n \"price\": 7777.96847616,\n \"percent_change_24h\": -0.74,\n \"volume_24h\": 5861152166.399999,\n \"percent_change_1h\": -0.73\n }\n },\n \"max_supply\": 21000000.0,\n \"circulating_supply\": 17021800.0,\n \"website_slug\": \"bitcoin\",\n \"id\": 1\n },\n \"metadata\": {\n \"timestamp\": 1525778504,\n \"error\": null\n }\n}\n```\n\n#### **`GET /v2/global/`**\n- **`Description`** - This endpoint displays the global data found at the top of coinmarketcap.com.\n- **`Optional parameters:`**\n - **(string) convert** - return pricing info in terms of another currency.\n Valid fiat currency values are: \u201cAUD\u201d, \u201cBRL\u201d, \u201cCAD\u201d, \u201cCHF\u201d, \u201cCLP\u201d, \u201cCNY\u201d, \u201cCZK\u201d, \u201cDKK\u201d, \u201cEUR\u201d, \u201cGBP\u201d, \u201cHKD\u201d, \u201cHUF\u201d, \u201cIDR\u201d, \u201cILS\u201d, \u201cINR\u201d, \u201cJPY\u201d, \u201cKRW\u201d, \u201cMXN\u201d, \u201cMYR\u201d, \u201cNOK\u201d, \u201cNZD\u201d, \u201cPHP\u201d, \u201cPKR\u201d, \u201cPLN\u201d, \u201cRUB\u201d, \u201cSEK\u201d, \u201cSGD\u201d, \u201cTHB\u201d, \u201cTRY\u201d, \u201cTWD\u201d, \u201cZAR\u201d\n Valid cryptocurrency values are: \u201cBTC\u201d, \u201cETH\u201d \u201cXRP\u201d, \u201cLTC\u201d, and \u201cBCH\u201d\n\n```python\n>>> coinmarketcap.stats(convert='EUR')\n{\n \"status\": {\n \"timestamp\": 1525778648,\n \"error\": null\n },\n \"cached\": false,\n \"data\": {\n \"quotes\": {\n \"USD\": {\n \"total_volume_24h\": 23318683476.0,\n \"total_market_cap\": 435375210543.0\n },\n \"EUR\": {\n \"total_volume_24h\": 19574262558.0,\n \"total_market_cap\": 365464400735.0\n }\n },\n \"last_updated\": 1525778672,\n \"bitcoin_percentage_of_market_cap\": 36.23,\n \"active_cryptocurrencies\": 1597,\n \"active_markets\": 10649\n },\n \"metadata\": {\n \"timestamp\": 1525778648,\n \"error\": null\n }\n}\n```\n\n## License:\n\n```\nCopyright 2014-2018 Martin Simon\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\n```\n\n## Buy me a coffee?\n\nIf you feel like buying me a coffee (or a beer?), donations are welcome:\n\n```\nBTC : 1BNFXHPNRtg7LrLUmQWwPUwzoicUi3uP8Q\nETH : 0xd061B7dD794F6EB357bf132172ce06D1B0E5b97B\nBCH : qpcmv8vstulfhgdf29fd8sf2g769sszscvaktty2rv\n```", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/barnumbirr/coinmarketcap", "keywords": "cryptocurrency,API,coinmarketcap,BTC,Bitcoin,LTC,Litecoin,XRP,Ripple,ETH,Ethereum", "license": "Apache v2.0 License", "maintainer": "", "maintainer_email": "", "name": "coinmarketcap", "package_url": "https://pypi.org/project/coinmarketcap/", "platform": "", "project_url": "https://pypi.org/project/coinmarketcap/", "project_urls": { "Bug Reports": "https://github.com/barnumbirr/coinmarketcap/issues", "Buy me a coffee": "https://github.com/barnumbirr/coinmarketcap#buy-me-a-coffee", "Homepage": "https://github.com/barnumbirr/coinmarketcap" }, "release_url": "https://pypi.org/project/coinmarketcap/5.0.3/", "requires_dist": null, "requires_python": "", "summary": "Python wrapper around the coinmarketcap.com API.", "version": "5.0.3" }, "last_serial": 3863466, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "3ec21972e501123918516a6bf1b1464e", "sha256": "3818d5dc98c0126785f59078897dc897fe12c2c5b79f0cd81f5d8f2e320036c5" }, "downloads": -1, "filename": "coinmarketcap-0.1.tar.gz", "has_sig": false, "md5_digest": "3ec21972e501123918516a6bf1b1464e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3044, "upload_time": "2014-06-22T15:24:37", "url": "https://files.pythonhosted.org/packages/b6/13/584f7df4991a4e26497b09591f86285f8278d950017af6f77c1ea4dbdbab/coinmarketcap-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "8b4b227b206b51e8f37164237ce6796f", "sha256": "be962d4eb0b01bf8c0c9a2e83e76dec4e87f895adb07d6cd90d6f5ce33d4eb18" }, "downloads": -1, "filename": "coinmarketcap-0.2.tar.gz", "has_sig": false, "md5_digest": "8b4b227b206b51e8f37164237ce6796f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3621, "upload_time": "2014-06-23T23:39:00", "url": "https://files.pythonhosted.org/packages/21/60/85b70a024af488f5c8597426d536f5dd8c74c188d5148a82fb8feee7a394/coinmarketcap-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "f8ea5c87ad8abc9be6161d8f56c3d3f4", "sha256": "86db2c08210a4f42e3cf66cdf89bfc45de0fe89516857f4d1cbf38d7fbe066b9" }, "downloads": -1, "filename": "coinmarketcap-0.3.tar.gz", "has_sig": false, "md5_digest": "f8ea5c87ad8abc9be6161d8f56c3d3f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3908, "upload_time": "2014-07-01T23:45:13", "url": "https://files.pythonhosted.org/packages/c4/38/7c1588c289928af22723a2b4daa6942e0ac12595a6cc1b05893db1881334/coinmarketcap-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "0949ee7e0f60752f7054261cccb381cd", "sha256": "1431998dc1735991ca55df9e1fc45e010de81300b075db4e1ea06fa1d20ce45e" }, "downloads": -1, "filename": "coinmarketcap-0.4.tar.gz", "has_sig": false, "md5_digest": "0949ee7e0f60752f7054261cccb381cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4200, "upload_time": "2014-08-03T09:14:43", "url": "https://files.pythonhosted.org/packages/ab/cf/c70849f71fd0c5ab7dcc3e32c5f83117526924cb9da4efcc35a740eb9812/coinmarketcap-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "90c952fdd02d38348f096bf4a1de2f64", "sha256": "b7fdb40dff1f61adafa46f0fa652fa527603c6f07957e7ce69d21247838ebb46" }, "downloads": -1, "filename": "coinmarketcap-0.4.1.tar.gz", "has_sig": false, "md5_digest": "90c952fdd02d38348f096bf4a1de2f64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4238, "upload_time": "2014-08-03T20:55:04", "url": "https://files.pythonhosted.org/packages/dd/25/e472768e6e8e74952db3dd53887f02d2ff92f3eb2b0d68bc5d30d1ba7ccf/coinmarketcap-0.4.1.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "246244f98541b0d2114e13a20941473b", "sha256": "4037ff3c9f10561629e91a724427a8c0033475716f590dca40851f97b470c392" }, "downloads": -1, "filename": "coinmarketcap-0.5.tar.gz", "has_sig": false, "md5_digest": "246244f98541b0d2114e13a20941473b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4361, "upload_time": "2014-08-07T14:55:01", "url": "https://files.pythonhosted.org/packages/04/3f/87d84f6e5053321ed01e6a84e36081d714c750e814169dab735b6c3ffdc1/coinmarketcap-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "214ab400eab792c187d14f1a85aa420c", "sha256": "fb2498a29efe1bbc4c818e95ca5d490ae01debca9b0eea73bb047f0142b01d7c" }, "downloads": -1, "filename": "coinmarketcap-0.6.tar.gz", "has_sig": false, "md5_digest": "214ab400eab792c187d14f1a85aa420c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4475, "upload_time": "2014-08-09T01:13:10", "url": "https://files.pythonhosted.org/packages/99/df/53c47ea9434ec01c8c1e439f278c363faef285ad4c66ccd92f44f70fd59e/coinmarketcap-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "79f700a1225edfa0bb5e90ce1c1d9a1a", "sha256": "61a68a569b6069409d033a069ae3c6fc4d267aafc57c894b0a18ae12b6a017e6" }, "downloads": -1, "filename": "coinmarketcap-0.6.1.tar.gz", "has_sig": false, "md5_digest": "79f700a1225edfa0bb5e90ce1c1d9a1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4458, "upload_time": "2014-10-05T16:38:10", "url": "https://files.pythonhosted.org/packages/aa/fb/c58b97007da91af3fdecb5dba4deaef70a5252df68ebe6702648181b17f2/coinmarketcap-0.6.1.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "34d4c0d658fdc31123f1846765942a56", "sha256": "4d249b13430f2ac239e04160dba870e319888d1b8ab987c844bfe11b5dbeff46" }, "downloads": -1, "filename": "coinmarketcap-0.7.tar.gz", "has_sig": false, "md5_digest": "34d4c0d658fdc31123f1846765942a56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4700, "upload_time": "2014-12-17T17:38:38", "url": "https://files.pythonhosted.org/packages/f7/4b/2dff1a8ae82cd2396d757354530db18fd33adedab865a07d0cbef1b226fa/coinmarketcap-0.7.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "48d22904a0a31fc8fbf96e61aed49e49", "sha256": "71f033f057f251a20198ebd381c0536b4c5f1f3a8ef476ac7e30102be555c7b6" }, "downloads": -1, "filename": "coinmarketcap-1.0.tar.gz", "has_sig": false, "md5_digest": "48d22904a0a31fc8fbf96e61aed49e49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4775, "upload_time": "2015-12-17T09:17:15", "url": "https://files.pythonhosted.org/packages/f1/f7/37c33d57887099eeee35760ae9ce6375f55175e61f316c21468cc8c073d2/coinmarketcap-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "d0f16ffb085a62cf6888a8cf7f34e67e", "sha256": "d43c186cca3e58ddd6bbbbfba8e1ecf368bf441153f26c4e6a51504f0478cb35" }, "downloads": -1, "filename": "coinmarketcap-1.1.tar.gz", "has_sig": false, "md5_digest": "d0f16ffb085a62cf6888a8cf7f34e67e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4703, "upload_time": "2015-12-19T15:55:17", "url": "https://files.pythonhosted.org/packages/69/8f/b797c9408456b8ec881e64133872a6e41e575bd29a8b651a923ee17565cf/coinmarketcap-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "1e756f5d1eb615484ea0d47ca8acc312", "sha256": "614639aa8cfc79230e60823c184e76e333c1a179ae41fd5f509e081cdf96e0da" }, "downloads": -1, "filename": "coinmarketcap-1.2.tar.gz", "has_sig": false, "md5_digest": "1e756f5d1eb615484ea0d47ca8acc312", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4681, "upload_time": "2015-12-23T18:28:40", "url": "https://files.pythonhosted.org/packages/f2/c8/b882778096808a9f8ef33f355c818015e11c32c3e13ab35557db118f5bb1/coinmarketcap-1.2.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "2429af8e869b2a884b08eb5331475ef6", "sha256": "d58515589d66469e43cfa3bd9ddd1a9183b7d6759c65eebdb03443500fd52370" }, "downloads": -1, "filename": "coinmarketcap-1.2.1.tar.gz", "has_sig": false, "md5_digest": "2429af8e869b2a884b08eb5331475ef6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5025, "upload_time": "2016-02-24T07:47:35", "url": "https://files.pythonhosted.org/packages/67/52/b008b082ff2d36b941dea1d8a0b65ade8a556683f1d825f32e2e1f933d71/coinmarketcap-1.2.1.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "a3683e0e35ef7fb519c8ea044eb27726", "sha256": "589ebd09e248973e54ff4b5ddddc2a66690185b6316a761ecfca1a86b7c33505" }, "downloads": -1, "filename": "coinmarketcap-2.0.tar.gz", "has_sig": false, "md5_digest": "a3683e0e35ef7fb519c8ea044eb27726", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2942, "upload_time": "2016-06-02T14:07:48", "url": "https://files.pythonhosted.org/packages/6f/e9/f43eb6ab704d064ee3867f48c49f5587922d7f17c3f2af23c164ae5b54fe/coinmarketcap-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "77141a2cca919f517855b1fd738d7e4b", "sha256": "e72736bdca90e25686e291d2d1c5e85e9f53fe368392def4e5ef8f032d755d5d" }, "downloads": -1, "filename": "coinmarketcap-2.0.1.tar.gz", "has_sig": false, "md5_digest": "77141a2cca919f517855b1fd738d7e4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2979, "upload_time": "2016-07-25T07:50:50", "url": "https://files.pythonhosted.org/packages/c2/d0/c0e07dd23278b8d0515c8c8d5b7712512350f14833e5818b09e1eeca4790/coinmarketcap-2.0.1.tar.gz" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "34179308d2cf3d8880fb94405551fa59", "sha256": "88775a54c81be25af4607590387fb31a43fe0d0e3bd8bdefea7b76ead6fc94f7" }, "downloads": -1, "filename": "coinmarketcap-3.0.tar.gz", "has_sig": false, "md5_digest": "34179308d2cf3d8880fb94405551fa59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7273, "upload_time": "2017-06-07T13:02:10", "url": "https://files.pythonhosted.org/packages/e6/d9/3748bdf735abb6cf31864c75d0b500d69a422b4ed8e21f90bc2a9c6262cc/coinmarketcap-3.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "b0428eeea9ef8d6912c155b77e06afe3", "sha256": "fa806774fd39fd6320339c1ce3901a2989e35d6150f936eaf7fe31d5c939ea77" }, "downloads": -1, "filename": "coinmarketcap-3.0.1.tar.gz", "has_sig": false, "md5_digest": "b0428eeea9ef8d6912c155b77e06afe3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7269, "upload_time": "2017-06-08T07:36:35", "url": "https://files.pythonhosted.org/packages/4f/b8/9a197229678a6d261babffe1317e6f9ed0c05296ba46a4affdf039e32285/coinmarketcap-3.0.1.tar.gz" } ], "4.0": [ { "comment_text": "", "digests": { "md5": "63788e6bb9a83e17b180ec9415a9af19", "sha256": "3cace986300db8913c687adf23a2478d1964529f63344e203e33a2ef6960be33" }, "downloads": -1, "filename": "coinmarketcap-4.0.tar.gz", "has_sig": false, "md5_digest": "63788e6bb9a83e17b180ec9415a9af19", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7479, "upload_time": "2017-09-11T09:24:34", "url": "https://files.pythonhosted.org/packages/5c/54/77a7ac3ae736f096a83b065bfa3bb010ffe0942e94c573c9a01b2c14d368/coinmarketcap-4.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "fbabb27b9e62e327a9f414458e41cb8a", "sha256": "1902193b3ce8cf53bab07860314f75aedebf23206115b483b13671cdb9055248" }, "downloads": -1, "filename": "coinmarketcap-4.0.1.tar.gz", "has_sig": false, "md5_digest": "fbabb27b9e62e327a9f414458e41cb8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7587, "upload_time": "2017-09-13T09:26:48", "url": "https://files.pythonhosted.org/packages/cf/fe/06b86d05c4060fb29d17400212486e201e854cbe41f36a39e55c92071cab/coinmarketcap-4.0.1.tar.gz" } ], "4.1": [ { "comment_text": "", "digests": { "md5": "f7c2b8cd8c87982c358098482eecf1a5", "sha256": "d1c53dd5eb33232c08502308b8f6307256b561faf7764e855049a0cbb0b6efb6" }, "downloads": -1, "filename": "coinmarketcap-4.1.tar.gz", "has_sig": false, "md5_digest": "f7c2b8cd8c87982c358098482eecf1a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7522, "upload_time": "2017-09-13T12:39:40", "url": "https://files.pythonhosted.org/packages/a4/25/99baa60d83315ad984277537594ff93337ed7649d8e1c7fc5f6abf046814/coinmarketcap-4.1.tar.gz" } ], "4.1.1": [ { "comment_text": "", "digests": { "md5": "54b9e4c2b8d345f550346419aed763a5", "sha256": "3134a6e197eb7c8a32dcbe95c3358f2bf5dae9fa0c2677bd754789df65ba8750" }, "downloads": -1, "filename": "coinmarketcap-4.1.1.tar.gz", "has_sig": false, "md5_digest": "54b9e4c2b8d345f550346419aed763a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7526, "upload_time": "2017-09-13T19:41:53", "url": "https://files.pythonhosted.org/packages/f5/08/8598be859c1806b56ebfa204cd112bdca3df97d99edd678f948a8ac8580c/coinmarketcap-4.1.1.tar.gz" } ], "4.1.2": [ { "comment_text": "", "digests": { "md5": "39b598897d8289f57c5bbfebf1b498ea", "sha256": "403eccb54475152768aa1fd043f80360c199db59d46760d0679607875014b5ca" }, "downloads": -1, "filename": "coinmarketcap-4.1.2.tar.gz", "has_sig": false, "md5_digest": "39b598897d8289f57c5bbfebf1b498ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7725, "upload_time": "2018-01-13T16:16:50", "url": "https://files.pythonhosted.org/packages/eb/77/87e2bc21dda0117e81cc39b8e9099a0bf566fda6f68040c3a7fcb49ad7fb/coinmarketcap-4.1.2.tar.gz" } ], "4.2.0": [ { "comment_text": "", "digests": { "md5": "22e8892b239123119c908bf3b107ae6f", "sha256": "94ff4e42022c88c846b4c8201947b41c9bab7739267a6a78fcf82097e907f661" }, "downloads": -1, "filename": "coinmarketcap-4.2.0.tar.gz", "has_sig": false, "md5_digest": "22e8892b239123119c908bf3b107ae6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7847, "upload_time": "2018-01-17T17:40:45", "url": "https://files.pythonhosted.org/packages/7a/89/2448ca28b3e5ffdee02f3b854b839fdcc045b0074e2b26f1d8dc17a7f669/coinmarketcap-4.2.0.tar.gz" } ], "4.2.1": [ { "comment_text": "", "digests": { "md5": "b4bbe51c448ee89303bb915fe9e55722", "sha256": "7291c27742a5e43744a17653dfed10f825e4866ddea0912a413163571918652e" }, "downloads": -1, "filename": "coinmarketcap-4.2.1.tar.gz", "has_sig": false, "md5_digest": "b4bbe51c448ee89303bb915fe9e55722", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7843, "upload_time": "2018-01-17T18:00:41", "url": "https://files.pythonhosted.org/packages/c5/a4/ccc8aec360256d13dc652054b829bb323cffcbfb86995562b1c0970aa2c0/coinmarketcap-4.2.1.tar.gz" } ], "5.0.1": [ { "comment_text": "", "digests": { "md5": "4ebfdb30755aea5616a5a68414bd8073", "sha256": "1f7115307b598a427b2385652b132e4135f9ea1817bed181d63f1b43ce160851" }, "downloads": -1, "filename": "coinmarketcap-5.0.1.tar.gz", "has_sig": false, "md5_digest": "4ebfdb30755aea5616a5a68414bd8073", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6755, "upload_time": "2018-05-08T13:34:07", "url": "https://files.pythonhosted.org/packages/49/4c/3e01083a54d7cdd31400e14f02f722acb30586cbda2d5989e31e83c5bae6/coinmarketcap-5.0.1.tar.gz" } ], "5.0.2": [ { "comment_text": "", "digests": { "md5": "603bfc0979227eeba4724d11709a5f12", "sha256": "41813c99bfb934e8ad20746df9e185fdca8a4a0199b35c4788f62554a37fdadc" }, "downloads": -1, "filename": "coinmarketcap-5.0.2.tar.gz", "has_sig": false, "md5_digest": "603bfc0979227eeba4724d11709a5f12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7074, "upload_time": "2018-05-14T08:55:25", "url": "https://files.pythonhosted.org/packages/3b/19/d91868233ba7ee6dce036eacf4ba225dd86956d5ebc9d61524252e53eda3/coinmarketcap-5.0.2.tar.gz" } ], "5.0.3": [ { "comment_text": "", "digests": { "md5": "de337ad580f74900ed579f302668421f", "sha256": "1cfee31bf330a17cedf188e4e99588e6a4c6c969c93da71f55a9f4ec6a6c216f" }, "downloads": -1, "filename": "coinmarketcap-5.0.3.tar.gz", "has_sig": false, "md5_digest": "de337ad580f74900ed579f302668421f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7038, "upload_time": "2018-05-15T06:39:46", "url": "https://files.pythonhosted.org/packages/a8/da/c64662a91905017f237f5ff2778b68638946b0d6268513efadd4d1363669/coinmarketcap-5.0.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "de337ad580f74900ed579f302668421f", "sha256": "1cfee31bf330a17cedf188e4e99588e6a4c6c969c93da71f55a9f4ec6a6c216f" }, "downloads": -1, "filename": "coinmarketcap-5.0.3.tar.gz", "has_sig": false, "md5_digest": "de337ad580f74900ed579f302668421f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7038, "upload_time": "2018-05-15T06:39:46", "url": "https://files.pythonhosted.org/packages/a8/da/c64662a91905017f237f5ff2778b68638946b0d6268513efadd4d1363669/coinmarketcap-5.0.3.tar.gz" } ] }