Parsely API python
==================

This repo is a simple python binding for the Parsely API.
The documentation, on which this binding is based, can be found at
http://parsely.com/api/api_ref.html

To use this binding::

    pip install python-parsely requests
    ipython
    >>> import parsely
    >>> p = parsely.Parsely("arstechnica.com", secret="asf98gf7aw98ev7nwe98vfayewfa9hew8f7ha")
    >>> p.shares()
    ...
    >>> p.analytics()
    ...
    # et cetera

To run the unit tests::

    git clone http://github.com/emmett9001/python-parsely.git
    cd python-parsely
    pip install -r requests.txt
    python tests.py

**DISCLAIMER**: This binding is poorly tested and feedback, error
reports, or github issues are appreciated!
