class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
list = method(self, **kwargs)
Retrieves the list of fonts currently served by the Google Web Fonts Developer API
 
Args:
  sort: string, Enables sorting of the list
    Allowed values
      alpha - Sort alphabetically
      date - Sort by date added
      popularity - Sort by popularity
      style - Sort by number of styles
      trending - Sort by trending
 
Returns:
  An object of the form
 
    {
    "items": [ # The list of fonts currently served by the Google Fonts API.
      {
        "kind": "webfonts#webfont",
        "variants": "", # The available variants for the font.
        "subsets": "", # The scripts supported by the font.
        "family": "", # The name of the font.
      },
    ],
    "kind": "webfonts#webfontList", # The object kind.
  }

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