Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added img/favicons/utuskegee_favicon.ico
Binary file not shown.
18 changes: 18 additions & 0 deletions scrapi/harvesters/utuskegee.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
'''
Harvester for the Tuskegee University Archives for the SHARE project

Example API call: http://192.203.127.197/archive/oai/request?verb=ListRecords&metadataPrefix=oai_dc
'''
from __future__ import unicode_literals

from scrapi.base import OAIHarvester


class UtuskegeeHarvester(OAIHarvester):
short_name = 'utuskegee'
long_name = 'Tuskegee University'
url = 'http://192.203.127.197'

base_url = 'http://192.203.127.197/archive/oai/request'
property_list = ['date', 'identifier', 'type', 'setSpec']
timezone_granularity = True
Loading