Skip to content

Commit f6a21bf

Browse files
committed
0.1.3
1 parent ebf43e6 commit f6a21bf

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

dist/viaduct-0.1.1.tar.gz

-8.17 KB
Binary file not shown.

dist/viaduct-0.1.2.tar.gz

8.17 KB
Binary file not shown.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setup(
44
name='viaduct', # How you named your package folder (MyLib)
55
packages=['viaduct'], # Chose the same as "name"
6-
version='0.1.2', # Start with a small number and increase it with every change you make
6+
version='0.1.3', # Start with a small number and increase it with every change you make
77
# Chose a license from here: https://help.github.com/articles/licensing-a-repository
88
license='gpl-3.0',
99
# Give a short description about your library
@@ -14,7 +14,7 @@
1414
# Provide either the link to your github or to your website
1515
url='https://github.com/harrytwigg/Viaduct-Trading212-Python-API',
1616
# I explain this later on
17-
download_url='https://github.com/harrytwigg/Viaduct-Trading212-Python-API/archive/0.1.2.tar.gz',
17+
download_url='https://github.com/harrytwigg/Viaduct-Trading212-Python-API/archive/0.1.3.tar.gz',
1818
keywords=['python', 'api', 'rest', 'api-wrapper', 'viaduct', 'trading212',
1919
'trading212-api'], # Keywords that define your package best
2020
install_requires=[ # I get to this in a second

viaduct/isa.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def getPortfolioPerformance(self, historyPeriod):
3939

4040
# Get all instruments on Trading212!
4141
def getAllInstruments(self):
42-
return get(self.urlf("rest/instruments/EQUITY/1"))
42+
return get(self.urlf("/rest/instruments/EQUITY/1"))
4343

4444
# Gets company ISINs and tickers for graphs etc
4545
def getTickers(self):

0 commit comments

Comments
 (0)