如何在python中从api请求响应写入数据
发布时间:2022-06-25 23:36:48 313
相关标签: # node.js
我希望从API请求的响应中获取数据,例如,产品的给定Id,并将此值传递到excel电子表格中,该电子表格中包含;“产品”;列及其所有空行。订单应为注册订单,而不是随机订单。到目前为止,我得到的最多的是:
response = requests.post(url, headers=headers, json=payloads).json()
print(response)
open_excel_file = pd.read_excel('/app/workspace/SpreedSheet.xlsx')
get_product_id = response['Id']
wb = Workbook()
ws = wb.active
for row, l in enumerate(get_product_id):
column = 'P'
ws[column_cell+str(row+2)] = str(l)
# open_arq_excel.iloc[0: -1]
def save_excel(arquivoExcel, path):
open(path, 'wb').write(fileExcel.content)
save_excel(fileResponse, '/app/workspace/SpreedSheet.xlsx')
我对编程和数据科学一窍不通。所以请原谅我的任何错误
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报