Skip to content
Closed
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/wash_state_u_favicon.ico
Binary file not shown.
18 changes: 18 additions & 0 deletions scrapi/harvesters/wash_state_u.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
'''
Harvester for the Washington State University Research Exchange for the SHARE project

Example API call: http://research.wsulibs.wsu.edu:8080/oai/request?verb=ListRecords&metadataPrefix=oai_dc
'''
from __future__ import unicode_literals

from scrapi.base import OAIHarvester


class WashuHarvester(OAIHarvester):
short_name = 'wash_state_u'
long_name = 'Washington State University Research Exchange'
url = 'http://research.wsulibs.wsu.edu:8080'

base_url = 'http://research.wsulibs.wsu.edu:8080/oai/request'
property_list = ['identifier', 'date', 'format', 'type', 'setSpec']
timezone_granularity = True
Loading