Metadata-Version: 1.0
Name: libthirty
Version: 0.2
Summary: libthirty provides a python api to access the 30loops platform.
Home-page: https://github.com/30loops/libthirty
Author: Christo Buschek
Author-email: crito@30loops.net
License: UNKNOWN
Description: ``libthirty``
        =============
        
        ``libthirty`` is a python module that wraps the 30loops_ REST api in a easy to
        use programming API. It's purpose is to function as a low level library that
        can be used by other tools to provide a high level view on the 30loops_
        platform.
        
        How to use
        ==========
        
        ::
        
            >>> from libthirty import Authenticate, Resource
            >>> from libthirty import env
        
            >>> # try to authenticate, defaults to http basic auth
            >>> env.auth = Authenticate('user', 'password', 'account')
            >>> if not env.auth.is_authenticated:
            ...     # In case the authentication does not succeed
            ...     raise Exception
            >>> repository = Resource('repository', 'thirtyloops')
            >>> repository.state_fields
            ['location', 'user', 'password']
            >>> repository.location
            'git.30loops.net'
        
        .. _30loops: http://30loops.net
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
