Skip to content

Commit

Permalink
0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
harrytwigg committed Apr 2, 2021
1 parent ebf43e6 commit f6a21bf
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file removed dist/viaduct-0.1.1.tar.gz
Binary file not shown.
Binary file added dist/viaduct-0.1.2.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name='viaduct', # How you named your package folder (MyLib)
packages=['viaduct'], # Chose the same as "name"
version='0.1.2', # Start with a small number and increase it with every change you make
version='0.1.3', # Start with a small number and increase it with every change you make
# Chose a license from here: https://help.github.com/articles/licensing-a-repository
license='gpl-3.0',
# Give a short description about your library
Expand All @@ -14,7 +14,7 @@
# Provide either the link to your github or to your website
url='https://github.com/harrytwigg/Viaduct-Trading212-Python-API',
# I explain this later on
download_url='https://github.com/harrytwigg/Viaduct-Trading212-Python-API/archive/0.1.2.tar.gz',
download_url='https://github.com/harrytwigg/Viaduct-Trading212-Python-API/archive/0.1.3.tar.gz',
keywords=['python', 'api', 'rest', 'api-wrapper', 'viaduct', 'trading212',
'trading212-api'], # Keywords that define your package best
install_requires=[ # I get to this in a second
Expand Down
2 changes: 1 addition & 1 deletion viaduct/isa.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def getPortfolioPerformance(self, historyPeriod):

# Get all instruments on Trading212!
def getAllInstruments(self):
return get(self.urlf("rest/instruments/EQUITY/1"))
return get(self.urlf("/rest/instruments/EQUITY/1"))

# Gets company ISINs and tickers for graphs etc
def getTickers(self):
Expand Down

0 comments on commit f6a21bf

Please sign in to comment.