**我正在创建 azure python 函数,该函数最终将创建包含一些信息的 kml 文件,现在当我使用 post 方法调用函数 URL 时,它应该下载文件 **
我写了简单的代码,但它下载任何东西
file_name = "PIG_test.kml"
lambda_path = file_name
f = open(lambda_path,'w')
#here will do some preprocessing which will
f.write(footer)
f.close()
with open(lambda_path, "rb") as f:
b = base64.b64encode(f.read()).decode("utf-8")
谁能回答这个?