PYthon 3.3 - api bufferapp。无法更新

时间:2015-01-30 15:27:09

标签: python api python-3.3

我想用python在bufferapp.com上发布更新。

我安装了python缓冲模块:https://github.com/bufferapp/buffer-python 我设法用python3连接到他们的api。

但是,如果我使用update.publish()命令,它会给我以下错误:

nameerror:"更新"没有定义。

我正在使用此代码:

from pprint import pprint as pp
from colorama import Fore
from buffpy.models.update import Update
from buffpy.managers.profiles import Profiles
from buffpy.managers.updates import Updates
from buffpy.api import API
token = 'awesome_token'
api = API(client_id='client_id',
      client_secret='client_secret',
      access_token=token)
# publish now
update.publish()

我做错了什么?

感谢您的帮助。

0 个答案:

没有答案