We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac68b48 commit 27f478cCopy full SHA for 27f478c
bulk_load.py
@@ -48,7 +48,7 @@ def parse(response):
48
if (forename := author.find("{http://arxiv.org/OAI/arXiv/}forename")) is None:
49
forename = author.find("{http://arxiv.org/OAI/arXiv/}forenames")
50
if forename is not None:
51
- name = author.find("{http://arxiv.org/OAI/arXiv/}keyname").text + forename.text
+ name = author.find("{http://arxiv.org/OAI/arXiv/}keyname").text + " " + forename.text
52
else:
53
name = author.find("{http://arxiv.org/OAI/arXiv/}keyname").text
54
data["authors"].append({
@@ -112,4 +112,4 @@ def parse(response):
112
if resumption_token is None:
113
break
114
time.sleep(5)
115
- response = get_response("cs", resumption_token)
+ response = get_response("cs", resumption_token)
0 commit comments