1
0
mirror of https://gitlab.com/simple-stock-bots/simple-stock-bot.git synced 2025-06-15 23:06:40 +00:00

copied a string wrong

This commit is contained in:
Anson Biggs 2021-03-31 00:54:35 +00:00
parent 85b8101cf6
commit a4948fd566

View File

@ -57,7 +57,7 @@ class IEX_Symbol:
f"https://cloud.iexapis.com/stable/ref-data/symbols?token={self.IEX_TOKEN}"
).json()
otc_symbols = r.get(
f"https://cloud.iexapis.com/stable/ref-data/otc/symbols{self.IEX_TOKEN}"
f"https://cloud.iexapis.com/stable/ref-data/otc/symbols?token={self.IEX_TOKEN}"
).json()
reg = pd.DataFrame(data=reg_symbols)