request = oauth.OAuthRequest.from_consumer_and_token(consumer, token=access_token,
http_url="http://springpad.com/api/users/me/blocks"
http_method='GET',
parameters={'workbook' : 'xyz'})
request.sign_request(signature_method, consumer, access_token)
url = request.to_url()
response, data = httplib2.Http().request(url)
http://springpad.com/api/users/me/ # Some general user information and references to e.g. the system data block
http://springpad.com/api/users/me/blocks/{Systemdatta block UUID} # Systemdata block contains among other information a list of the users workbooks
http://springpad.com/api/users/me/blocks/count/tag # list all tags with counts
http://springpad.com/api/users/me/blocks/count/*?workbook=xyz # counts everything countable in workbook with UUID xyz.
...
...