This backend uses JSON as format for HTTP Response and REST for the
Request.
See <http://www.flickr.com/services/api/request.rest.html> and
<http://www.flickr.com/services/api/response.json.html>.
|
__init__(self,
api_key,
secret_key)
x.__init__(...) initializes x; see x.__class__.__doc__ for
signature |
source code
|
|
|
|
|
|
|
auth_getToken(self)
flickr.auth.getToken:
Returns the auth token for the given frob, if one has been attached. |
source code
|
|
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|
|
|
|
|
|
|
|
photo_upload(self,
filename=None,
photo_data=None,
data_content_type=' image/jpeg ' ,
**params)
Uploading photos:
It works outside the normal Flickr API framework because it
involves sending binary files over the wire. |
source code
|
|