Plotly的get_app_user_url方法用于獲取指定app的用戶URL。使用該方法需要傳入app的ID和用戶的用戶名。下面是一個示例代碼:
import plotly
# 設(shè)置Plotly的用戶名和API密鑰
plotly.tools.set_credentials_file(username='your_username', api_key='your_api_key')
# 獲取指定app的用戶URL
app_id = 'your_app_id'
username = 'your_username'
app_user_url = plotly.get_app_user_url(app_id, username)
print(app_user_url)
在上面的代碼中,需要將your_username
、your_api_key
、your_app_id
替換為實際的用戶名、API密鑰和app ID。運行代碼后,將會打印出指定app的用戶URL。