diff options
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ grobid_resp.raise_for_status() doc = grobid_tei_xml.parse_document_xml(grobid_resp.text) print("title: " + doc.header.title) -print("authors: " + ", ".join([a.name for a in doc.header.authors])) +print("authors: " + ", ".join([a.full_name for a in doc.header.authors])) print("doi: " + str(doc.header.doi)) print("citation count: " + str(len(doc.citations))) print("abstract: " + doc.abstract) |