Skip to content

usnistgov/core_oaipmh_harvester_app

Repository files navigation

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

INSTALLED_APPS = [
  ...
  'core_oaipmh_harvester_app',
]

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

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