""" __init__.py : Trovebox package top level """ from .http import Http from .errors import * from ._version import __version__ from . import api_photo from . import api_tag from . import api_album LATEST_API_VERSION = 2 class Trovebox(Http): """ Client library for Trovebox If no parameters are specified, config is loaded from the default location (~/.config/trovebox/default). The config_file parameter is used to specify an alternate config file. If the host parameter is specified, no config file is loaded and OAuth tokens (consumer*, token*) can optionally be specified. All requests will include the api_version path, if specified. This should be used to ensure that your application will continue to work even if the Trovebox API is updated to a new revision. """ def __init__(self, config_file=None, host=None, consumer_key='', consumer_secret='', token='', token_secret='', api_version=None): Http.__init__(self, config_file, host, consumer_key, consumer_secret, token, token_secret, api_version) self.photos = api_photo.ApiPhotos(self) self.photo = api_photo.ApiPhoto(self) self.tags = api_tag.ApiTags(self) self.tag = api_tag.ApiTag(self) self.albums = api_album.ApiAlbums(self) self.album = api_album.ApiAlbum(self)