| Trees | Indices | Help |
|---|
|
|
GwibberPublic is the public python class which provides convience methods for using Gwibber.
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Returns a list of services available as json string
example:
import json, gwibber.lib
gw = gwibber.lib.GwibberPublic()
services = json.loads(gw.GetServices())
|
Returns a list of services available as json string
example:
import json, gwibber.lib
gw = gwibber.lib.GwibberPublic()
accounts = json.loads(gw.GetAccounts())
|
Posts a message/status update to all accounts with send_enabled = True. It
takes one argument, which is a message formated as a string.
example:
import gwibber.lib
gw = gwibber.lib.GwibberPublic()
gw.SendMessage("This is a message")
|
Calls the Gwibber Service to trigger a refresh operation
example:
import gwibber.lib
gw = gwibber.lib.GwibberPublic()
gw.Refresh()
|
Takes a long url in and returns a shortened url as a string, based on your
configured shortening service
example:
import gwibber.lib
gw = gwibber.lib.GwibberPublic()
gw.Shorten(url)
|
| Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Tue Mar 2 10:40:31 2010 | http://epydoc.sourceforge.net |