用户在我的网站上上传了一个excel文件。我应该写什么Python脚本将该文件上传到Azure存储?
答案 0 :(得分:0)
请在服务器端使用Azure Storage Python sdk将文件上传到Azure存储。
from azure.storage.file import FileService, ContentSettings
def upload_files_to_azure(share, directory, path_of_file):
file_service = FileService(account_name='<your account name>',
account_key='<your account key>')
file_service.create_file_from_path(
share,
directory,
'<file name>',
path_of_file
)
return
upload_files_to_azure("<share name>", None, "<file path on your server>")
更多详细信息,请参阅official tutorial。
希望它对您有帮助。