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, 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

mwparserfromhtml-0.0.6.tar.gz (55.3 kB view details)

Uploaded Source

Built Distribution

mwparserfromhtml-0.0.6-py3-none-any.whl (53.1 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for mwparserfromhtml-0.0.6.tar.gz
Algorithm Hash digest
SHA256 20c6be5f82a4890e0024525644f397c82fbf66a8fe9f929907b695bee074e544
MD5 675b79d2ed7fafb0be0946f6800968d6
BLAKE2b-256 da888e15298f5f40086186f1e05bb8d339f0cf1d1e10931e420aa4deaefcfa1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mwparserfromhtml-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 7e1c67f403b5ea7e584dd550c4cb4dc81bbbbd4ffe3149bfaf081f77cf577806
MD5 cb6e465bc45b49a5725dbbe46faec4a2
BLAKE2b-256 fd59f6b184ce5a98efa32ce8628f312922af252c45e4fc8cb5e744a693603191

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