fix jstor title determination
This commit is contained in:
parent
16c7f4d4db
commit
04644364e2
@ -217,6 +217,9 @@ def download_url(url):
|
|||||||
url = url[0:url.find("?")]
|
url = url[0:url.find("?")]
|
||||||
|
|
||||||
# not all pages have the <input type="hidden" name="ppv-title"> element
|
# not all pages have the <input type="hidden" name="ppv-title"> element
|
||||||
|
try:
|
||||||
|
title = tree.xpath("//div[@class='hd title']")[0].text
|
||||||
|
except Exception:
|
||||||
try:
|
try:
|
||||||
title = tree.xpath("//input[@name='ppv-title']/@value")[0]
|
title = tree.xpath("//input[@name='ppv-title']/@value")[0]
|
||||||
except Exception:
|
except Exception:
|
||||||
@ -234,7 +237,7 @@ def download_url(url):
|
|||||||
if document_id.isdigit():
|
if document_id.isdigit():
|
||||||
try:
|
try:
|
||||||
pdf_url = "http://www.jstor.org/stable/pdfplus/" + document_id + ".pdf?acceptTC=true"
|
pdf_url = "http://www.jstor.org/stable/pdfplus/" + document_id + ".pdf?acceptTC=true"
|
||||||
new_response = requests.get(pdf_url, header={"User-Agent": "time-machine/1.1"})
|
new_response = requests.get(pdf_url, headers={"User-Agent": "time-machine/1.1"})
|
||||||
new_content = new_response.content
|
new_content = new_response.content
|
||||||
if "pdf" in new_response.headers["content-type"]:
|
if "pdf" in new_response.headers["content-type"]:
|
||||||
extension = ".pdf"
|
extension = ".pdf"
|
||||||
|
Loading…
Reference in New Issue
Block a user