Skip to content

Commit 2c06eff

Browse files
author
Álvaro Bartolomé
committed
update 0.3.6 pre-alpha release
fixed fund errors
1 parent 53c65e4 commit 2c06eff

File tree

4 files changed

+102
-118
lines changed

4 files changed

+102
-118
lines changed

Diff for: .idea/workspace.xml

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

Diff for: .travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ install:
1111
- pip install pandas==0.23.4
1212
- pip install requests==2.21.0
1313
- pip install beautifulsoup4==4.7.1
14-
- pip install investing-scrapper==0.3.5
14+
- pip install investing-scrapper==0.3.6
1515
- pip install pytest==4.1.1
1616

1717
script:

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ def readme():
1111

1212
setup(
1313
name='investing_scrapper',
14-
version='0.3.5',
14+
version='0.3.6',
1515
packages=find_packages(),
1616
url='',
17-
download_url='https://github.com/alvarob96/investing-scrapper/archive/0.3.5.tar.gz',
17+
download_url='https://github.com/alvarob96/investing-scrapper/archive/0.3.6.tar.gz',
1818
license='MIT License',
1919
author='Alvaro Bartolome',
2020
author_email='[email protected]',

Diff for: tests/test_investing.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33

44

55
def test_investing():
6-
investing_scrapper.get_recent_data(equity='BBVA')
7-
investing_scrapper.get_historical_data(equity='BBVA', start='30/10/2018', end='30/12/2018')
6+
investing_scrapper.get_recent_data(equity='bbva')
7+
investing_scrapper.get_historical_data(equity='bbva', start='30/10/2018', end='30/12/2018')
8+
"""
89
investing_scrapper.get_fund_recent_data(fund='Bankia Soy Asi Cauto FI')
9-
investing_scrapper.get_fund_historical_data(fund='Bankia Soy Asi Cauto FI', start='30/10/2018', end='30/12/2018')
10+
investing_scrapper.get_fund_historical_data(fund='Bankia Soy Asi Cauto FI', start='30/10/2018', end='30/12/2018')
11+
"""

0 commit comments

Comments
 (0)