From d33abe3b63bfd7a5dc5a06b8d6d0800e66fd8110 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 25 Oct 2021 17:18:31 -0700 Subject: README: fix README tests --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3ff0654..2b06da1 100644 --- a/README.md +++ b/README.md @@ -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) -- cgit v1.2.3