i want to fetch all future contract on bybit so i am using ccxt i use exchange.loadmarkets() which give data
data = {'BTC/USDT': {'id': 'BTCUSDT',
'symbol': 'BTC/USDT'},
'ETH/USDT': {'id': 'ETHUSDT',
'symbol': 'ETH/USDT'},
'XRP/USDT': {'id': 'XRPUSDT',
'symbol': 'XRP/USDT'}}
when i visialize by converting it to dataframe it give following
pd.DataFrame(data)
BTC/USDT ETH/USDT XRP/USDT
id BTCUSDT ETHUSDT XRPUSDT
symbol BTC/USDT ETH/USDT XRP/USDT
How can i get like id => BTCUSDT, ETHUSDT,XRPUSDT like this
pls help :)