![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
A parsing package using the Simple API for XML (SAX).
There are a total of 10 elements: "article", "inproceedings", "proceedings", "book", "incollection", "phdthesis", "mastersthesis", "www", "person", "data".
Across the elements, these are the feature types available: "address", "author", "booktitle","cdrom", "chapter", "cite", "crossref", "editor", "ee", "isbn", "journal", "month", "note", "number", "pages", "publisher", "publnr", "school", "series", "title", "url", "volume", "year".
Features
Future features for consideration
I created this package when working on a project as part of a course module. The aim of this package is to provide a quick way to parse DBLP elements directly, with the contents exported as a csv file for further preprocessing based on individual's use case.
Installation
pip install dblp-sax-parser
# import package
from dblp_parser import DBLP_Parser as dp
First step to using this parser is to instantiate the dblp_parser
# Instantiate the dblp class
dblp = dp()
You can also DBLP_Parser to download the dblp data assets from the dblp website
# download latest data sets from dblp website
dblp.download_latest_dump()
Parsing the xml file
filename = 'dblp.xml'
# execute the parser from the dblp class
parser, handler = dblp.execute_parser(filename=<filename>)
# you can use the handler to convert the handler output to dataframe
handler.to_df()
# the dataframe can be persisted as a pickle file or exported as csv file
handler.to_csv() # export to csv
handler.save() # persist as pickle
class DBLP_Parser
class DBLP_Parser.download_latest_dump
.dtd
and .xml.gz
files, and decompress the .gz
file into .xml
..dtd
file to be downloaded from..xml.tz
file to be downloaded from..xml.gz
file..xml
file that is decompressed.class DBLP_Parser.execute_parser
"dblp.xml"
.This code is published under the MIT licence.
There are two main references that helped contributed to writing this package. Instantiating the outer dblp class to download dblp materials directly came from from angelosalatino. Some component of the SAX parsing logic itself was borrowed from hibernator11.
FAQs
A parsing package for dblp using the Simple API for XML (SAX)
We found that dblp-sax-parser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.