class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
get = method(self, **kwargs)
A description of how to use this function
 
Args:
  pp: string, A parameter
  trace: string, A parameter
  strict: string, A parameter
  userip: string, A parameter
 
Returns:
  An object of the form
 
    {
    "family_name": "A String", # The user's last name.
    "name": "A String", # The user's full name.
    "picture": "A String", # URL of the user's picture image.
    "locale": "A String", # The user's default locale.
    "gender": "A String", # The user's gender.
    "email": "A String", # The user's email address.
    "birthday": "A String", # The user's birthday. The year is not present.
    "link": "A String", # URL of the profile page.
    "given_name": "A String", # The user's first name.
    "timezone": "A String", # The user's default timezone.
    "id": "A String", # The focus obfuscated gaia id of the user.
    "verified_email": True or False, # Boolean flag which is true if the email address is verified.
  }
v2 = methodResource(self)
A collection resource.

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)