diff options
Diffstat (limited to 'app/lib/flickr_api/__init__.py')
-rw-r--r-- | app/lib/flickr_api/__init__.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app/lib/flickr_api/__init__.py b/app/lib/flickr_api/__init__.py new file mode 100644 index 0000000..b720f34 --- /dev/null +++ b/app/lib/flickr_api/__init__.py @@ -0,0 +1,35 @@ +""" + Object Oriented implementation of Flickr API. + + Important notes: + - For consistency, the nameing of methods might differ from the name + in the official API. Please check the method "docstring" to know + what is the implemented method. + + - For methods which expect an object "id", either the 'id' string + or the object itself can be used as argument. Similar consideration + holds for lists of id's. + + For instance if "photo_id" is expected you can give call the function + with named argument "photo = PhotoObject" or with the id string + "photo_id = id_string". + + + Author : Alexis Mignon (c) + email : alexis.mignon_at_gmail.com + Date : 05/08/2011 + +""" +try: + from .objects import * + from . import objects + from . import upload as Upload + from .upload import upload, replace +except Exception as e: + print("Could not load all modules") + print(type(e), e) + +from .auth import set_auth_handler +from .method_call import enable_cache, disable_cache +from .keys import set_keys +from ._version import __version__ |