Metadata-Version: 2.1
Name: core-oaipmh-harvester-app
Version: 2.21.0
Summary: OAI-PMH harvesting capabilities for the curator core project
Home-page: https://github.com/usnistgov/core_oaipmh_harvester_app
Author: NIST IT Lab
Author-email: itl_inquiries@nist.gov
License-File: LICENSE.md

=========================
Core Oaipmh Harvester App
=========================

OAI-PMH harvesting capabilities for the curator core project.

Quickstart
==========

1. Add "core_oaipmh_harvester_app" to your INSTALLED_APPS setting
-----------------------------------------------------------------

.. code:: python

    INSTALLED_APPS = [
      ...
      'core_oaipmh_harvester_app',
    ]

2. Include the core_oaipmh_harvester_app URLconf in your project urls.py
------------------------------------------------------------------------

.. code:: python

    url(r'^oai_pmh/', include('core_oaipmh_harvester_app.urls')),
