Metadata-Version: 2.1
Name: aur
Version: 0.11.0
Summary: Arch User Repository API interface.
Home-page: https://github.com/cdown/aur
Author: Chris Down
Author-email: chris@chrisdown.name
License: ISC
Keywords: aur arch linux
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
License-File: LICENSE

===
aur
===

aur is a Python library that makes it easy to access and parse data
from the `Arch User Repository API`_.

.. _Arch User Repository API: https://wiki.archlinux.org/index.php/AurJson

Usage
-----

.. code:: python

    >>> yturl = aur.info('yturl')
    >>> yturl.description
    'YouTube videos on the command line'
    >>> poco = aur.search('poco')
    >>> poco
    [<Package: poco>, <Package: flopoco>, <Package: libpoco-basic>]


Documentation
-------------

Documentation is available on ReadTheDocs_.

.. _ReadTheDocs: https://aur.readthedocs.org

Installation
------------

From pip:

.. code::

    pip install aur

Manually:

.. code::

    python setup.py install


Documentation
-------------

.. code::

    pydoc aur


Testing
-------

.. image:: https://travis-ci.org/cdown/aur.svg?branch=develop
  :target: https://travis-ci.org/cdown/aur
  :alt: Test status

.. code::

    python setup.py test


