Wikipedia HTML Dump Parsing
Project description
mwparserfromhtml
mwparserfromhtml
is a Python library for parsing and mining metadata from the Enterprise HTML Dumps that has been recently made available by the Wikimedia Enterprise. The 6 most updated Enterprise HTML dumps can be accessed from this location. The aim of this library is to provide an interface to work with these HTML dumps and extract the most relevant features from an article.
Besides using the HTML dumps, users can also use the Wikipedia API to obtain the HTML of a particular article from their title and parse the HTML string with this library.
Motivation
When rendering contents, MediaWiki converts wikitext to HTML, allowing for the expansion of macros to include more material. The HTML version of a Wikipedia page generally has more information than the original source wikitext. So, it's reasonable that anyone who wants to analyze Wikipedia's content as it appears to its readers would prefer to work with HTML rather than wikitext. Traditionally, only the wikitext version has been available in the XML-dumps. Now, with the introduction of the Enterprise HTML dumps in 2021, anyone can now easily access and use HTML dumps (and they should).
However, parsing HTML to extract the necessary information is not a simple process. An inconspicuous user may know how to work with HTMLs but they might not be used to the specific format of the dump files. Also the wikitext translated to HTMLs by the MediaWiki API have many different edge-cases and requires heavy investigation of the documentation to get a grasp of the structure. Identifying the features from this HTML is no trivial task! Because of all these hassles, it is likely that individuals would continue working with wikitext as there are already excellent ready-to-use parsers for it (such as mwparserfromhell). Therefore, we wanted to write a Python library that can efficiently parse the HTML-code of an article from the Wikimedia Enterprise dumps to extract relevant elements such as text, links, templates, etc. This will hopefully lower the technical barriers to work with the HTML-dumps and empower researchers and others to take advantage of this beneficial resource.
Features
- Iterate over large tarballs of HTML dumps without extracting them to memory (memory efficient, but not subscriptable unless converted to a list)
- Extract major article metadata like Category, Templates, Wikilinks, External Links, Media, References etc. with their respective type and status information
- Easily extract the content of an article from the HTML dump and customizing the level of detail
- Generate summary statistics for the articles in the dump
Installation
You can install mwparserfromhtml
with pip
:
$ pip install mwparserfromhtml
Basic Usage
Check out example_notebook.ipynb
to have a runnable example.
- Import the dump module from the library and load the dump:
from mwparserfromhtml import HTMLDump
html_file_path = "TARGZ_FILE_PATH"
html_dump = HTMLDump(html_file_path, max_article=150)
- Iterate over the articles in the dump:
for article in html_dump:
print(article.title)
- Extract the plain text of an article from the dump, i.e. remove anything that is not text (e.g. a link is replaced by its anchor text):
for article in html_dump:
print(article.get_plaintext( skip_categories=False, skip_transclusion=False, skip_headers=False))
- Extract Templates, Categories, Wikilinks, External Links, Media, References etc. from the dump:
for article in html_dump:
print(article.get_templates())
print(article.get_categories())
print(article.get_wikilinks())
print(article.get_externallinks())
print(article.get_media(skip_images=True, skip_video=False, skip_audio=False))
print(article.get_references())
- Alternatively, you can read stand-alone html files obtained from the wikipedia dump and convert to an
Article
object to extract the features
from mwparserfromhtml import Article
import json
article_object = json.load( open( "<PATH-TO-ARTICLE.json>" ))
article = Article(article_object)
print("Article Name: ", article.title)
templates = article.get_templates()
categories = article.get_categories()
wikilinks = article.get_wikilinks()
Project Information
Acknowledgements
This project was started as part of an Outreachy internship from May--August 2022. This project has benefited greatly from the work of Earwig (mwparserfromhell) and Slavina Stefanova (mwsql).
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
Built Distribution
Hashes for mwparserfromhtml-0.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d933e9b06aa68fab0606876b44064b0bb85743b70564ac3d3e145810fee42da |
|
MD5 | 0f0549aa5729437a3ba4886334e5e3b1 |
|
BLAKE2b-256 | ca381db6b0245a927b513405e1d03df058c2e507b2405914b71009985db56c31 |