phplist-client

Python client for the phplist REST API


Keywords
phplist, rest, client
License
Apache-2.0
Install
pip install phplist-client==1.0.2

Documentation

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