Metadata-Version: 2.0
Name: quotes
Version: 0.0.3
Summary: Small python lib that contains a few quotes of famous people
Home-page: http://github.com/lukin0110/quotes
Author: Maarten Huijsmans
Author-email: maarten@lukin.be
License: Apache Software License
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development

Quotes
======

Small python package to read quote sets from csv files.

Installation
************

::

    pip install quotes


Usage
*****

Get a random quote:

.. code:: python

    from quotes import random

    if __name__ == '__main__':
        print(random())


List of available persons:

.. code:: python

    from quotes import persons

    if __name__ == '__main__':
        print(persons())

