Metadata-Version: 2.0
Name: pynano
Version: 0.1.1
Summary: A simple Python library for the NaNoWriMo API
Home-page: https://pynano.readthedocs.org/
Author: Travis Veazey
Author-email: travisvz@gmail.com
License: MIT
Keywords: nanowrimo wordcount api
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: requests (>=2.9.1)
Requires-Dist: xmltodict (>=0.9.2)

``pynano``
==========

.. image:: https://readthedocs.org/projects/pynano/badge/?version=latest
   :target: http://pynano.readthedocs.org/en/latest/?badge=latest
   :alt: Documentation Status

This project provides a simple, Pythonic library to access the NaNoWriMo API::

   >>> from pynano import User
   >>> kromey = User('kromey')
   >>> kromey.wordcount
   64133
   >>> kromey.name
   'Kromey'

Objects are provided to access data about Users, Regions, and the Site itself.
Be sure to `read the docs <https://pynano.readthedocs.org>`_ to get started.


