嗨,我对编码很陌生,我想制作一个小程序,将我的文件上传到dropbox。我使用python 3.5.2和pycharm。
我在网上关注了这个教程
1. pip install dropbox
2.复制并粘贴链接
3.执行
4.我收到以下错误
AttributeError: module 'dropbox' has no attribute 'Dropbox'
任何人都知道在这种情况下该怎么办?我一直在谷歌搜索,但无法得出答案。我看到的最多的是api V1的代码
以下是我的代码
import dropbox
dbx = dropbox.Dropbox('mytoken')
dbx.users_get_current_account()
教程我遵循https://www.dropbox.com/developers/documentation/python#tutorial