Skip to content

Commit 7fe1d6e

Browse files
author
alvarob96
committed
0.8.4 release
1 parent 7330a1d commit 7fe1d6e

File tree

6 files changed

+471
-493
lines changed

6 files changed

+471
-493
lines changed

Diff for: .idea/workspace.xml

+224-249
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ dist: xenial
1111
install:
1212
- pip install pandas==0.24.2
1313
- pip install requests==2.21.0
14+
- pip install lxml==4.3.2
1415
- pip install unidecode==1.0.23
15-
- pip install investpy==0.8.2
16+
- pip install investpy==0.8.3
1617
- pip install pytest==4.1.1
17-
- pip install lxml==4.3.2
1818

1919
script:
2020
- pytest

Diff for: README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ To conclude this section, I am in the need to specify that this is not the final
1616

1717
In order to get this package working you will need to install [**investpy**](https://pypi.org/project/investpy/) from PyPi via Terminal typing:
1818

19-
``pip install investpy==0.8.3``
19+
``pip install investpy==0.8.4``
2020

2121
All the dependencies are already listed on the setup file of the package, but to sum them up, you will need the following requirements:
2222

2323
* [**pandas 0.24.2**](https://pypi.org/project/pandas/)
2424
* [**requests 2.21.0**](https://pypi.org/project/requests/)
25+
* [**lxml 4.3.3**](https://pypi.org/project/lxml/)
2526
* [**unidecode 1.0.23**](https://pypi.org/project/unidecode/)
2627
* [**pytest 4.1.1**](https://pypi.org/project/pytest/)
27-
* [**lxml 4.3.3**](https://pypi.org/project/lxml/)
2828

29-
## Release Notes 0.8.3
29+
## Release Notes 0.8.4
3030

3131
* Several fixes on minor bugs/errors
3232
* Added support for Python 3.5
@@ -35,6 +35,9 @@ All the dependencies are already listed on the setup file of the package, but to
3535
* docstring updated and "Use" section removed from package documentation
3636
* Setup of some changes for future releases
3737
* Handled errors such as input error return values or input dates format
38+
* Full company name for equities add
39+
* Company Profile retrieval returned value is a dict with the source and the description
40+
* Internal fixes to improve its ease of adaptability
3841

3942
## Additional Information
4043

Diff for: investpy/equities.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def get_equity_names():
6161

6262
data = {
6363
"name": element_.text_content(),
64-
"full_name": full_name_,
64+
"full_name": full_name_.rstrip(),
6565
"tag": tag_,
6666
"isin": isin_,
6767
"id": id_

0 commit comments

Comments
 (0)