Skip to main content

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)
  • Iterate over the articles in the dump:
for article in html_dump:
    print(article.get_title())
  • Extract the plain text of an article from the dump, i.e. remove anything that is not text such as infoboxes, citation footnotes, or categories and replace links with their anchor text:
for article in html_dump:
    print(article.get_title())
    prev_heading = "_Lead"
    for heading, paragraph in article.html.wikistew.get_plaintext(exclude_transcluded_paragraphs=True,
                                                                  exclude_para_context=None,  # set to {"pre-first-para", "between-paras", "post-last-para"} for more conservative approach
                                                                  exclude_elements={"Heading", "Math", "Citation", "List", "Wikitable", "Reference"}):
        if heading != prev_heading:
            print(f"\n{heading}:")
            prev_heading = heading
        print(paragraph)
  • Extract Templates, Categories, Wikilinks, External Links, Media, References etc. from the dump:
for article in html_dump:
    print(article.html.wikistew.get_templates())
    print(article.html.wikistew.get_categories())
    print(article.html.wikistew.get_wikilinks())
    print(article.html.wikistew.get_externallinks())
    print(article.html.wikistew.get_images())
    print(article.html.wikistew.get_references())
  • Alternatively, you can process stand-alone Parsoid HTML e.g., from the APIs and convert to an Article object to extract the features
from mwparserfromhtml import Article
import requests

lang = "en"
title = "Both Sides, Now"
r = requests.get(f'https://{lang}.wikipedia.org/api/rest_v1/page/html/{title}')
article = Article(r.text)
print(f"Article Name: {article.get_title()}")
print(f"Abstract: {article.wikistew.get_first_paragraph()}")

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

mwparserfromhtml-1.0.0.tar.gz (59.0 kB view details)

Uploaded Source

Built Distribution

mwparserfromhtml-1.0.0-py3-none-any.whl (55.8 kB view details)

Uploaded Python 3

File details

Details for the file mwparserfromhtml-1.0.0.tar.gz.

File metadata

  • Download URL: mwparserfromhtml-1.0.0.tar.gz
  • Upload date:
  • Size: 59.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.18

File hashes

Hashes for mwparserfromhtml-1.0.0.tar.gz
Algorithm Hash digest
SHA256 014532378bedf6bb0af86074fdfeb33ddac60d874c0dd9ee329b937fd329b7f5
MD5 06fd5b7c48aab89e2bb45acc5f649da0
BLAKE2b-256 dd1ac7078d9fa058a39647155d55797e0b2ce69cc0798eb36577c1e243cf9214

See more details on using hashes here.

File details

Details for the file mwparserfromhtml-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for mwparserfromhtml-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1744a10156d9a99651a07b0ac56124345f69e2c6d5a604edb4cef6bbaa3e58a4
MD5 76b10d865772c4b88584ad0409741a1c
BLAKE2b-256 1c9ed1cdb25602c2005a0a23b14282d052a282d4a0f3e77aa5e15f6f1c20eec4

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