{ "info": { "author": "Benny Jacobs", "author_email": "Benny@GMX.it", "bugtrack_url": null, "classifiers": [ "Environment :: Console", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Office/Business :: Financial :: Investment" ], "description": "Yahoo ticker downloader\n=======================\n\nProduces .csv, .xlsx, .json and .yaml files (All files contain same data but in a\ndifferent format) for stocks, ETF, futures, indexes, mutual funds, currency,\nwarrants and bonds. The ticker symbol, company name and exchange are saved for\nall symbols.\n\nIt gets its data from `https://finance.yahoo.com/lookup/`_. Please note: it\nis not possible to get all the symbols due to limitations set by Yahoo.\n\nRequirements\n---------------------\n\nPython 2.7 or Python 3.5+\n\nInstall\n---------------------\n\nFrom python package manager (preferred):\n\n.. code:: bash\n\n pip install Yahoo-ticker-downloader\n\nFrom source:\n\n.. code:: bash\n\n python setup.py install\n\nExample Usage\n---------------------\n\n.. code::\n\n usage: YahooTickerDownloader.py [-h] [-i] [-e] [-E EXCHANGE] [-s SLEEP] [-p]\n [type]\n\n positional arguments:\n type The type to download, this can be: generic\n\n optional arguments:\n -h, --help show this help message and exit\n -i, --insecure use HTTP instead of HTTPS\n -e, --export export immediately without downloading (Only useful if\n you already downloaded something to the .pickle file)\n -E EXCHANGE, --Exchange EXCHANGE\n Only export ticker symbols from this exchange (the\n filtering is done during the export phase)\n -s SLEEP, --sleep SLEEP\n The time to sleep in seconds between requests\n -p, --pandantic Stop and warn the user if some rare assertion fails\n\nFor example to download all stock symbols you run it like:\n\n.. code:: bash\n\n YahooTickerDownloader.py\n\nThe program takes a few weeks before it is finished.\nThe program supports suspending and resuming a download.\nPress CTRL+C to suspend download. Restart the program\nin the same working directory to resume downloading.\nIt is possible to export partially downloaded results using the -e flag.\n\nExample of CSV output:\n\n.. code::\n\n Ticker\tName\tExchange\texchangeDisplay\tType\tTypeDisplay\n JNUG\tDirexion Daily Jr Gld Mnrs Bull 3X ETF\tASE\tNYSE MKT\tE\tETF\n DWDP\tDowDuPont Inc.\tNYQ\tNYSE\tS\tEquity\n E\tEni S.p.A.\tNYQ\tNYSE\tS\tEquity\n EQH\tAXA Equitable Holdings, Inc.\tNYS\tNYSE\tS\tEquity\n XOM\tExxon Mobil Corporation\tNYQ\tNYSE\tS\tEquity\n ETP\tEnergy Transfer Partners, L.P.\tNYQ\tNYSE\tS\tEquity\n ES=F\tE-mini S&P 500 Index Futures,Jufuture\tCME\tChicago Mercantile Exchange\tF\tFutures\n NQ=F\tE-mini Nasdaq 100 Index Futuresfuture\tCME\tChicago Mercantile Exchange\tF\tFutures\n GE=F\tEurodollar Futures,Sep-2018future\tCME\tChicago Mercantile Exchange\tF\tFutures\n ...ect\n\nDepending on the type you are downloading, you will get between 3.000 and 100.000+\nentries.\n\nFurther resources\n---------------------\n\nDownload history for symbols: ystockquote_\n\nChangelog\n---------------------\n\n* Version 3.0.1 (2018-12-01)\n\n * Removed reppy dependency\n\n* Version 3.0.0 (2018-05-27)\n\n * Switched over to different JSON api (searchassist)\n\n* Version 2.2.0 (2018-01-31)\n\n * Continue exporting to different formats if one export fails ( #41 )\n * Check robots.txt ( anti-feature )\n\n* Version 2.1.1 (2017-08-02)\n\n * A too old requests dependency was listed ( #35 )\n\n* Version 2.1.0 (2017-05-10)\n\n * Added market parameter ( pull request #33 )\n\n* Version 2.0.1 (2017-05-07)\n\n * Fixed issue where all downloads except stock and currency stopped working.\n\n* Version 2.0.0 (2017-05-05)\n\n * Switched over to JSON api\n\n* Version 1.0.0 (2017-04-04)\n\n * Reverted some changes from 0.10.0. Bond is back. Reverted back to English site instead of German.\n * Resolved CSV issue again. Closes #23 and #16.\n * Merged #26 Workaround Y! b>2000 limit\n * Scraper now scrapes a lot more at the expense of runtime.\n * Support for python2 is back. Latest python 2 & 3 are supported.\n * Removed xls support\n * Added xlsx support (#29)\n\n* Version 0.10.1 (2017-02-04)\n\n * More descriptive help message\n\n* Version 0.10.0 (2017-02-02)\n\n * Removed bond downloading option.\n * Uses different yahoo source. Fixes #18\n * Removed python2 from classifiers. Related to #16\n\n* Version 0.9.0 (unreleased)\n\n * Added a flag to restrict output to specific stock exchanges.\n\n* Version 0.8.1 (2016-08-17)\n\n * Workaround for #7 : downloading interruption\n * Solution for #9 : UnicodeEncodeError\n\n* Version 0.7.0 (2016-03-20)\n\n * Added --export option. It will transcode the .pickle file immediately to the desired output formats.\n\n* Version 0.6.0 (unreleased)\n\n * Add 3 retries with an exponential back-off if HTTPError or ChunkedEncodingError is raised when processing _fetchHtml.\n\n* Version 0.5.0 (2015-08-16)\n\n * Allows downloading using a insecure connection.\n * The temporarily download file-names now include the ticker type.\n\n* Version 0.4.0 (2014-10-28)\n\n * Warrant symbols can now be downloaded.\n * Bond symbols can now be downloaded.\n\n* Version 0.3.0 (2014-08-14)\n\n * Use HTTPS instead of HTTP\n * Retry to fetch a page if it contains no symbols (A \"fix\" for issue #4)\n * Renamed all 'Curreny' to 'Currency'\n * Relative imports are used\n * Fix: .csv file it outputs is encoded in UTF-8 when using python2\n * Performance: Considerable reduced memory consumption\n * It now outputs .json, .yaml and .xls files in addition to .csv\n\n.. _`https://finance.yahoo.com/lookup/`: https://finance.yahoo.com/lookup/\n.. _ystockquote: https://pypi.python.org/pypi/ystockquote/\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Benny-/Yahoo-ticker-symbol-downloader", "keywords": "market", "license": "BSD3", "maintainer": "", "maintainer_email": "", "name": "Yahoo-ticker-downloader", "package_url": "https://pypi.org/project/Yahoo-ticker-downloader/", "platform": "", "project_url": "https://pypi.org/project/Yahoo-ticker-downloader/", "project_urls": { "Homepage": "https://github.com/Benny-/Yahoo-ticker-symbol-downloader" }, "release_url": "https://pypi.org/project/Yahoo-ticker-downloader/3.0.1/", "requires_dist": null, "requires_python": "", "summary": "A web scraper for ticker symbols from yahoo finance", "version": "3.0.1" }, "last_serial": 4550593, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "e142382272a678ecf509a7eb86012f47", "sha256": "41131185b99f8a6072ff889b5a3f3cd3523ce17fd37d9a3941761a1f44e13030" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.1.1.tar.gz", "has_sig": false, "md5_digest": "e142382272a678ecf509a7eb86012f47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4154, "upload_time": "2013-08-04T16:55:56", "url": "https://files.pythonhosted.org/packages/8e/27/a9e8de26be90ce0e487c9f16e99602f3d1ffaaf49b6bada9d6249a70171d/Yahoo-ticker-downloader-0.1.1.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "9a083974aad103180799eebd072c9a6a", "sha256": "2e1400efe954cda1b72462f24731e48589b9b232d6442727e731bddbfe9fdf78" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.10.0.tar.gz", "has_sig": true, "md5_digest": "9a083974aad103180799eebd072c9a6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7647, "upload_time": "2017-02-02T01:10:04", "url": "https://files.pythonhosted.org/packages/9e/66/1e65c4d2c6a9338345c27713167261a3e1934e8af8e6916903a32b80ac04/Yahoo-ticker-downloader-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "23d128bedc0480e177b02c5922e2e205", "sha256": "ac4c110f74cd7655676eb2e24c8dde12f8a33f39cd3fb15a6428f1f096ee88b6" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.10.1.tar.gz", "has_sig": true, "md5_digest": "23d128bedc0480e177b02c5922e2e205", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7756, "upload_time": "2017-02-04T17:58:58", "url": "https://files.pythonhosted.org/packages/a3/5b/48d036ecbb36e37438b6ab8f323035324df6fc90d946e7e54b5573929903/Yahoo-ticker-downloader-0.10.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "55b8e7e9baedb25aee9cf2472cbb14dd", "sha256": "10981d199b9f3e790c47d163aca2ee124dd41e4dd63c2cedb26866aec0fc2f71" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.2.0.tar.gz", "has_sig": false, "md5_digest": "55b8e7e9baedb25aee9cf2472cbb14dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4491, "upload_time": "2014-03-20T20:12:44", "url": "https://files.pythonhosted.org/packages/7d/93/989b5610750829cb9e61a07b527fc097636b16d991028742e2029d1d631e/Yahoo-ticker-downloader-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "89543d1b67abffa9f8eb1276d388e1f8", "sha256": "089822302d3aa1f3ab91fc3ed3a070b8dcbec49ae0bf3e747dd1b0288b026a6c" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.2.1.tar.gz", "has_sig": false, "md5_digest": "89543d1b67abffa9f8eb1276d388e1f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5625, "upload_time": "2014-03-21T09:27:36", "url": "https://files.pythonhosted.org/packages/ba/6b/7790dfc0828054a296187207c34d20ad434218c5bc35cc7e55dd768d98b7/Yahoo-ticker-downloader-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "5539e51432c59f4404e28d13ca4b761f", "sha256": "9a7e9625bd62488365f890050d466bed141de3f0e9855b05a034d429e3f9d5f9" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.2.2.tar.gz", "has_sig": true, "md5_digest": "5539e51432c59f4404e28d13ca4b761f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5822, "upload_time": "2014-04-18T10:08:20", "url": "https://files.pythonhosted.org/packages/f4/66/c4e208ba7eae5a905f34771333838a076e3171fc672878e0e02c3b142fca/Yahoo-ticker-downloader-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "edd534a0cf31136a77bd45f45d3c7911", "sha256": "54697b188c1442d11aeb39b5170295dac22ff9a63a6ff03de4fef1e5f39a4177" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.2.3.tar.gz", "has_sig": true, "md5_digest": "edd534a0cf31136a77bd45f45d3c7911", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5830, "upload_time": "2014-04-18T10:34:35", "url": "https://files.pythonhosted.org/packages/3a/6e/8daa3363ca827d6d2770bfc9cb5eba2c07b34588d334a3fea51fc61b9d2c/Yahoo-ticker-downloader-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "efee9aa6ab574d2723c5478f3c9bf8b4", "sha256": "effb704b2248c8e9f304aeb914070d14ee0e6634ba5b97715abf0f828e1d6f03" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.2.4.tar.gz", "has_sig": true, "md5_digest": "efee9aa6ab574d2723c5478f3c9bf8b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5826, "upload_time": "2014-04-18T10:35:16", "url": "https://files.pythonhosted.org/packages/2d/7c/c9e4f40431882f3066297ca0e016342516138bef669e761b3c30db657ad8/Yahoo-ticker-downloader-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "047a52c53f3914d2d528249f83f67705", "sha256": "eb0f3c8f41da79461fac90e44ac6bf26d39bea4a6ea9b196fa8dca63c8565ccc" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.2.5.tar.gz", "has_sig": true, "md5_digest": "047a52c53f3914d2d528249f83f67705", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5827, "upload_time": "2014-04-18T10:43:24", "url": "https://files.pythonhosted.org/packages/f5/56/6ed80cf3cb85fd4d8e0cbfe03d5326452041f1b1c271734c5e1bc9f9e75e/Yahoo-ticker-downloader-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "a140bc43c3e596582bf208e6199a7561", "sha256": "c46e5302a4eb353f587c09b82a2a42e573d6768706338e3ab9cc436c66d87250" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.2.6.tar.gz", "has_sig": true, "md5_digest": "a140bc43c3e596582bf208e6199a7561", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5793, "upload_time": "2014-04-18T10:45:05", "url": "https://files.pythonhosted.org/packages/e9/11/7ab98ce7b7e81afb2b11f2731f3ca7aa32e0932dc6bdeae1f743b14b6aae/Yahoo-ticker-downloader-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "a6eb5460ffffe4b56fd70182706cf12e", "sha256": "1d29c78bfba02fc1d9dd99aa9bce28cb0082f94cd4e0c52f0b6b2b883afe3aa7" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.2.7.tar.gz", "has_sig": true, "md5_digest": "a6eb5460ffffe4b56fd70182706cf12e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5790, "upload_time": "2014-04-18T10:46:11", "url": "https://files.pythonhosted.org/packages/82/a5/c5d1613e384cbee1c64c73d1ecf14d7ab72e43f2739c9d64f0a43c5d7e37/Yahoo-ticker-downloader-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "fa0ea78e24b53d87a3382b3f992329d6", "sha256": "ebc5ea981059f3bf6667291faf65ee6f81b8529dfb2bb35bf3459bb7760338c4" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.2.8.tar.gz", "has_sig": true, "md5_digest": "fa0ea78e24b53d87a3382b3f992329d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5832, "upload_time": "2014-04-18T11:00:39", "url": "https://files.pythonhosted.org/packages/87/16/7fcd0d0b4183ed637a1592ed3319a8d05738345879c42b65dd9f473413e5/Yahoo-ticker-downloader-0.2.8.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "80c4e0111e0e14f9938d9fcd9628146f", "sha256": "0b48dae97dad9e32c6d0c2bbb6b345ae9ae6cf3df79cefbbbb87e14fa91b2903" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.3.0.tar.gz", "has_sig": true, "md5_digest": "80c4e0111e0e14f9938d9fcd9628146f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6878, "upload_time": "2014-08-14T15:13:25", "url": "https://files.pythonhosted.org/packages/bd/88/ff8519fa5c2f45def1c1f68a55df8f3e679f28e410c9db0f1973563a1e2e/Yahoo-ticker-downloader-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "366f029c16ceb1ab62102bda52a8d509", "sha256": "cff41671f4966cd21f47d0cd99c306b097b105fc389ba5c7b375ec067b8a7147" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.4.0.tar.gz", "has_sig": true, "md5_digest": "366f029c16ceb1ab62102bda52a8d509", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7121, "upload_time": "2014-10-28T11:51:09", "url": "https://files.pythonhosted.org/packages/84/1f/b722346dfb8e382ccf4498967573493658f8fb24cc77b8d3618ea293b84d/Yahoo-ticker-downloader-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "65f6e740f38484e21315247c9452d285", "sha256": "9aa22a8103f804c846f4d06c479983d6eb61a07641cfd8501b17fa205d63625f" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.4.1.tar.gz", "has_sig": true, "md5_digest": "65f6e740f38484e21315247c9452d285", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7126, "upload_time": "2014-10-28T11:52:43", "url": "https://files.pythonhosted.org/packages/88/00/5f8b8e16013803e65f9c2ec0f6b6bbc7de533520f65d035e92f5f6aebb2e/Yahoo-ticker-downloader-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "eea80b1ababf9d6a97780ef487736af8", "sha256": "8ebd19bfe637c2bbf0727c060deadc73139251e94237119b2a271f3e00211569" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.4.2.tar.gz", "has_sig": true, "md5_digest": "eea80b1ababf9d6a97780ef487736af8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7120, "upload_time": "2014-10-28T11:53:24", "url": "https://files.pythonhosted.org/packages/19/69/bd99944fb66847d871a503190dbc51100e7a4a2ecd5bcb81c423b74ea647/Yahoo-ticker-downloader-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "d41109ab987b97840b60a3cfd0e2a9ac", "sha256": "f2609a4c9979c421690c114e55d4695b677a1ed3420bfa218888317bcb2812a1" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.4.3.tar.gz", "has_sig": true, "md5_digest": "d41109ab987b97840b60a3cfd0e2a9ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7122, "upload_time": "2014-10-28T11:54:00", "url": "https://files.pythonhosted.org/packages/30/c2/a1f00e8e8a5391f0a1773350f3ababce9c49681bf4e099908f13a1d959a9/Yahoo-ticker-downloader-0.4.3.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "5b83470cb09274a202ffda54c546fe00", "sha256": "a9778d9698f67c808e114a771d85bfb7943375771050fdfbdcf90307602a6c64" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.5.0.tar.gz", "has_sig": true, "md5_digest": "5b83470cb09274a202ffda54c546fe00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7193, "upload_time": "2015-08-16T07:54:28", "url": "https://files.pythonhosted.org/packages/1c/55/8020c1eb09fda1aaaa4344e45a97ffb7c32294b6f7220ea22e8a3559b50d/Yahoo-ticker-downloader-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "7cf78628b99b11c6175bcfa897028b1a", "sha256": "bc6c8e44191b4477a004139c30b253a642edffc864a9b92da995f00bdb788d87" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.5.1.tar.gz", "has_sig": true, "md5_digest": "7cf78628b99b11c6175bcfa897028b1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7194, "upload_time": "2015-08-16T09:59:16", "url": "https://files.pythonhosted.org/packages/e0/01/e49de6391818534fe29b72c7ea895d67e82e4d47f8cae5769cec515b6184/Yahoo-ticker-downloader-0.5.1.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "2165a195386049644a91e7337648b628", "sha256": "0e95551ff91a0df659fea03a83e12f0dd9265dcffc1ea298433b385f2662233e" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.7.0.tar.gz", "has_sig": true, "md5_digest": "2165a195386049644a91e7337648b628", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7677, "upload_time": "2016-03-20T15:38:05", "url": "https://files.pythonhosted.org/packages/cc/ed/c3be74d2e57ba03b0d6a34ee3c809c5055bfa0ee548ca8a06c17aacfd414/Yahoo-ticker-downloader-0.7.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "22ab4f0cc6019597f86e434c6d10e437", "sha256": "9e89b658e1da8d7741a880980aba3d6efb1cbdb14d0782c9b70a8e6a34bc7208" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-0.8.1.tar.gz", "has_sig": true, "md5_digest": "22ab4f0cc6019597f86e434c6d10e437", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7791, "upload_time": "2016-08-17T14:36:18", "url": "https://files.pythonhosted.org/packages/af/9f/9162e5bbf1dc735fc6298a5556ace740bfd399960234502b6e7a82b87196/Yahoo-ticker-downloader-0.8.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "31f9844b66fe96a5cb9b8b787f6257ef", "sha256": "825bdefe98e2f3bb96396885ed57b1a3ca94986a4ec31b1e5529aeba42973312" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-1.0.0.tar.gz", "has_sig": true, "md5_digest": "31f9844b66fe96a5cb9b8b787f6257ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10268, "upload_time": "2017-04-03T22:39:33", "url": "https://files.pythonhosted.org/packages/09/64/c92b1d4932bf2bfe1a54bbe9496e98a17878135c72fb6b7fd77c5dfc2e15/Yahoo-ticker-downloader-1.0.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "4ba37b23a1b3adcdd6f6965e93accfa0", "sha256": "a58e77a4b5ac4bc756ff6c889a22051304ab4e6177b637cc1e83bd23972556e9" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-2.0.0.tar.gz", "has_sig": true, "md5_digest": "4ba37b23a1b3adcdd6f6965e93accfa0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9229, "upload_time": "2017-05-06T22:59:22", "url": "https://files.pythonhosted.org/packages/13/f3/8a22fd3d698dfc8929e22e7585eb7737a458470277c338cc6ad9d18a98f8/Yahoo-ticker-downloader-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "aeb4388e2272cc02e297071d2697cb23", "sha256": "4a2d47ed318bf8422d5d8989006ff91dcebe936b40cf4822b5094fcaa34af3fc" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-2.0.1.tar.gz", "has_sig": true, "md5_digest": "aeb4388e2272cc02e297071d2697cb23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9298, "upload_time": "2017-05-07T21:15:15", "url": "https://files.pythonhosted.org/packages/04/ad/e6f40df0a49c399a53b2049a68c67146db77156e686a605b7d23a0f1e62b/Yahoo-ticker-downloader-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "adc320e57f8867c8aed5ad86ac6bafc5", "sha256": "856f234fbf2f67c16a6ff9c1ccee76472662e83067944428cff426aed45692c9" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-2.1.0.tar.gz", "has_sig": true, "md5_digest": "adc320e57f8867c8aed5ad86ac6bafc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9578, "upload_time": "2017-05-10T21:23:06", "url": "https://files.pythonhosted.org/packages/ac/2c/6ce497e65483c2315bd0a01418ea81c150438f7ad079fc994ea3284d82bd/Yahoo-ticker-downloader-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "e8057a1eeae72aa1bedf9c6f7108ad8c", "sha256": "21096afac7984ba56c320d2face521e62dccc4bc5dcace6e1bd768ddd42ec62c" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-2.1.1.tar.gz", "has_sig": true, "md5_digest": "e8057a1eeae72aa1bedf9c6f7108ad8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9619, "upload_time": "2017-08-02T17:31:30", "url": "https://files.pythonhosted.org/packages/0c/ec/5a6a80ae6d5d89deb978dacfb081e0d2837815a64d064e5b7f54cc3a0ab7/Yahoo-ticker-downloader-2.1.1.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "98b443cdbf42b88029a354fdbca5bede", "sha256": "a74de16b4a4f47f588516350e0dc90c0f05498668d0c6e6a59faa7c982f73e46" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-2.2.0.tar.gz", "has_sig": true, "md5_digest": "98b443cdbf42b88029a354fdbca5bede", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9957, "upload_time": "2018-01-31T14:29:45", "url": "https://files.pythonhosted.org/packages/89/e4/6e2aa2300f5c03fbc241f9d6c0496aeb821b2ed382d5e05fa1b25d0f950d/Yahoo-ticker-downloader-2.2.0.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "db1454db5436fdcc6083f76104fee31d", "sha256": "08bdf0adbcdaf0f9ed578946f54542beecda77fd4d35bd3d0aee65389afb3f8e" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-3.0.0.tar.gz", "has_sig": true, "md5_digest": "db1454db5436fdcc6083f76104fee31d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8652, "upload_time": "2018-05-26T22:21:25", "url": "https://files.pythonhosted.org/packages/a0/ca/98027289ac59ea56450d552e0bbf2e545f4499f067e88de999109b3eb20c/Yahoo-ticker-downloader-3.0.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "87c12e30064a351fe82a3250a5bc2b8a", "sha256": "9f2e3ea8c65342e2122d3c251eada97727a352a2268f29ce6f286b5a6ccdb17d" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-3.0.1.tar.gz", "has_sig": true, "md5_digest": "87c12e30064a351fe82a3250a5bc2b8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8550, "upload_time": "2018-12-01T17:13:53", "url": "https://files.pythonhosted.org/packages/26/c6/012180ba63223f39bfea186f04e19840381a9bc22a2fc15a7aecb0b8d90d/Yahoo-ticker-downloader-3.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "87c12e30064a351fe82a3250a5bc2b8a", "sha256": "9f2e3ea8c65342e2122d3c251eada97727a352a2268f29ce6f286b5a6ccdb17d" }, "downloads": -1, "filename": "Yahoo-ticker-downloader-3.0.1.tar.gz", "has_sig": true, "md5_digest": "87c12e30064a351fe82a3250a5bc2b8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8550, "upload_time": "2018-12-01T17:13:53", "url": "https://files.pythonhosted.org/packages/26/c6/012180ba63223f39bfea186f04e19840381a9bc22a2fc15a7aecb0b8d90d/Yahoo-ticker-downloader-3.0.1.tar.gz" } ] }