Skip to content

Commit

Permalink
update 0.3.6 pre-alpha release
Browse files Browse the repository at this point in the history
fixed fund errors
  • Loading branch information
Álvaro Bartolomé committed Feb 3, 2019
1 parent 53c65e4 commit 2c06eff
Show file tree
Hide file tree
Showing 4 changed files with 102 additions and 118 deletions.
206 changes: 94 additions & 112 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ install:
- pip install pandas==0.23.4
- pip install requests==2.21.0
- pip install beautifulsoup4==4.7.1
- pip install investing-scrapper==0.3.5
- pip install investing-scrapper==0.3.6
- pip install pytest==4.1.1

script:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ def readme():

setup(
name='investing_scrapper',
version='0.3.5',
version='0.3.6',
packages=find_packages(),
url='',
download_url='https://github.com/alvarob96/investing-scrapper/archive/0.3.5.tar.gz',
download_url='https://github.com/alvarob96/investing-scrapper/archive/0.3.6.tar.gz',
license='MIT License',
author='Alvaro Bartolome',
author_email='[email protected]',
Expand Down
8 changes: 5 additions & 3 deletions tests/test_investing.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@


def test_investing():
investing_scrapper.get_recent_data(equity='BBVA')
investing_scrapper.get_historical_data(equity='BBVA', start='30/10/2018', end='30/12/2018')
investing_scrapper.get_recent_data(equity='bbva')
investing_scrapper.get_historical_data(equity='bbva', start='30/10/2018', end='30/12/2018')
"""
investing_scrapper.get_fund_recent_data(fund='Bankia Soy Asi Cauto FI')
investing_scrapper.get_fund_historical_data(fund='Bankia Soy Asi Cauto FI', start='30/10/2018', end='30/12/2018')
investing_scrapper.get_fund_historical_data(fund='Bankia Soy Asi Cauto FI', start='30/10/2018', end='30/12/2018')
"""

0 comments on commit 2c06eff

Please sign in to comment.