Python XML parser for Web of Science XML file. See example XML file from yadudoc/wos_builder. The implementation is based on yadudoc/wos_builder. I just make is as a function that can be easily integrate with others platform like Spark or multiprocessing.
import wos_parser as wp
records = wp.read_xml('sample.xml')
authors = [wp.extract_authors(record) for record in records] # you can flatten and transform to dataframeUsing read_xml in order to read Web of Science XML file to list of element trees.
Each element tree can be parsed to these following function to get dictionary or
list of dictionary output.
extract_pub_infoextract_authorsextract_addressesextract_publisherextract_fundingextract_conferencesextract_referencesextract_identifiers
Clone the repository and install using setup.py
$ git clone https://github.com/titipata/wos_parser
$ cd wos_parser
$ python setup.py installor via pip
$ pip install git+https://github.com/titipata/wos_parser.gitMIT License Copyright (c) 2016 Titipat Achakulvisut