Metadata-Version: 1.0
Name: Sickle
Version: 0.2
Summary: A lightweight OAI client library for Python
Home-page: http://github.com/mloesch/sickle
Author: Mathias Loesch
Author-email: mathias.loesch@uni-bielefeld.de
License: BSD
Description: 
            Sickle
            ~~~~~~
        
            Sickle is a lightweight OAI client library for Python.
        
            Using Sickle
            ------------
        
                >>> from sickle import Sickle
                >>> client = Sickle('http://elis.da.ulcc.ac.uk/cgi/oai2')
                >>> records = client.ListRecords(metadataPrefix='oai_dc')
        
            Sickle provides a convenient way for iterating through all records of a repository:
        
                >>> records.next()
                <Record ...>
        
        
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Text Processing :: Markup :: XML
