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
Description: # 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/).
        
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
Provides-Extra: docs
