要將文件上傳到Plotly服務器,您可以使用Plotly的文件上傳API。以下是一個簡單的例子,展示了如何使用Python中的requests庫將文件上傳到Plotly服務器:
import requests
url = 'https://api.plot.ly/v2/files'
username = 'your_username'
api_key = 'your_api_key'
file_path = 'path/to/your/file'
data = {
'file': open(file_path, 'rb'),
'name': 'filename',
'folder': 'your_folder'
}
headers = {
'plotly-username': username,
'plotly-api-key': api_key
}
response = requests.post(url, data=data, headers=headers)
print(response.text)
在這個例子中,您需要將your_username
和your_api_key
替換為您的Plotly用戶名和API密鑰。file_path
應該是您想要上傳的文件的路徑。將文件上傳到Plotly服務器后,您將獲得一個唯一的文件ID,您可以使用該文件ID來訪問和共享您的文件。