这是一个简单的问题,但是我想使用HTML(js)用我自己的变量值填充excel文件并最终保存该文件。
应用程序具有以下代码。它可能与以前有关制表的问题有些相似之处,但是现在所有5的值都必须更改为random(具有数字值的预定义变量)的值。
该如何完成?如果需要,我可以提供更多详细信息。
import requests
img_url = 'https://upload.wikimedia.org/wikipedia/commons/d/d3/Newtons_cradle_animation_book_2.gif'
#img_filename = 'test.gif'
response = requests.get(img_url, stream=True)
if response.status_code != 200:
print('Error:', response.status_code)
else:
header = response.raw.read(6)
print(header) # b'GIF89a'
# # Download whole file in chunks and save locally.
# with open(img_filename, 'wb') as f:
# for chunk in response.iter_content(chunk_size=128):
# f.write(chunk)
print('done')