Closed avatar-lavventura closed 3 years ago
Downloading file from https://sandwichfinance.blob.core.windows.net/files/binancefuturesf_usdt_perpetual_futures.txt
and applyig following code piece solved my problem:
#!/usr/bin/env python3
with open('binancefuturesf_usdt_perpetual_futures.txt') as f:
for line in f:
_line = line.rstrip()
print(f"{_line},{_line.replace('USDTPERP', '').replace('BINANCE:', '')},USDTPERP,")
I am unable to fetch
perp
pairs for thebinance
. Is it possible to fetch them?