Created
August 31, 2018 09:20
-
-
Save rsirres/677309ceb008eeb69c087eabe5d325fd to your computer and use it in GitHub Desktop.
Test Requests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
URL = "https://www.doabooks.org/oai?verb=ListRecords&from=2012-01-01&metadataPrefix=marcxml" | |
#URL = "https://publishing.cdlib.org/ucpressebooks/oai?verb=ListRecords&set=public&metadataPrefix=oai_dc" | |
#headers = {'Host': 'www.doabooks.org:443'} | |
r = requests.get(URL, verify=True) | |
print( r.text ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment