Как мне опубликовать в Gwibber из Python?

Как мне публиковать в Gwibber из python?

Я пытался

import gwibber.utils
foo = gwibber.utils.GwibberPublic()
foo.post("This is a test message")

из https://wiki.ubuntu.com/Quickly/Snippets .

Но это не работает.

6
задан 19 June 2012 в 09:06

1 ответ

Вы действительно должны использовать API на основе GIR, вот более свежий пример:

from gi.repository import Gwibber

s = Gwibber.Service ()
s.send_message ("This is the content to post", None, None, None)

, который будет публиковать сообщения на всех учетных записях, которые в настоящее время разрешены для отправки. Вот каковы параметры send_message:

"""
  send_message: Posts a message
  @message: The message to post to Gwibber as a string or None
  @id: The gwibber message id or None
  @action: The action or None (reply, private)
  @account_id: The ID of the account to post from or None
"""

Итак, если вы хотите публиковать сообщения только с определенного аккаунта, вы можете сделать что-то вроде этого:

from gi.repository import Gwibber
accounts_service = Gwibber.Accounts.new ()
s = Gwibber.Service ()

accts = accounts_service.list () # A list of Gwibber.Account objects
for acct in accts:
    print "Gwibber ID: %s, Service: %s, Username: %s, Send: %s" % (acct.props.id, acct.props.service, acct.props.username, "True" if acct.props.send_enabled == "1" else "False")
    #add code to check if this is the account you want to post from, like if you want to post from all twitter accounts you would do this
    if acct.props.service == "twitter":
        s.send_message ("Whatever you want to post", None, None, acct.props.id)
0
ответ дан 19 June 2012 в 09:06

Другие вопросы по тегам:

Похожие вопросы: