Skip to content

Commit 56ed95f

Browse files
author
Álvaro Bartolomé del Canto
committed
release fix setup 0.9.3
- docs/ updated - redimensioned and renamed investpy logo - fixed error when retrieving company_profiles in spanish since the retrieved_profile was a str instead of a dict - closed #35 since the introduced equity/fund/etf name was returned even if it was not properly case-formatted
1 parent cc8c65e commit 56ed95f

33 files changed

+89
-55
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@
1111
[![Downloads](https://img.shields.io/pypi/dm/investpy.svg?maxAge=2592000&label=installs&color=%2327B1FF)](https://pypistats.org/packages/investpy)
1212

1313
<div>
14-
<img src="https://raw.githubusercontent.com/alvarob96/investpy/master/docs/investpy.png"><br>
14+
<img src="https://raw.githubusercontent.com/alvarob96/investpy/master/docs/investpy_logo.png"><br>
1515
</div>
1616

1717
## Introduction
1818

19-
2019
investpy is a Python package to retrieve real-time historical data from [Investing](https://www.investing.com/).
2120
It provides historical data retrieval from up to **28.121 equities, 4.120 funds and 8.755 etfs**. Basically,
2221
it allows you to download historical data from all the indexed equities, funds and etfs in Investing.com. Therefore,
@@ -32,7 +31,7 @@ are some of the features that currently lead investpy to be one of the most cons
3231
In order to get this package working you will need to install [**investpy**](https://pypi.org/project/investpy/) using
3332
pip on the terminal by typing:
3433

35-
``$ pip install investpy==0.9.2``
34+
``$ pip install investpy==0.9.3``
3635

3736
Every package used is listed in [requirements.txt](https://github.com/alvarob96/investpy/blob/master/requirements.txt)
3837
file, which can also be installed via pip:
665 Bytes
Binary file not shown.

docs/_build/doctrees/index.doctree

342 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

docs/_build/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: d489656db2532687c5b4eb366b70bbeb
3+
config: fe5b37d19b9697c8d862d6a99d122e52
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_build/html/_sources/index.rst.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
Welcome to investpy's documentation!
77
====================================
88

9+
.. image:: https://raw.githubusercontent.com/alvarob96/investpy/master/docs/investpy_logo.png
10+
:align: center
11+
912
.. toctree::
1013
:maxdepth: 3
1114
:caption: Contents:
@@ -14,6 +17,7 @@ Welcome to investpy's documentation!
1417
installation.rst
1518
model.rst
1619
equities.rst
20+
funds.rst
1721
api.rst
1822
information.md
1923
disclaimer.md

docs/_build/html/_sources/installation.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Installation
55

66
.. note::
77

8-
After installing the package you are now available to use it! As investpy's latest release is 0.9.2 the installation is
8+
After installing the package you are now available to use it! As investpy's latest release is 0.9.3 the installation is
99
optimized for it. If you try installing another investpy release, some features may not work.
1010

1111
First Installation

docs/_build/html/_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var DOCUMENTATION_OPTIONS = {
22
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
3-
VERSION: '0.9.2',
3+
VERSION: '0.9.3',
44
LANGUAGE: 'None',
55
COLLAPSE_INDEX: false,
66
FILE_SUFFIX: '.html',

docs/_build/html/api.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>API Reference &mdash; investpy 0.9.2 documentation</title>
11+
<title>API Reference &mdash; investpy 0.9.3 documentation</title>
1212

1313

1414

@@ -36,7 +36,7 @@
3636
<link rel="index" title="Index" href="genindex.html" />
3737
<link rel="search" title="Search" href="search.html" />
3838
<link rel="next" title="investpy" href="main_api.html" />
39-
<link rel="prev" title="Stocks/Equities" href="equities.html" />
39+
<link rel="prev" title="Funds" href="funds.html" />
4040
</head>
4141

4242
<body class="wy-body-for-nav">
@@ -60,7 +60,7 @@
6060

6161

6262
<div class="version">
63-
0.9.2
63+
0.9.3
6464
</div>
6565

6666

@@ -90,6 +90,7 @@
9090
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
9191
<li class="toctree-l1"><a class="reference internal" href="model.html">Model</a></li>
9292
<li class="toctree-l1"><a class="reference internal" href="equities.html">Stocks/Equities</a></li>
93+
<li class="toctree-l1"><a class="reference internal" href="funds.html">Funds</a></li>
9394
<li class="toctree-l1 current"><a class="current reference internal" href="#">API Reference</a><ul>
9495
<li class="toctree-l2"><a class="reference internal" href="main_api.html"><code class="xref py py-mod docutils literal notranslate"><span class="pre">investpy</span></code></a></li>
9596
<li class="toctree-l2"><a class="reference internal" href="equities_api.html"><code class="xref py py-mod docutils literal notranslate"><span class="pre">investpy.equities</span></code></a></li>
@@ -188,7 +189,7 @@ <h1>API Reference<a class="headerlink" href="#api-reference" title="Permalink to
188189
<a href="main_api.html" class="btn btn-neutral float-right" title="investpy" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
189190

190191

191-
<a href="equities.html" class="btn btn-neutral float-left" title="Stocks/Equities" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
192+
<a href="funds.html" class="btn btn-neutral float-left" title="Funds" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>
192193

193194
</div>
194195

docs/_build/html/disclaimer.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>Disclaimer &mdash; investpy 0.9.2 documentation</title>
11+
<title>Disclaimer &mdash; investpy 0.9.3 documentation</title>
1212

1313

1414

@@ -59,7 +59,7 @@
5959

6060

6161
<div class="version">
62-
0.9.2
62+
0.9.3
6363
</div>
6464

6565

@@ -89,6 +89,7 @@
8989
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
9090
<li class="toctree-l1"><a class="reference internal" href="model.html">Model</a></li>
9191
<li class="toctree-l1"><a class="reference internal" href="equities.html">Stocks/Equities</a></li>
92+
<li class="toctree-l1"><a class="reference internal" href="funds.html">Funds</a></li>
9293
<li class="toctree-l1"><a class="reference internal" href="api.html">API Reference</a></li>
9394
<li class="toctree-l1"><a class="reference internal" href="information.html">Additional Information</a></li>
9495
<li class="toctree-l1 current"><a class="current reference internal" href="#">Disclaimer</a></li>

docs/_build/html/equities.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>Stocks/Equities &mdash; investpy 0.9.2 documentation</title>
11+
<title>Stocks/Equities &mdash; investpy 0.9.3 documentation</title>
1212

1313

1414

@@ -35,7 +35,7 @@
3535
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
3636
<link rel="index" title="Index" href="genindex.html" />
3737
<link rel="search" title="Search" href="search.html" />
38-
<link rel="next" title="API Reference" href="api.html" />
38+
<link rel="next" title="Funds" href="funds.html" />
3939
<link rel="prev" title="Model" href="model.html" />
4040
</head>
4141

@@ -60,7 +60,7 @@
6060

6161

6262
<div class="version">
63-
0.9.2
63+
0.9.3
6464
</div>
6565

6666

@@ -99,6 +99,7 @@
9999
<li class="toctree-l2"><a class="reference internal" href="#samples">Samples</a></li>
100100
</ul>
101101
</li>
102+
<li class="toctree-l1"><a class="reference internal" href="funds.html">Funds</a></li>
102103
<li class="toctree-l1"><a class="reference internal" href="api.html">API Reference</a></li>
103104
<li class="toctree-l1"><a class="reference internal" href="information.html">Additional Information</a></li>
104105
<li class="toctree-l1"><a class="reference internal" href="disclaimer.html">Disclaimer</a></li>
@@ -277,7 +278,7 @@ <h2>Samples<a class="headerlink" href="#samples" title="Permalink to this headli
277278

278279
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
279280

280-
<a href="api.html" class="btn btn-neutral float-right" title="API Reference" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
281+
<a href="funds.html" class="btn btn-neutral float-right" title="Funds" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
281282

282283

283284
<a href="model.html" class="btn btn-neutral float-left" title="Model" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a>

docs/_build/html/equities_api.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>investpy.equities &mdash; investpy 0.9.2 documentation</title>
11+
<title>investpy.equities &mdash; investpy 0.9.3 documentation</title>
1212

1313

1414

@@ -60,7 +60,7 @@
6060

6161

6262
<div class="version">
63-
0.9.2
63+
0.9.3
6464
</div>
6565

6666

@@ -90,6 +90,7 @@
9090
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
9191
<li class="toctree-l1"><a class="reference internal" href="model.html">Model</a></li>
9292
<li class="toctree-l1"><a class="reference internal" href="equities.html">Stocks/Equities</a></li>
93+
<li class="toctree-l1"><a class="reference internal" href="funds.html">Funds</a></li>
9394
<li class="toctree-l1 current"><a class="reference internal" href="api.html">API Reference</a><ul class="current">
9495
<li class="toctree-l2"><a class="reference internal" href="main_api.html"><code class="xref py py-mod docutils literal notranslate"><span class="pre">investpy</span></code></a></li>
9596
<li class="toctree-l2 current"><a class="current reference internal" href="#"><code class="xref py py-mod docutils literal notranslate"><span class="pre">investpy.equities</span></code></a></li>

docs/_build/html/etfs_api.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>investpy.etfs &mdash; investpy 0.9.2 documentation</title>
11+
<title>investpy.etfs &mdash; investpy 0.9.3 documentation</title>
1212

1313

1414

@@ -60,7 +60,7 @@
6060

6161

6262
<div class="version">
63-
0.9.2
63+
0.9.3
6464
</div>
6565

6666

@@ -90,6 +90,7 @@
9090
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
9191
<li class="toctree-l1"><a class="reference internal" href="model.html">Model</a></li>
9292
<li class="toctree-l1"><a class="reference internal" href="equities.html">Stocks/Equities</a></li>
93+
<li class="toctree-l1"><a class="reference internal" href="funds.html">Funds</a></li>
9394
<li class="toctree-l1 current"><a class="reference internal" href="api.html">API Reference</a><ul class="current">
9495
<li class="toctree-l2"><a class="reference internal" href="main_api.html"><code class="xref py py-mod docutils literal notranslate"><span class="pre">investpy</span></code></a></li>
9596
<li class="toctree-l2"><a class="reference internal" href="equities_api.html"><code class="xref py py-mod docutils literal notranslate"><span class="pre">investpy.equities</span></code></a></li>

docs/_build/html/funds_api.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>investpy.funds &mdash; investpy 0.9.2 documentation</title>
11+
<title>investpy.funds &mdash; investpy 0.9.3 documentation</title>
1212

1313

1414

@@ -60,7 +60,7 @@
6060

6161

6262
<div class="version">
63-
0.9.2
63+
0.9.3
6464
</div>
6565

6666

@@ -90,6 +90,7 @@
9090
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
9191
<li class="toctree-l1"><a class="reference internal" href="model.html">Model</a></li>
9292
<li class="toctree-l1"><a class="reference internal" href="equities.html">Stocks/Equities</a></li>
93+
<li class="toctree-l1"><a class="reference internal" href="funds.html">Funds</a></li>
9394
<li class="toctree-l1 current"><a class="reference internal" href="api.html">API Reference</a><ul class="current">
9495
<li class="toctree-l2"><a class="reference internal" href="main_api.html"><code class="xref py py-mod docutils literal notranslate"><span class="pre">investpy</span></code></a></li>
9596
<li class="toctree-l2"><a class="reference internal" href="equities_api.html"><code class="xref py py-mod docutils literal notranslate"><span class="pre">investpy.equities</span></code></a></li>

docs/_build/html/genindex.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1111

12-
<title>Index &mdash; investpy 0.9.2 documentation</title>
12+
<title>Index &mdash; investpy 0.9.3 documentation</title>
1313

1414

1515

@@ -59,7 +59,7 @@
5959

6060

6161
<div class="version">
62-
0.9.2
62+
0.9.3
6363
</div>
6464

6565

@@ -89,6 +89,7 @@
8989
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
9090
<li class="toctree-l1"><a class="reference internal" href="model.html">Model</a></li>
9191
<li class="toctree-l1"><a class="reference internal" href="equities.html">Stocks/Equities</a></li>
92+
<li class="toctree-l1"><a class="reference internal" href="funds.html">Funds</a></li>
9293
<li class="toctree-l1"><a class="reference internal" href="api.html">API Reference</a></li>
9394
<li class="toctree-l1"><a class="reference internal" href="information.html">Additional Information</a></li>
9495
<li class="toctree-l1"><a class="reference internal" href="disclaimer.html">Disclaimer</a></li>

docs/_build/html/index.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>Welcome to investpy’s documentation! &mdash; investpy 0.9.2 documentation</title>
11+
<title>Welcome to investpy’s documentation! &mdash; investpy 0.9.3 documentation</title>
1212

1313

1414

@@ -59,7 +59,7 @@
5959

6060

6161
<div class="version">
62-
0.9.2
62+
0.9.3
6363
</div>
6464

6565

@@ -89,6 +89,7 @@
8989
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
9090
<li class="toctree-l1"><a class="reference internal" href="model.html">Model</a></li>
9191
<li class="toctree-l1"><a class="reference internal" href="equities.html">Stocks/Equities</a></li>
92+
<li class="toctree-l1"><a class="reference internal" href="funds.html">Funds</a></li>
9293
<li class="toctree-l1"><a class="reference internal" href="api.html">API Reference</a></li>
9394
<li class="toctree-l1"><a class="reference internal" href="information.html">Additional Information</a></li>
9495
<li class="toctree-l1"><a class="reference internal" href="disclaimer.html">Disclaimer</a></li>
@@ -158,6 +159,7 @@
158159

159160
<div class="section" id="welcome-to-investpy-s-documentation">
160161
<h1>Welcome to investpy’s documentation!<a class="headerlink" href="#welcome-to-investpy-s-documentation" title="Permalink to this headline"></a></h1>
162+
<img alt="https://raw.githubusercontent.com/alvarob96/investpy/master/docs/investpy_logo.png" class="align-center" src="https://raw.githubusercontent.com/alvarob96/investpy/master/docs/investpy_logo.png" />
161163
<div class="toctree-wrapper compound">
162164
<p class="caption"><span class="caption-text">Contents:</span></p>
163165
<ul>
@@ -182,6 +184,7 @@ <h1>Welcome to investpy’s documentation!<a class="headerlink" href="#welcome-t
182184
<li class="toctree-l2"><a class="reference internal" href="equities.html#samples">Samples</a></li>
183185
</ul>
184186
</li>
187+
<li class="toctree-l1"><a class="reference internal" href="funds.html">Funds</a></li>
185188
<li class="toctree-l1"><a class="reference internal" href="api.html">API Reference</a><ul>
186189
<li class="toctree-l2"><a class="reference internal" href="main_api.html"><code class="xref py py-mod docutils literal notranslate"><span class="pre">investpy</span></code></a></li>
187190
<li class="toctree-l2"><a class="reference internal" href="equities_api.html"><code class="xref py py-mod docutils literal notranslate"><span class="pre">investpy.equities</span></code></a></li>

docs/_build/html/information.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>Additional Information &mdash; investpy 0.9.2 documentation</title>
11+
<title>Additional Information &mdash; investpy 0.9.3 documentation</title>
1212

1313

1414

@@ -60,7 +60,7 @@
6060

6161

6262
<div class="version">
63-
0.9.2
63+
0.9.3
6464
</div>
6565

6666

@@ -90,6 +90,7 @@
9090
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
9191
<li class="toctree-l1"><a class="reference internal" href="model.html">Model</a></li>
9292
<li class="toctree-l1"><a class="reference internal" href="equities.html">Stocks/Equities</a></li>
93+
<li class="toctree-l1"><a class="reference internal" href="funds.html">Funds</a></li>
9394
<li class="toctree-l1"><a class="reference internal" href="api.html">API Reference</a></li>
9495
<li class="toctree-l1 current"><a class="current reference internal" href="#">Additional Information</a></li>
9596
<li class="toctree-l1"><a class="reference internal" href="disclaimer.html">Disclaimer</a></li>

docs/_build/html/installation.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1010

11-
<title>Installation &mdash; investpy 0.9.2 documentation</title>
11+
<title>Installation &mdash; investpy 0.9.3 documentation</title>
1212

1313

1414

@@ -60,7 +60,7 @@
6060

6161

6262
<div class="version">
63-
0.9.2
63+
0.9.3
6464
</div>
6565

6666

@@ -94,6 +94,7 @@
9494
</li>
9595
<li class="toctree-l1"><a class="reference internal" href="model.html">Model</a></li>
9696
<li class="toctree-l1"><a class="reference internal" href="equities.html">Stocks/Equities</a></li>
97+
<li class="toctree-l1"><a class="reference internal" href="funds.html">Funds</a></li>
9798
<li class="toctree-l1"><a class="reference internal" href="api.html">API Reference</a></li>
9899
<li class="toctree-l1"><a class="reference internal" href="information.html">Additional Information</a></li>
99100
<li class="toctree-l1"><a class="reference internal" href="disclaimer.html">Disclaimer</a></li>
@@ -165,7 +166,7 @@
165166
<span id="installation-label"></span><h1>Installation<a class="headerlink" href="#installation" title="Permalink to this headline"></a></h1>
166167
<div class="admonition note">
167168
<p class="admonition-title">Note</p>
168-
<p>After installing the package you are now available to use it! As investpy’s latest release is 0.9.2 the installation is
169+
<p>After installing the package you are now available to use it! As investpy’s latest release is 0.9.3 the installation is
169170
optimized for it. If you try installing another investpy release, some features may not work.</p>
170171
</div>
171172
<div class="section" id="first-installation">

0 commit comments

Comments
 (0)