Metadata-Version: 1.1
Name: phplist-client
Version: 1.0.1
Summary: Python client for the phplist REST API
Home-page: https://github.com/tubaman/phplist-restapi-python
Author: Ryan Nowakowski
Author-email: tubaman@fattuba.com
License: Apache 2.0
Description: Python library for PHPList REST API
        ===================================
        
        This is a python 3 library for interacting with the PHPList REST API.
        
        To Use
        ------
        
        1. ``pip install -r requirements``
        2. Write your code:
        
           \`\`\`python from phplist import PHPListClient
        
           client = PHPListClient("https://myphplistresturl", secret="mysecret")
           client.login(login="myusername", password="mypassword") output =
           client.lists\_get() \`\`\`
        
        Run Tests
        ---------
        
        1. ``pip install nose``
        2. ``nosetests tests.py``
        
        TODO
        ----
        
        -  add setup.py
        -  push up to pypi
        
Keywords: phplist rest client
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
