Skip to main content

parser and transforms for GROBID-flavor TEI-XML

Project description

grobid_tei_xml: Python parser and transforms for GROBID-flavor TEI-XML

This is a simple python library for parsing the TEI-XML structured documents returned by GROBID, a machine learning tool for extracting text and bibliographic metadata from research article PDFs.

TEI-XML is a standard format, and there exist other libraries to parse entire documents and work with annotated text. This library is focused specifically on extracting "header" metadata from document (eg, title, authors, journal name, volume, issue), content in flattened text form (full abstract and body text as single strings, for things like search indexing), and structured citation metadata.

Quickstart

grobid_tei_xml works with Python 3, using only the standard library. It does not talk to the GROBID HTTP API or read files off disk on it's own, but see examples below. The library is packaged on pypi.org.

Install using pip, usually within a virtualenv:

pip install grobid_tei_xml

The main entry points are the function process_document_xml(xml_text) and process_citations_xml(xml_text), which return python dataclass objects. The helper method .to_dict() can be useful for, eg, serializing these objects to JSON.

Usage Examples

Read an XML file from disk, parse it, and print to stdout as JSON:

import json
import grobid_tei_xml

xml_path = "./tests/files/small.xml"

with open(xml_path, 'r') as xml_file:
    doc = grobid_tei_xml.parse_document_xml(xml_file.read())

print(json.dumps(doc.to_dict(), indent=2))

Use requests to download a PDF from the web, submit to GROBID (via HTTP API), parse the TEI-XML response with grobid_tei_xml, and print some metadata fields:

import requests
import grobid_tei_xml

pdf_resp = requests.get("https://arxiv.org/pdf/1802.01168v3")
pdf_resp.raise_for_status()

grobid_resp = requests.post(
    "https://cloud.science-miner.com/grobid/api/processFulltextDocument",
    files={
        'input': pdf_resp.content,
        'consolidate_Citations': 0,
        'includeRawCitations': 1,
    },
    timeout=60.0,
)
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("doi: " + str(doc.header.doi))
print("citation count: " + str(len(doc.citations)))
print("abstract: " + doc.abstract)

Use requests to submit a "raw" citation string to GROBID for extraction, parse the response with grobid_tei_xml, and print the structured output to stdout:

import requests
import grobid_tei_xml

raw_citation = "Kvenvolden K.A. and Field M.E. 1981. Thermogenic hydrocarbons in unconsolidated sediment of Eel River Basin, offshore northern California. AAPG Bulletin 65:1642-1646"

grobid_resp = requests.post(
    "https://cloud.science-miner.com/grobid/api/processCitation",
    data={
        'citations': raw_citation,
        'consolidateCitations': 0,
    },
    timeout=10.0,
)
grobid_resp.raise_for_status()

citation = grobid_tei_xml.parse_citations_xml(grobid_resp.text)[0]
print(citation)

See Also

grobid_client_python: Python client and CLI tool for making requests to GROBID via HTTP API. Returns TEI-XML; could be used with this library (grobid_tei_xml) for parsing into python object or, eg, JSON.

GROBID Documentation

s2orc-doc2json: Python library from AI2 which includes a similar Python library for extracting both bibliographic metadata and (structured) full text from GROBID TEI-XML. Has nice features like resolving references to bibliography entry.

delb: more flexible/powerful interface to TEI-XML documents. would be a better tool for working with structured text (body, abstract, etc)

"Parsing TEI XML documents with Python" (2019): blog post about basic parsing of GROBID TEI-XML files into Pandas DataFrames

License

This library is available under the permissive MIT License. See LICENSE.txt for a copy.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grobid_tei_xml-0.1.0.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

grobid_tei_xml-0.1.0-py2.py3-none-any.whl (13.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file grobid_tei_xml-0.1.0.tar.gz.

File metadata

  • Download URL: grobid_tei_xml-0.1.0.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.3

File hashes

Hashes for grobid_tei_xml-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b0a95b9267d67b5bc431b9243ea64e075ba3cad1d2e051d7b699ad0080936b51
MD5 2fbd33cbfbb7460dc80b94e4512bb2c1
BLAKE2b-256 cd11300c6585de19e1a9bf9171e2d0c7bc54f2ca5d992452a4558781c5466267

See more details on using hashes here.

File details

Details for the file grobid_tei_xml-0.1.0-py2.py3-none-any.whl.

File metadata

  • Download URL: grobid_tei_xml-0.1.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 13.6 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.3

File hashes

Hashes for grobid_tei_xml-0.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b1856ca90b779502b1898538a4d062a360fd64318a39b3761e9b3ea3004133da
MD5 812b3180d2538d2da27829063e474d98
BLAKE2b-256 68640808899a3b0a1d7921194d17ffcfa55625e7d07aec1b86aeba4a83b145b4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page