Metadata-Version: 1.1
Name: yolapy
Version: 0.1.2
Summary: Python client for the Yola API
Home-page: https://github.com/yola/yolapy
Author: Yola
Author-email: engineers@yola.com
License: MIT (Expat)
Description: Yola API Python Client
        ======================
        
        Usage
        -----
        
        .. code:: python
        
            # settings file
        
            from yolapy.configuration import configure
        
            configure(
                auth=('username', 'password'),
                url='https://wl.qa.yola.net/',
            )
        
            # application code
        
            from yolapy.models import User as YolaUser
        
            yola_user = YolaUser(
                email='test@example.com',
                name='Jane',
                surname='Doe',
                partner_id='WL_YOLA',
                preferences={'name': 'value'})
            yola_user.save()
        
        See http://yolapy.readthedocs.org/ for available methods with
        documentation.
        
        Development
        -----------
        
        To run the tests::
        
            $ nosetests
        
        To lint your code automatically when you make changes::
        
            $ cp tube.py.sample tube.py
            $ stir
        
        Documentation
        -------------
        
        Changes to the public interface should be documented. See the `docs` directory.
        
        Pushes to the `master` branch build at http://yolapy.readthedocs.org/en/latest/
        automatically.
        
        You can test your doc changes locally with::
        
            $ cd docs
            $ make html
            $ open _build/html/index.html
        
        
        0.1.2 (2015-10-15)
        ------------------
        
        * Add a configuration module
        * Add a User model
        * Add Sphinx Docs - http://yolapy.readthedocs.org/
        
        
        0.1.1 (2015-09-11)
        ------------------
        
        * Update installation requirements
        
        
        0.1.0 (2015-09-02)
        ------------------
        
        * Initial version with `Yola` wrapper for the Yola API
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP
