{ "info": { "author": "Alvaro Bartolome", "author_email": "alvarobdc@yahoo.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Office/Business :: Financial", "Topic :: Office/Business :: Financial :: Investment", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Software Development :: Libraries" ], "description": "

\n \n

\n\n

Financial Data Extraction from Investing.com with Python

\n\ninvestpy is a Python package to retrieve data from [Investing.com](https://www.investing.com/), which provides data retrieval \nfrom up to 39952 stocks, 82221 funds, 11403 ETFs, 2029 currency crosses, 7797 indices, 688 bonds, 66 commodities, 250 certificates, \nand 4697 cryptocurrencies.\n\ninvestpy allows the user to download both recent and historical data from all the financial products indexed at Investing.com. \n**It includes data from all over the world**, from countries such as United States, France, India, Spain, Russia, or Germany, \namongst many others.\n\ninvestpy seeks to be one of the most complete Python packages when it comes to financial data extraction to stop relying \non public/private APIs since investpy is **FREE** and has **NO LIMITATIONS**. These are some of the features that currently lead \ninvestpy to be one of the most consistent packages when it comes to financial data retrieval.\n\n[![Python Version](https://img.shields.io/pypi/pyversions/investpy.svg)](https://pypi.org/project/investpy/)\n[![PyPI Version](https://img.shields.io/pypi/v/investpy.svg)](https://pypi.org/project/investpy/)\n[![Package Status](https://img.shields.io/pypi/status/investpy.svg)](https://pypi.org/project/investpy/)\n[![Build Status](https://github.com/alvarobartt/investpy/workflows/run_tests/badge.svg)](https://github.com/alvarobartt/investpy/actions?query=workflow%3Arun_tests)\n[![Documentation Status](https://readthedocs.org/projects/investpy/badge/?version=latest)](https://investpy.readthedocs.io/)\n\n**If you want to support the project, you can buy the developer a coffee. More information at: [buy-me-a-coffee](https://github.com/alvarobartt/buy-me-a-coffee)**\n\n

\"Buy

\n\n---\n\n## :hammer_and_wrench: Installation\n\nTo get this package working you will need to **install it via pip** (with a Python 3.6 version or higher) on the terminal by typing:\n\n``$ pip install investpy``\n\nAdditionally, **if you want to use the latest investpy version instead of the stable one, you can install it from source** with the following command:\n\n``$ pip install git+https://github.com/alvarobartt/investpy.git@master``\n\n**The master branch ensures the user that the most updated version will always be working and fully operative** so as not to wait until the \nthe stable release comes out (which eventually may take some time depending on the number of issues to solve).\n\n---\n\n## :computer: Usage\n\nEven though some investpy usage examples are presented on the [docs](https://investpy.readthedocs.io/usage.html), \nsome basic functionality will be sorted out with sample Python code blocks. Additionally, more usage examples \ncan be found under [examples/](https://github.com/alvarobartt/investpy/tree/master/examples) directory, which \ncontains a collection of Jupyter Notebooks on how to use investpy and handle its data.\n\n:pushpin: __Note that `investpy.search_quotes` is the only function that ensures that the data is updated and aligned 1:1 with\nthe data provided by Investing.com!__\n\n### :chart_with_upwards_trend: Recent/Historical Data Retrieval\n\ninvestpy allows the user to **download both recent and historical data from any financial product indexed** \n(stocks, funds, ETFs, currency crosses, certificates, bonds, commodities, indices, and cryptos). In \nthe example presented below, the historical data from the past years of a stock is retrieved. \n\n```python\nimport investpy\n\ndf = investpy.get_stock_historical_data(stock='AAPL',\n country='United States',\n from_date='01/01/2010',\n to_date='01/01/2020')\nprint(df.head())\n```\n```{r, engine='python', count_lines}\n Open High Low Close Volume Currency\nDate \n2010-01-04 30.49 30.64 30.34 30.57 123432176 USD\n2010-01-05 30.66 30.80 30.46 30.63 150476160 USD\n2010-01-06 30.63 30.75 30.11 30.14 138039728 USD\n2010-01-07 30.25 30.29 29.86 30.08 119282440 USD\n2010-01-08 30.04 30.29 29.87 30.28 111969192 USD\n```\n\nTo get to know all the available recent and historical data extraction functions provided by \ninvestpy, and also, parameter tuning, please read the docs.\n\n### :mag: Search Live Data\n\n**Investing.com search engine is completely integrated** with investpy, which means that any available \nfinancial product (quote) can be easily found. The search function allows the user to tune the parameters \nto adjust the search results to their needs, where both product types and countries from where the \nproducts are, can be specified. **All the search functionality can be easily used**, for example, as \npresented in the following piece of code:\n\n```python\nimport investpy\n\nsearch_result = investpy.search_quotes(text='apple', products=['stocks'],\n countries=['united states'], n_results=1)\nprint(search_result)\n```\n```json\n{\"id_\": 6408, \"name\": \"Apple Inc\", \"symbol\": \"AAPL\", \"country\": \"united states\", \"tag\": \"/equities/apple-computer-inc\", \"pair_type\": \"stocks\", \"exchange\": \"NASDAQ\"}\n```\n\nRetrieved search results will be a `list` of `investpy.utils.search_obj.SearchObj` class instances, unless\n`n_results` is set to 1, when just a single `investpy.utils.search_obj.SearchObj` class instance will be returned.\nTo get to know which are the available functions and attributes of the returned search results, please read the related \ndocumentation at [Search Engine Documentation](https://investpy.readthedocs.io/search_api.html). So on, those \nsearch results let the user retrieve both recent and historical data, its information, the technical indicators,\nthe default currency, etc., as presented in the piece of code below:\n\n```python\nrecent_data = search_result.retrieve_recent_data()\nhistorical_data = search_result.retrieve_historical_data(from_date='01/01/2019', to_date='01/01/2020')\ninformation = search_result.retrieve_information()\ndefault_currency = search_result.retrieve_currency()\ntechnical_indicators = search_result.retrieve_technical_indicators(interval='daily')\n```\n\n### :money_with_wings: Crypto Currencies Data Retrieval\n\nCryptocurrencies support has recently been included, to let the user retrieve data and information from any \navailable crypto at Investing.com. Please note that some cryptocurrencies do not have available data indexed \nat Investing.com so that it can not be retrieved using investpy either, even though they are just a few, \nconsider it.\n\nAs already presented previously, **historical data retrieval using investpy is really easy**. The piece of code \npresented below shows how to retrieve the past years of historical data from Bitcoin (BTC).\n\n```python\nimport investpy\n\ndata = investpy.get_crypto_historical_data(crypto='bitcoin',\n from_date='01/01/2014',\n to_date='01/01/2019')\n\nprint(data.head())\n```\n```{r, engine='python', count_lines}\n Open High Low Close Volume Currency\nDate \n2014-01-01 805.9 829.9 771.0 815.9 10757 USD\n2014-01-02 815.9 886.2 810.5 856.9 12812 USD\n2014-01-03 856.9 888.2 839.4 884.3 9709 USD\n2014-01-04 884.3 932.2 848.3 924.7 14239 USD\n2014-01-05 924.7 1029.9 911.4 1014.7 21374 USD\n```\n\n---\n\n## :open_book: Documentation\n\nYou can find the **complete investpy documentation** at [Documentation](https://investpy.readthedocs.io/).\n\n---\n\n## :sparkles: Contribute\n\nAs this is an open-source project it is **open to contributions, bug reports, bug fixes, documentation improvements, \nenhancements, and ideas**. There is an open tab of [issues](https://github.com/alvarobartt/investpy/issues) where \nanyone can open new issues if needed or navigate through them to solve them or contribute to its solving. \nRemember that issues are not threads to describe multiple problems, this does not mean that issues can not \nbe discussed, but so to keep structured project management, the same issue should not describe different \nproblems, just the main one and some nested/related errors that may be found.\n\n---\n\n## :question: Discussions (Q&A, AMA)\n\nGitHub recently released a new feature named __GitHub Discussions__ (still in beta). GitHub Discussions is a \ncollaborative communication forum for the community around an open source project.\n\nCheck the investpy GitHub Discussions page at [Discussions](https://github.com/alvarobartt/investpy/discussions), \nand feel free to ask me (ar any developer) anything, share updates, have open-ended conversations, and follow along \non decisions affecting the community's way of working.\n\n:pushpin: __Note__. Usually I don't answer emails asking me questions about investpy, as we currently have the\nGitHub Discussions tab, and I encourage you to use it. GitHub Discussions is the easiest way to contact me about \ninvestpy, so that I don't answer the same stuff more than once via email, as anyone can see the opened/answered\ndiscussions.\n\n---\n\n## :card_index_dividers: Related projects\n\nSince investpy is intended to retrieve data from different financial products as indexed in Investing.com, \nthe **development of some support modules which implement an additional functionality based on investpy data**, \nis presented. Note that **anyone can contribute to this section** by creating any package, module, or utility that \nuses investpy. So on, the ones already created are going to be presented, since they are intended to be used \ncombined with investpy:\n\n- [pyrtfolio](https://github.com/alvarobartt/pyrtfolio/): is a Python package to generate stock portfolios.\n- [trendet](https://github.com/alvarobartt/trendet/): is a Python package for trend detection on stock time-series data.\n\nIf you developed an interesting/useful project based on investpy data, please open an issue to let me know to \ninclude it in this section.\n\n---\n\n## :memo: Citation\n\nWhen citing this repository on your scientific publications please use the following **BibTeX** citation:\n\n```bibtex\n@misc{investpy,\n author = {Alvaro Bartolome del Canto},\n title = {investpy - Financial Data Extraction from Investing.com with Python},\n year = {2018-2021},\n publisher = {GitHub},\n journal = {GitHub Repository},\n howpublished = {\\url{https://github.com/alvarobartt/investpy}},\n}\n```\n\nWhen citing this repository on any other social media, please use the following citation:\n\n```\ninvestpy - Financial Data Extraction from Investing.com with Python developed by Alvaro Bartolome del Canto\n```\n\nYou should also mention the source from where the data is retrieved, Investing.com; even though it's already\nincluded in the package short description title.\n\n---\n\n## :man_technologist: Contact Information\n\nYou can contact me at any of my social network profiles:\n\n- :briefcase: LinkedIn: https://linkedin.com/in/alvarobartt\n- :bird: Twitter: https://twitter.com/alvarobartt\n- :octocat: GitHub: https://github.com/alvarobartt\n\nOr via email at alvarobartt@yahoo.com.\n\n---\n\n## :warning: Disclaimer\n\nThis Python package has been made for **research purposes** to fit the needs that Investing.com does not cover, \nso this package works like an Application Programming Interface (API) of Investing.com developed in an **altruistic way**.\n\nConclude that **investpy is not affiliated in any way to Investing.com or any dependant company**, the only \nrequirement specified by Investing.com to develop this package was to \"mention the source where data is \nretrieved from\".\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/alvarobartt/investpy/archive/1.0.8.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://investpy.readthedocs.io/", "keywords": "investing,investing-api,historical-data,financial-data,stocks,funds,etfs,indices,currency crosses,bonds,commodities,crypto currencies", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "investpy", "package_url": "https://pypi.org/project/investpy/", "platform": "", "project_url": "https://pypi.org/project/investpy/", "project_urls": { "Bug Reports": "https://github.com/alvarobartt/investpy/issues", "Documentation": "https://investpy.readthedocs.io/", "Download": "https://github.com/alvarobartt/investpy/archive/1.0.8.tar.gz", "Homepage": "https://investpy.readthedocs.io/", "Source": "https://github.com/alvarobartt/investpy" }, "release_url": "https://pypi.org/project/investpy/1.0.8/", "requires_dist": null, "requires_python": ">=3.7", "summary": "Financial Data Extraction from Investing.com with Python", "version": "1.0.8", "yanked": false, "yanked_reason": null }, "last_serial": 12677695, "releases": { "0.3.6": [ { "comment_text": "", "digests": { "md5": "02e06012b70dad9cbcc6462053b398e1", "sha256": "d61c7ced74e78bc117e21fc124b74e4a86fe7d4485265a8b9720a4cd4b208252" }, "downloads": -1, "filename": "investpy-0.3.6.tar.gz", "has_sig": false, "md5_digest": "02e06012b70dad9cbcc6462053b398e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15610, "upload_time": "2019-02-18T16:00:54", "upload_time_iso_8601": "2019-02-18T16:00:54.613770Z", "url": "https://files.pythonhosted.org/packages/a4/fb/7efc27c37e1816a145045cfb4c4b46e749ad42b9926f9e691ff6c90e17a5/investpy-0.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4": [ { "comment_text": "", "digests": { "md5": "801d05c8be102094ce725814e08f3359", "sha256": "68ba9f4315296a531e78bf8d6c5b3a970bd776d82b04c20aadd875c16db1d257" }, "downloads": -1, "filename": "investpy-0.4.tar.gz", "has_sig": false, "md5_digest": "801d05c8be102094ce725814e08f3359", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15583, "upload_time": "2019-02-18T16:15:35", "upload_time_iso_8601": "2019-02-18T16:15:35.974543Z", "url": "https://files.pythonhosted.org/packages/1a/fd/47e83d801e030021e60fde23b9ecdec130f08c7f40c7dde1bc9ee03936c0/investpy-0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5": [ { "comment_text": "", "digests": { "md5": "82830daefd68468e941067b63ba0e755", "sha256": "fd3c38183bd722894ef11fe0ea87e0ffa9cc298c11334119904dd2d9e4ce07fc" }, "downloads": -1, "filename": "investpy-0.5.tar.gz", "has_sig": false, "md5_digest": "82830daefd68468e941067b63ba0e755", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16993, "upload_time": "2019-03-05T10:28:13", "upload_time_iso_8601": "2019-03-05T10:28:13.015629Z", "url": "https://files.pythonhosted.org/packages/f1/7d/059d81ddf029cf1f3f126a894009ab23c54f8a8fb782be0d0922e7619888/investpy-0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6": [ { "comment_text": "", "digests": { "md5": "ee3cf9c429452ee282f99156f9bde57c", "sha256": "b415bfe86b8f526a8792541ffe5216ca25a95537519d1a5b497aa9359bb30a3d" }, "downloads": -1, "filename": "investpy-0.6.tar.gz", "has_sig": false, "md5_digest": "ee3cf9c429452ee282f99156f9bde57c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21484, "upload_time": "2019-03-05T16:44:17", "upload_time_iso_8601": "2019-03-05T16:44:17.738109Z", "url": "https://files.pythonhosted.org/packages/2f/94/4f74a3d961d23ef885542a0af25f9d9b2484983321ac5b20252b2d7aa117/investpy-0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7": [ { "comment_text": "", "digests": { "md5": "7072d422779166eda00ccb2bea6edee4", "sha256": "0c0725e8bd15e56fed3c2717d1ab50c1eb991a78b482e2359563d2ee0da76481" }, "downloads": -1, "filename": "investpy-0.7.tar.gz", "has_sig": false, "md5_digest": "7072d422779166eda00ccb2bea6edee4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23659, "upload_time": "2019-03-13T18:24:13", "upload_time_iso_8601": "2019-03-13T18:24:13.681098Z", "url": "https://files.pythonhosted.org/packages/0a/07/62a502050281da1d817ca65a3e8fb5c4ea4a914e7aae71e486e5a9fb227e/investpy-0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "2e9c927bd116737143168565675951aa", "sha256": "78f467f84e2d9ab4211d8b561a62a6a2a5f7c127baa60a786aa7c2e2ba377391" }, "downloads": -1, "filename": "investpy-0.7.5.tar.gz", "has_sig": false, "md5_digest": "2e9c927bd116737143168565675951aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25570, "upload_time": "2019-03-21T12:19:56", "upload_time_iso_8601": "2019-03-21T12:19:56.926068Z", "url": "https://files.pythonhosted.org/packages/31/54/9047f229182781506468180a9372a0aa49b4b64a805b1122b6c80152a707/investpy-0.7.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "2b6504643f3a2cdf6902705bc1a24fd0", "sha256": "35ae1cfb895256b2bfc223bbcd14c4c8d6c1dc6bad28f11b89cb3c760e6d6ea6" }, "downloads": -1, "filename": "investpy-0.7.6.tar.gz", "has_sig": false, "md5_digest": "2b6504643f3a2cdf6902705bc1a24fd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25714, "upload_time": "2019-03-21T14:34:18", "upload_time_iso_8601": "2019-03-21T14:34:18.358531Z", "url": "https://files.pythonhosted.org/packages/7b/d6/fab439feadff6a15a1cde2003da48832fa4173d382e755c3286c48b51dbe/investpy-0.7.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8": [ { "comment_text": "", "digests": { "md5": "bb916955ea1c30c01336c4072822bc22", "sha256": "dade1a79ab5f1dfa255f0185eb308b7caa3ceb6bf88dca544079fe63d715f67e" }, "downloads": -1, "filename": "investpy-0.8.tar.gz", "has_sig": false, "md5_digest": "bb916955ea1c30c01336c4072822bc22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24373, "upload_time": "2019-04-04T08:46:05", "upload_time_iso_8601": "2019-04-04T08:46:05.161489Z", "url": "https://files.pythonhosted.org/packages/23/5e/f48f46174e48711575bab48f25665aa9dfd3ae37dcda96012687ba017f50/investpy-0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "330310a85928f8755bcfbc4173fdd815", "sha256": "61df980757dd48ceae75c85345b3c3befce419c864451d05ce186ae5ff7fb940" }, "downloads": -1, "filename": "investpy-0.8.1.tar.gz", "has_sig": false, "md5_digest": "330310a85928f8755bcfbc4173fdd815", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24372, "upload_time": "2019-04-06T13:13:54", "upload_time_iso_8601": "2019-04-06T13:13:54.037792Z", "url": "https://files.pythonhosted.org/packages/f8/5e/2272798153c8d69760cdcad4d4960e86aa445713231e005999f8a57839cd/investpy-0.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "796f4ddea0739b81a847efde3485e288", "sha256": "01115e0ae2a344b951ead98b01c28c17d19cb3263d9e10e5591709f511881f61" }, "downloads": -1, "filename": "investpy-0.8.2.tar.gz", "has_sig": false, "md5_digest": "796f4ddea0739b81a847efde3485e288", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24201, "upload_time": "2019-04-16T09:35:19", "upload_time_iso_8601": "2019-04-16T09:35:19.981073Z", "url": "https://files.pythonhosted.org/packages/15/11/86c5b2f3c1afd88d97647099888956687d3e124e7dac8478ae4ddc46143c/investpy-0.8.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "a032ba21a0581aedaf8b6287a4b1722a", "sha256": "0fed8ade8e4f9a384fdb16ca285d99623c243a428f1432eb79d468b4977d0e85" }, "downloads": -1, "filename": "investpy-0.8.3.tar.gz", "has_sig": false, "md5_digest": "a032ba21a0581aedaf8b6287a4b1722a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22795, "upload_time": "2019-04-27T19:03:43", "upload_time_iso_8601": "2019-04-27T19:03:43.558782Z", "url": "https://files.pythonhosted.org/packages/27/b2/dfd599ac575d8e50a5649a53e363bf73c79c7b02490e655de5282efafb0b/investpy-0.8.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "a01913bfe9a6fd8512f6e4070810b964", "sha256": "026f480ea6032e582fb4ccedb718d430275a00dddaef2369623c169a7f80cc38" }, "downloads": -1, "filename": "investpy-0.8.4.tar.gz", "has_sig": false, "md5_digest": "a01913bfe9a6fd8512f6e4070810b964", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24591, "upload_time": "2019-04-29T11:28:34", "upload_time_iso_8601": "2019-04-29T11:28:34.162780Z", "url": "https://files.pythonhosted.org/packages/ab/9c/6777deab899d1d91e792fc4f4fa46f770ad7bcbaab9dc871612d6f10eea1/investpy-0.8.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.4.1": [ { "comment_text": "", "digests": { "md5": "1ba94c7c515dda226bf69cd22fd77626", "sha256": "9507c4ceddca7a18d278b01aeaca1f2026a3a6c4e9771d7d86bd95f1f443f993" }, "downloads": -1, "filename": "investpy-0.8.4.1.tar.gz", "has_sig": false, "md5_digest": "1ba94c7c515dda226bf69cd22fd77626", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24702, "upload_time": "2019-04-30T08:15:15", "upload_time_iso_8601": "2019-04-30T08:15:15.414419Z", "url": "https://files.pythonhosted.org/packages/f6/d3/41eaef2293e916acfc937f43a94bd682e86e0c89da83cc890b8a3310f982/investpy-0.8.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.4.2": [ { "comment_text": "", "digests": { "md5": "1c4d285dd548916234a95b56e5140992", "sha256": "f6b9d1ec4cfe282b0d1f1ee436942cefda3db73f2e2c3a4c843a0e964fd9f07a" }, "downloads": -1, "filename": "investpy-0.8.4.2.tar.gz", "has_sig": false, "md5_digest": "1c4d285dd548916234a95b56e5140992", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24710, "upload_time": "2019-04-30T08:35:06", "upload_time_iso_8601": "2019-04-30T08:35:06.152667Z", "url": "https://files.pythonhosted.org/packages/d3/fe/3551c1b926998dad7429d786392eac9434bcf6367b7655f36dd776f166c3/investpy-0.8.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.4.3": [ { "comment_text": "", "digests": { "md5": "2ab2336d51c98e0b86f82ff589059453", "sha256": "91f7abae4dc5bc2142f4aac30d934bcc1aad7f9a8d3b28b0f79bb3afc9e65795" }, "downloads": -1, "filename": "investpy-0.8.4.3.tar.gz", "has_sig": false, "md5_digest": "2ab2336d51c98e0b86f82ff589059453", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25580, "upload_time": "2019-05-03T08:42:06", "upload_time_iso_8601": "2019-05-03T08:42:06.639791Z", "url": "https://files.pythonhosted.org/packages/90/f4/f496fbc81a89bf091d354fb10488707d430d9796ffdc31faa28a699eb619/investpy-0.8.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.4.4": [ { "comment_text": "", "digests": { "md5": "1a659467929ac63d59885635b9dea0cb", "sha256": "9ba05f9fab4f63dc20367890810e2f0bbf2115aab18ff36de0cb68a06446d642" }, "downloads": -1, "filename": "investpy-0.8.4.4.tar.gz", "has_sig": false, "md5_digest": "1a659467929ac63d59885635b9dea0cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26502, "upload_time": "2019-05-15T16:36:17", "upload_time_iso_8601": "2019-05-15T16:36:17.245413Z", "url": "https://files.pythonhosted.org/packages/d6/50/8edba656b7f5fef44c30e67330d1da118c84f75a9d52b71d7bef88459450/investpy-0.8.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.4.5": [ { "comment_text": "", "digests": { "md5": "5e7c478016793db61e4d6b97db980a20", "sha256": "9d4afececd4cfe3cf9d7045510315a3bf74b9d1524f8239802935a34196b3fe2" }, "downloads": -1, "filename": "investpy-0.8.4.5.tar.gz", "has_sig": false, "md5_digest": "5e7c478016793db61e4d6b97db980a20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26906, "upload_time": "2019-05-17T18:47:05", "upload_time_iso_8601": "2019-05-17T18:47:05.933756Z", "url": "https://files.pythonhosted.org/packages/01/34/eacf8c27d3a91217f163b33f0a1c8e327400a8a075c6969acbaed8bd95ef/investpy-0.8.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.4.6": [ { "comment_text": "", "digests": { "md5": "b3f72723175a22ad786caa90e9a9d9e4", "sha256": "947ab14093b7ea92aa1176532b37d7a74f80cd626e034499b2193311570ca185" }, "downloads": -1, "filename": "investpy-0.8.4.6.tar.gz", "has_sig": false, "md5_digest": "b3f72723175a22ad786caa90e9a9d9e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27783, "upload_time": "2019-05-20T12:14:31", "upload_time_iso_8601": "2019-05-20T12:14:31.261533Z", "url": "https://files.pythonhosted.org/packages/de/7f/9f3bcfe3863fd19ae48955d7fdf4d3f8625e20a7a4b9e7db5ba1774126db/investpy-0.8.4.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.4.7": [ { "comment_text": "", "digests": { "md5": "6201ad193be4ec1edb59e660a9c61df0", "sha256": "8d30a2420662e622f6f8d0a15307f32adafa62035a5fdcf0bf4fd84765525063" }, "downloads": -1, "filename": "investpy-0.8.4.7.tar.gz", "has_sig": false, "md5_digest": "6201ad193be4ec1edb59e660a9c61df0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28805, "upload_time": "2019-05-23T17:21:12", "upload_time_iso_8601": "2019-05-23T17:21:12.378785Z", "url": "https://files.pythonhosted.org/packages/44/23/6e0af3dccb718bde882857e79a8880039846ff6e2ad7ec988e13a74bcceb/investpy-0.8.4.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.4.8": [ { "comment_text": "", "digests": { "md5": "cd1a8a707004762b9b6b1f26c4c6c22d", "sha256": "0521d610c42dabdb99ed49dff7f67ac7de6210408cc6a11425c169bb9ae6eda7" }, "downloads": -1, "filename": "investpy-0.8.4.8.tar.gz", "has_sig": false, "md5_digest": "cd1a8a707004762b9b6b1f26c4c6c22d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29516, "upload_time": "2019-05-29T10:57:26", "upload_time_iso_8601": "2019-05-29T10:57:26.211934Z", "url": "https://files.pythonhosted.org/packages/e1/11/3d8ddbe62cd1c8a26946e4675e01c1a24c156f7290b56c74c8c9a05fc617/investpy-0.8.4.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.4.9": [ { "comment_text": "", "digests": { "md5": "09e2d2b09660010974e02b5a4cdfeff1", "sha256": "6fd09bd0536dbae5ccc35e9040372e0b044c29526c90e4c3c83d58e4dceccb7e" }, "downloads": -1, "filename": "investpy-0.8.4.9.tar.gz", "has_sig": false, "md5_digest": "09e2d2b09660010974e02b5a4cdfeff1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 236903, "upload_time": "2019-06-10T15:48:34", "upload_time_iso_8601": "2019-06-10T15:48:34.472464Z", "url": "https://files.pythonhosted.org/packages/5c/72/39c00aa0d559f5f7b54ab034c84ba5f78190b4b96832959503c9a0ee9c14/investpy-0.8.4.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "d8c1b0bb79c54b1f9ffdd7c5ecbaf991", "sha256": "892bbedb99bf91f142899cfa4d4fed7e7930049bb23f5ba21b525a6d0a6ec89f" }, "downloads": -1, "filename": "investpy-0.8.5.tar.gz", "has_sig": false, "md5_digest": "d8c1b0bb79c54b1f9ffdd7c5ecbaf991", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 239939, "upload_time": "2019-07-03T11:02:30", "upload_time_iso_8601": "2019-07-03T11:02:30.001275Z", "url": "https://files.pythonhosted.org/packages/60/9b/637cfad405f4b5eb753819aae77de28303286d1e64e4b0e673eb03a8623f/investpy-0.8.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "9dd63e537adcd92babe62aa43bfacc83", "sha256": "89b17b9b88c2f32ec55937ed978a6e40bb5f21a56fbe7511d99a803b14079fc2" }, "downloads": -1, "filename": "investpy-0.8.6.tar.gz", "has_sig": false, "md5_digest": "9dd63e537adcd92babe62aa43bfacc83", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 245618, "upload_time": "2019-08-07T11:21:36", "upload_time_iso_8601": "2019-08-07T11:21:36.178115Z", "url": "https://files.pythonhosted.org/packages/7d/8e/3751a956c17c17f47ba262927367bbb66a7a58c7585816c86bb072ede8a0/investpy-0.8.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "88f6d8ab9ed7f98d80bb4c7c196ed65e", "sha256": "9fb559d3aaf0d5444f1a0d4c5d8a80f8ffbeeb068611a50d20e14f3883e831f1" }, "downloads": -1, "filename": "investpy-0.8.7.tar.gz", "has_sig": false, "md5_digest": "88f6d8ab9ed7f98d80bb4c7c196ed65e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 247255, "upload_time": "2019-08-12T14:13:15", "upload_time_iso_8601": "2019-08-12T14:13:15.857551Z", "url": "https://files.pythonhosted.org/packages/1a/1f/024795e81a3903776853d6d0419051df13b96885bbc8df3fefa1739fa428/investpy-0.8.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.8": [ { "comment_text": "", "digests": { "md5": "afccd8c3b148957845e4ce5d27798d04", "sha256": "8c9eb89b57c60222ab5f4308860652f1e4663baf8f697a613c6c512e4efbcb9c" }, "downloads": -1, "filename": "investpy-0.8.8.tar.gz", "has_sig": false, "md5_digest": "afccd8c3b148957845e4ce5d27798d04", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 248804, "upload_time": "2019-08-19T16:59:47", "upload_time_iso_8601": "2019-08-19T16:59:47.590791Z", "url": "https://files.pythonhosted.org/packages/8c/39/d457aedcffdf2457dc9a16820ed46a98a09991938b7a78168a8265f6f002/investpy-0.8.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.9": [ { "comment_text": "", "digests": { "md5": "a982d786155603597f328e0bcc34eb29", "sha256": "9de2ccc276ef6ddfb969d43d8c663050467716093ceb38f61a3a5521ed1a0ec3" }, "downloads": -1, "filename": "investpy-0.8.9.tar.gz", "has_sig": false, "md5_digest": "a982d786155603597f328e0bcc34eb29", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 249908, "upload_time": "2019-09-03T10:55:47", "upload_time_iso_8601": "2019-09-03T10:55:47.792347Z", "url": "https://files.pythonhosted.org/packages/a8/a6/900c69f914d656bdebf01f3306f0099ed77ba5b757159eea1f5b44b7ff5d/investpy-0.8.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9": [ { "comment_text": "", "digests": { "md5": "a08ffdb4ba5c802fc2069eb310cd1072", "sha256": "cf0e6975839157dc098ace8c6f2950d0b3029a439969a9dbd3e0f710b69310f3" }, "downloads": -1, "filename": "investpy-0.9.tar.gz", "has_sig": false, "md5_digest": "a08ffdb4ba5c802fc2069eb310cd1072", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 994410, "upload_time": "2019-09-10T09:36:58", "upload_time_iso_8601": "2019-09-10T09:36:58.117001Z", "url": "https://files.pythonhosted.org/packages/21/e2/6fefd45e2139f4c3e7345bf1184388b35cf6af92174bd4715f04da18297c/investpy-0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "103271e6bfd176b33659ba64e492e7b2", "sha256": "fce9a0ee6e1af87a60f2852587bdd6b9f9841b24cb8fd3488c72cef0808169b2" }, "downloads": -1, "filename": "investpy-0.9.1.tar.gz", "has_sig": false, "md5_digest": "103271e6bfd176b33659ba64e492e7b2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 1230123, "upload_time": "2019-09-13T17:45:43", "upload_time_iso_8601": "2019-09-13T17:45:43.954982Z", "url": "https://files.pythonhosted.org/packages/1a/da/6e5864e35e932671da0113f1f3566744e1e57ee2cbd9e369d8bd3e2ee2e8/investpy-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.10": [ { "comment_text": "", "digests": { "md5": "f50ce71118ce0890f7dc869a184d477f", "sha256": "8a068e6008a8db2c235499781b1c1653b2dbb3205178f8994c28bf49d67fa846" }, "downloads": -1, "filename": "investpy-0.9.10.tar.gz", "has_sig": false, "md5_digest": "f50ce71118ce0890f7dc869a184d477f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4219420, "upload_time": "2019-11-21T15:58:36", "upload_time_iso_8601": "2019-11-21T15:58:36.419667Z", "url": "https://files.pythonhosted.org/packages/84/ab/98d6b31f7f69f9841b461a74326b15b82e8ea4798eeee5d7be0ffede5796/investpy-0.9.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.11": [ { "comment_text": "", "digests": { "md5": "d34bbed692373ab88710ab186e52d3c5", "sha256": "45dca7540f89147b13573302c5da813d899436fdd6704b83cea6d9b9bfa7eae7" }, "downloads": -1, "filename": "investpy-0.9.11.tar.gz", "has_sig": false, "md5_digest": "d34bbed692373ab88710ab186e52d3c5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4309113, "upload_time": "2019-12-15T10:18:14", "upload_time_iso_8601": "2019-12-15T10:18:14.135588Z", "url": "https://files.pythonhosted.org/packages/cf/e8/1378dbf23b3390296fe5eff5155317eb782b59093a15714cfa77ceb4f42b/investpy-0.9.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.12": [ { "comment_text": "", "digests": { "md5": "cabc8074e8037d059925cf51adc97cd0", "sha256": "cb3fc0ac8007db47c485ce9c56d1ecddbefae02117bedbaa9f36eea4b06fd429" }, "downloads": -1, "filename": "investpy-0.9.12.tar.gz", "has_sig": false, "md5_digest": "cabc8074e8037d059925cf51adc97cd0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4330464, "upload_time": "2019-12-23T12:52:04", "upload_time_iso_8601": "2019-12-23T12:52:04.258088Z", "url": "https://files.pythonhosted.org/packages/92/b6/f7e53e43ca996141716c9ffc7e56a1556a513f2d6a4a421035213336ee36/investpy-0.9.12.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.13": [ { "comment_text": "", "digests": { "md5": "5689ebdcc473be790f4f31dab8f8739c", "sha256": "64333b36917426e919e33898408dd2c99d730fb52d1fca40da27708b029241b3" }, "downloads": -1, "filename": "investpy-0.9.13.tar.gz", "has_sig": false, "md5_digest": "5689ebdcc473be790f4f31dab8f8739c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4356116, "upload_time": "2020-01-16T09:36:38", "upload_time_iso_8601": "2020-01-16T09:36:38.043114Z", "url": "https://files.pythonhosted.org/packages/75/40/2b43589b9d4b304d6b282de5ea9edd958e58d46fd177b919bdb4d6afd94c/investpy-0.9.13.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.14": [ { "comment_text": "", "digests": { "md5": "a5fc131d9d61e02368f42143735a976b", "sha256": "7176b4cae5dc8858d9bcb823e81c209220d2afce7d93c0ef9acb21df4aab3579" }, "downloads": -1, "filename": "investpy-0.9.14.tar.gz", "has_sig": false, "md5_digest": "a5fc131d9d61e02368f42143735a976b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4367541, "upload_time": "2020-02-28T12:09:08", "upload_time_iso_8601": "2020-02-28T12:09:08.295566Z", "url": "https://files.pythonhosted.org/packages/21/67/0488de1558cf159260046521dcba0bb1304f6c1190372bfb4ac709e994f3/investpy-0.9.14.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "3095d5003d0ac8b6fbf3129433094744", "sha256": "e119a306fa50732a4e20841967cf018a88ad1e005c09e81a898d457843c10975" }, "downloads": -1, "filename": "investpy-0.9.2.tar.gz", "has_sig": false, "md5_digest": "3095d5003d0ac8b6fbf3129433094744", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 1230148, "upload_time": "2019-09-13T18:07:22", "upload_time_iso_8601": "2019-09-13T18:07:22.421355Z", "url": "https://files.pythonhosted.org/packages/3a/a6/4ea9936847469b1356313a12d99de75cf2e81aaf5f06d749c5df871045cd/investpy-0.9.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "bfb0d0156e46c99c992acdfd5fbf0a06", "sha256": "a52833b1883e573c871715443acc4c2a5ed112438f612af03f3ccb098b37505c" }, "downloads": -1, "filename": "investpy-0.9.3.tar.gz", "has_sig": false, "md5_digest": "bfb0d0156e46c99c992acdfd5fbf0a06", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 1230280, "upload_time": "2019-09-19T15:34:17", "upload_time_iso_8601": "2019-09-19T15:34:17.234310Z", "url": "https://files.pythonhosted.org/packages/f2/a2/f7093c65c8a6b15c1759ad73fe6ac080946c3410b07267cba09f6e1cf8b0/investpy-0.9.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "e7eff628a64d9365d7dd1011b3f46e3f", "sha256": "f2946b57224403718df33ad35ea1e067f3755e6e0d594d039b572b8ee6e281bc" }, "downloads": -1, "filename": "investpy-0.9.4.tar.gz", "has_sig": false, "md5_digest": "e7eff628a64d9365d7dd1011b3f46e3f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 1236525, "upload_time": "2019-09-24T18:04:23", "upload_time_iso_8601": "2019-09-24T18:04:23.048489Z", "url": "https://files.pythonhosted.org/packages/60/db/d64fd885d3ba861428b781fa4a6bc5f91e6a036f996866269a5285825f61/investpy-0.9.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "81416649350d814716cb3b027f6dc0b6", "sha256": "17c72e42f300c530fcfa6ada429436a5d40214ca2f407c6d861d3aa9c8270608" }, "downloads": -1, "filename": "investpy-0.9.5.tar.gz", "has_sig": false, "md5_digest": "81416649350d814716cb3b027f6dc0b6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 1244794, "upload_time": "2019-09-25T06:26:46", "upload_time_iso_8601": "2019-09-25T06:26:46.848990Z", "url": "https://files.pythonhosted.org/packages/c6/01/152daccc47d5f4577ac681f6bf60f02b6689a771955c842dba581d4a686c/investpy-0.9.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "a9cd777d04422aecc310a6ccd0dd0608", "sha256": "65e9f450380e19499ab11eb68b2271b07b4b7f28841ae966a42c9ac720485eb3" }, "downloads": -1, "filename": "investpy-0.9.6.tar.gz", "has_sig": false, "md5_digest": "a9cd777d04422aecc310a6ccd0dd0608", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 1440098, "upload_time": "2019-10-02T17:25:50", "upload_time_iso_8601": "2019-10-02T17:25:50.249190Z", "url": "https://files.pythonhosted.org/packages/48/d5/b260e4a3b921b7600db072affd45300a4ed502ff14616eaa0eaf9788c38e/investpy-0.9.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "17c6f2a049cf4c3ceab973231577c17b", "sha256": "fc38385eb3163279abc7715dfdb379bfd620d84d20ba38e477b876e2180e438e" }, "downloads": -1, "filename": "investpy-0.9.7.tar.gz", "has_sig": false, "md5_digest": "17c6f2a049cf4c3ceab973231577c17b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 3881166, "upload_time": "2019-10-12T20:34:47", "upload_time_iso_8601": "2019-10-12T20:34:47.997629Z", "url": "https://files.pythonhosted.org/packages/19/ff/0eb21d146e751e42394ada5711e4b8b262f5e735e05681cfd0981c77bde5/investpy-0.9.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "5beda7835669eef205d78fec0d54bab2", "sha256": "5e18401e2e1cb6c13163c12e4dc6886904856e9ebc81dd308cc5107349a23693" }, "downloads": -1, "filename": "investpy-0.9.8.tar.gz", "has_sig": false, "md5_digest": "5beda7835669eef205d78fec0d54bab2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 3938066, "upload_time": "2019-10-30T16:44:42", "upload_time_iso_8601": "2019-10-30T16:44:42.982935Z", "url": "https://files.pythonhosted.org/packages/ce/75/1d00cff18cd52a43e64a55055bbce86c5ff470c81c09d6add3cb918cc299/investpy-0.9.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.9": [ { "comment_text": "", "digests": { "md5": "3e10cc46c29e29106e74574ca0f8cdc1", "sha256": "2c2e2a2bd21641a90f05827861aa13bc30b60dda6f3417ebc15aec7394a3db0d" }, "downloads": -1, "filename": "investpy-0.9.9.tar.gz", "has_sig": false, "md5_digest": "3e10cc46c29e29106e74574ca0f8cdc1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 3927615, "upload_time": "2019-11-13T11:37:15", "upload_time_iso_8601": "2019-11-13T11:37:15.407556Z", "url": "https://files.pythonhosted.org/packages/0c/90/9944dfa364672e71419b71b2f4fe71ddf46373bd86d47a84f7a38a717fb8/investpy-0.9.9.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0": [ { "comment_text": "", "digests": { "md5": "382f3594ecdb439d01ce2d03fe060527", "sha256": "af0b23eaa62ee428efb799702be10a32786fb36eabad0a81a43c408df9e5a28b" }, "downloads": -1, "filename": "investpy-1.0.tar.gz", "has_sig": false, "md5_digest": "382f3594ecdb439d01ce2d03fe060527", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4365917, "upload_time": "2020-08-09T10:48:59", "upload_time_iso_8601": "2020-08-09T10:48:59.049377Z", "url": "https://files.pythonhosted.org/packages/68/13/96dafb7ab1bdd6e72b6d7ec7d1b1a1452c5a80bda58e552021c543d75e9b/investpy-1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "47e5188f70808d2bdc3b3ef50b419e99", "sha256": "ec5ce0d0e975740b26a1ea946cae378c8fd1a2f8d8f07420c6cd9d06fef5e60d" }, "downloads": -1, "filename": "investpy-1.0.1.tar.gz", "has_sig": false, "md5_digest": "47e5188f70808d2bdc3b3ef50b419e99", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4375483, "upload_time": "2021-01-31T13:00:18", "upload_time_iso_8601": "2021-01-31T13:00:18.235739Z", "url": "https://files.pythonhosted.org/packages/23/df/a5ca47622099730f7c88da997fea802472da2001c6430b3d7859fd707885/investpy-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "c088f1de2b2d1e8e8b02cf74e4e18821", "sha256": "9b64f556aec190e351e98e455d106b49f3fc526858b44c52f41c46698c17af39" }, "downloads": -1, "filename": "investpy-1.0.2.tar.gz", "has_sig": false, "md5_digest": "c088f1de2b2d1e8e8b02cf74e4e18821", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4367111, "upload_time": "2021-02-07T13:14:29", "upload_time_iso_8601": "2021-02-07T13:14:29.458069Z", "url": "https://files.pythonhosted.org/packages/37/c9/5e82466cd2ae8d1a517d6725391765fee88a7a390c932fd76a5bcd52e5e0/investpy-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "130c679197d8c23e41975b49b7ed760c", "sha256": "986bb2f8482b3df68ca419e013e51125e184ab865baa8fd20da3a8af2d914f70" }, "downloads": -1, "filename": "investpy-1.0.3.tar.gz", "has_sig": false, "md5_digest": "130c679197d8c23e41975b49b7ed760c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4369768, "upload_time": "2021-02-21T20:06:31", "upload_time_iso_8601": "2021-02-21T20:06:31.857715Z", "url": "https://files.pythonhosted.org/packages/86/54/0dfe3a7200d6ac98bd57cb984a9d2822fcaf842207f4be5559b9bb423765/investpy-1.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "5893941f33421f2332aac18f95665da0", "sha256": "35e4eb99dbb19599ff8e74854e7bdd4315cfbc4e6bc06e7aa7153691aea214aa" }, "downloads": -1, "filename": "investpy-1.0.4.tar.gz", "has_sig": false, "md5_digest": "5893941f33421f2332aac18f95665da0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4388854, "upload_time": "2021-03-31T11:11:12", "upload_time_iso_8601": "2021-03-31T11:11:12.239799Z", "url": "https://files.pythonhosted.org/packages/6a/95/04bde2d98f602427e7b73f306e4111339773d08b4e6abc4b37bc599d4d14/investpy-1.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "b5294a5ed1782c562c0ca4d531a405df", "sha256": "ef042e6095e7371328a8a573a32db8d9eeb55942ba454c76a04fa5241aae03dd" }, "downloads": -1, "filename": "investpy-1.0.5.tar.gz", "has_sig": false, "md5_digest": "b5294a5ed1782c562c0ca4d531a405df", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4385539, "upload_time": "2021-04-08T12:11:05", "upload_time_iso_8601": "2021-04-08T12:11:05.281787Z", "url": "https://files.pythonhosted.org/packages/1c/15/7d9369822c1a14bb5c7eb85b57297eb2aaf34392d85ac66cce43ed0c6e43/investpy-1.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "b6e2c7807fe38ad13ffee7eddc2a038e", "sha256": "c1455236b3a6f3fad529a4059927a9d759e61ab0cd54218e8695ceda551d4a7b" }, "downloads": -1, "filename": "investpy-1.0.6.tar.gz", "has_sig": false, "md5_digest": "b6e2c7807fe38ad13ffee7eddc2a038e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4388870, "upload_time": "2021-04-10T17:34:25", "upload_time_iso_8601": "2021-04-10T17:34:25.763593Z", "url": "https://files.pythonhosted.org/packages/b7/01/f0112c19563e342794c848ae9557e217222035849452a51680fbacd16b65/investpy-1.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "96ac451d35411c15fd0fa012d8e14b7a", "sha256": "560d15922d9dcf2861f941656c1d065255f78e991e5367a4b0058eabced24c86" }, "downloads": -1, "filename": "investpy-1.0.7.tar.gz", "has_sig": false, "md5_digest": "96ac451d35411c15fd0fa012d8e14b7a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 4399232, "upload_time": "2021-06-13T12:29:10", "upload_time_iso_8601": "2021-06-13T12:29:10.363822Z", "url": "https://files.pythonhosted.org/packages/c3/7e/549ee85b6cebe2b96b02b20ed7158075ad3d7054177c1cdd9e07f04a7992/investpy-1.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.8": [ { "comment_text": "", "digests": { "md5": "977cd85f3ded5ec9ae53c1c1d94c8111", "sha256": "6a7632a94b484ee07cd54afd416bdc759cd905ba60c62dbb8a8d157229b267c6" }, "downloads": -1, "filename": "investpy-1.0.8.tar.gz", "has_sig": false, "md5_digest": "977cd85f3ded5ec9ae53c1c1d94c8111", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 4385102, "upload_time": "2022-01-24T16:43:39", "upload_time_iso_8601": "2022-01-24T16:43:39.453496Z", "url": "https://files.pythonhosted.org/packages/b7/fd/84134f4aa4ee4628e1d9e662b9e167032c5dd14ea63c0842e3b5f402cda0/investpy-1.0.8.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "977cd85f3ded5ec9ae53c1c1d94c8111", "sha256": "6a7632a94b484ee07cd54afd416bdc759cd905ba60c62dbb8a8d157229b267c6" }, "downloads": -1, "filename": "investpy-1.0.8.tar.gz", "has_sig": false, "md5_digest": "977cd85f3ded5ec9ae53c1c1d94c8111", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 4385102, "upload_time": "2022-01-24T16:43:39", "upload_time_iso_8601": "2022-01-24T16:43:39.453496Z", "url": "https://files.pythonhosted.org/packages/b7/fd/84134f4aa4ee4628e1d9e662b9e167032c5dd14ea63c0842e3b5f402cda0/investpy-1.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }