.. image:: https://travis-ci.org/mloesch/sickle.svg?branch=master :target: https://travis-ci.org/mloesch/sickle .. image:: https://img.shields.io/pypi/v/Sickle.svg :target: https://pypi.python.org/pypi/Sickle .. image:: https://img.shields.io/pypi/dm/sickle.svg :target: https://pypi.python.org/pypi/Sickle
Sickle is a lightweight OAI-PMH <http://www.openarchives.org/OAI/openarchivesprotocol.html>
_
client library written in Python. It has been designed for conveniently retrieving data from
OAI interfaces the Pythonic way::
>>> from sickle import Sickle
>>> sickle = Sickle('http://elis.da.ulcc.ac.uk/cgi/oai2')
>>> records = sickle.ListRecords(metadataPrefix='oai_dc')
>>> records.next()
<Record oai:eprints.rclis.org:4088>
::
pip install sickle
Dependencies:
requests <http://docs.python-requests.org/en/latest/>
_lxml <http://lxml.de/>
_Documentation is available at Read the Docs <https://sickle.readthedocs.org/en/latest/>
_
Sickle @ GitHub <https://github.com/mloesch/sickle>
_