Module buzz
[hide private]
[frames] | no frames]

Module buzz

source code

Common Tasks

Classes [hide private]
  RetrieveError
This exception gets raised if there was some kind of HTTP or network error while accessing the API.
  JSONParseError
This exception gets raised if the API sends data that does not match what the client was expecting.
  Client
The Buzz API Client object is the primary method of making calls against the Buzz API.
  Post
The Post object represents a post within Buzz.
  Comment
The Comment object represents a comment on a Post within Buzz.
  Link
The Link object represents a hyperlink.
  Attachment
The Attachment object represents an attachment to a Post within Buzz.
  Person
The Person object represents a Buzz user.
  Result
The Result object encapsulates each result returned from the API.
  ResultIterator
A ResultIterator allows iteration over a result set.
Functions [hide private]
 
_prune_json_envelope(json) source code
 
_parse_links(json) source code
 
_parse_geocode(geocode) source code
Variables [hide private]
  default_path = '/home/bobaman/src/buzz-python-client/buzz_pyth...
  CONFIG_PATH = '/home/bobaman/src/buzz-python-client/buzz_pytho...
  CLIENT_CONFIG = {'oauth_consumer_key': 'buzz-api-testing.appsp...
  API_PREFIX = 'https://www.googleapis.com/buzz/v1'
  READONLY_SCOPE = 'https://www.googleapis.com/auth/buzz.readonly'
  FULL_ACCESS_SCOPE = 'https://www.googleapis.com/auth/buzz'
  OAUTH_REQUEST_TOKEN_URI = 'https://www.google.com/accounts/OAu...
  OAUTH_ACCESS_TOKEN_URI = 'https://www.google.com/accounts/OAut...
  OAUTH_AUTHORIZATION_URI = 'https://www.google.com/buzz/api/aut...
  DEBUG = False
  DEFAULT_PAGE_SIZE = 20
  __package__ = None
Variables Details [hide private]

default_path

Value:
'/home/bobaman/src/buzz-python-client/buzz_python_client.yaml'

CONFIG_PATH

Value:
'/home/bobaman/src/buzz-python-client/buzz_python_client.yaml'

CLIENT_CONFIG

Value:
{'oauth_consumer_key': 'buzz-api-testing.appspot.com',
 'oauth_consumer_secret': 'zbLvAw5V5WowgFBC8O/imLxk',
 'oauth_token_key': '1/eRxtJ9KI1OaBZ8EAs6bUnz1BwLhz1_OXvqto2VKEzdI',
 'oauth_token_secret': 'OXsT9GVGYu9AnYHVYb4wghUE',
 'testing_account': 'buzzapitesting',
 'testing_id': 110842231205170942808,
 'testing_post_id': 'B:z13ytx2iwzndxx3kl23penkjtn2kcj4ag04',
 'testing_target_account': 'api.bobaman',
...

OAUTH_REQUEST_TOKEN_URI

Value:
'https://www.google.com/accounts/OAuthGetRequestToken'

OAUTH_ACCESS_TOKEN_URI

Value:
'https://www.google.com/accounts/OAuthGetAccessToken'

OAUTH_AUTHORIZATION_URI

Value:
'https://www.google.com/buzz/api/auth/OAuthAuthorizeToken'