我有这个错误,“无法导入名称cilent

时间:2017-08-26 08:26:43

标签: python

from dropbox.client import DropboxOAuth2FlowNoRedirect

from dropbox.client import DropboxClient

1 个答案:

答案 0 :(得分:0)

尝试使用:

# Include the Dropbox SDK
import dropbox

# Get your app key and secret from the Dropbox developer website
app_key = 'INSERT_APP_KEY'
app_secret = 'INSERT_APP_SECRET'

flow = dropbox.client.DropboxOAuth2FlowNoRedirect(app_key, app_secret)

某些项目无法自行导入。