Aşağıdaki kodlar ile https://api.binance.com/api/v1/ticker/allPrices adresinden güncel değerleri çekip excel'e yazıyor. Ben bunu https://www.paribu.com/ticker adresinden yapmak istiyorum. Aşağıdaki kodları ona göre nasıl düzenleyebilirim? Binance'den excele aktaran çalışma aşağıdadır. import os try:import xlwings except ImportError:os.system('python -m pip install xlwings') import os try:import pandas except ImportError:os.system('python -m pip install pandas') import xlwings,pandas wb = xlwings.Book('binance.xlsx').sheets('Sheet1')#change workbook name and sheet name as per your excel file while True: data = pandas.read_json('https://api.binance.com/api/v1/ticker/allPrices') wb.range('a1').options(pandas.DataFrame,index=False).value = pandas.DataFrame(data) |
Bildirim