Metadata-Version: 1.1
Name: pyflare
Version: 1.1.0
Summary: An adapter for CloudFlare's client API
Home-page: https://github.com/jlinn/pyflare
Author: Joe Linn
Author-email: UNKNOWN
License: LICENSE.txt
Description: pyflare
        =======
        
        .. image:: https://secure.travis-ci.org/jlinn/pyflare.png?branch=master
                :target: http://travis-ci.org/jlinn/pyflare
        
        About
        -----
        
        Pyflare is a Python adapter for `CloudFlare's Client API <http://www.cloudflare.com/docs/client-api.html>`_ and `CloudFlare's Hosting provider API <http://www.cloudflare.com/docs/host-api.html>`_.
        
        Installation
        ------------
        
        .. code-block:: bash
        
            $ pip install pyflare
        
        Usage
        -----
        
        .. code-block:: python
        
            from pyflare import PyflareClient
            cf = PyflareClient('address@example.com', 'your_api_key')
            # Create a new A record
            response = cf.rec_new('example.com', 'A', 'sub', '1.2.3.4')
        
        
            from pyflare import PyflareHosting
            hf = PyflareHosting('your_host_api_key')
            # Authenticate a user
            response = hf.user_auth('one@example.com', 'user_password')
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
