Metadata-Version: 2.1
Name: repox
Version: 0.0.2
Summary: a lightweight Repox client written in Python
Home-page: https://github.com/markpbaggett/pyrepox
Author: Mark Baggett
Author-email: mbagget1@utk.edu
Maintainer-email: mbagget1@utk.edu
License: UNKNOWN
Keywords: libraries,dpla,europeana,aggregators
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.2.1)
Requires-Dist: xmltodict (>=0.11.0)
Provides-Extra: docs
Requires-Dist: sphinx (>=1.4) ; extra == 'docs'
Requires-Dist: sphinxcontrib-napoleon (>=0.7) ; extra == 'docs'
Requires-Dist: recommonmark (>=0.4.0) ; extra == 'docs'

# Pyrepox: Repox for Humans

![Travis icon](https://travis-ci.org/markpbaggett/pyrepox.png)
![readthedocs icon](https://readthedocs.org/projects/pyrepox/badge/?version=latest)

Pyrepox is a lightweight [Repox](https://github.com/europeana/REPOX)
client written in Python. It is designed to make reading, writing,
updating, and deleting content in your Repox instance as convenient as
possible.

```python
>>> from repox.repox import Repox
>>> r = Repox("http://localhost:8080", "username", "password")
>>> r.list_all_aggregators()
['dltn']
>>> r.list_all_aggregators(verbose=True)
[{'id': 'dltn', 'name': 'Digital Library of Tennessee', 'nameCode': 'dltn',
'homepage': 'http://localhost:8080/repox'}]
>>> r.get_list_of_providers("dltn")
['utk', 'utc', 'cmhf', 'knox', 'mtsu', 'crossroads', 'tsla', 'nash', 'memphis']
```

## Installation

```
$ pip install repox
```

## Documentation

Documentation available at [https://pyrepox.readthedocs.io/en/latest/](https://pyrepox.readthedocs.io/en/latest/).


