diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-10-25 17:18:31 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-10-25 17:18:31 -0700 |
commit | d33abe3b63bfd7a5dc5a06b8d6d0800e66fd8110 (patch) | |
tree | 7df278920553c5d97c12309474ea8fdb4bc84a9f | |
parent | 1d00cc5ef900998523aa75245daf69f2513205bb (diff) | |
download | grobid_tei_xml-d33abe3b63bfd7a5dc5a06b8d6d0800e66fd8110.tar.gz grobid_tei_xml-d33abe3b63bfd7a5dc5a06b8d6d0800e66fd8110.zip |
README: fix README tests
-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) |