Skip to content

Commit

Permalink
Merge pull request #466 from kms6bn/feature/add_krex
Browse files Browse the repository at this point in the history
add k-state research exchange (k-rex) at ksu
  • Loading branch information
erinspace committed Jan 26, 2016
2 parents ac47387 + d6f4bc4 commit 74b7600
Show file tree
Hide file tree
Showing 3 changed files with 842 additions and 0 deletions.
Binary file added img/favicons/krex_favicon.ico
Binary file not shown.
18 changes: 18 additions & 0 deletions scrapi/harvesters/krex.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
'''
Harvester for the K-State Research Exchange for the SHARE project
Example API call: http://krex.k-state.edu/dspace-oai/request?verb=ListRecords&metadataPrefix=oai_dc
'''
from __future__ import unicode_literals

from scrapi.base import OAIHarvester


class KrexHarvester(OAIHarvester):
short_name = 'krex'
long_name = 'K-State Research Exchange'
url = 'http://krex.k-state.edu'

base_url = 'http://krex.k-state.edu/dspace-oai/request'
property_list = ['type', 'date', 'identifier', 'setSpec']
timezone_granularity = True

0 comments on commit 74b7600

Please sign in to comment.