Skip to main content

mwsql is a set of utilities for processing MediaWiki SQL dump data.

Project description

mwsql provides utilities for working with Wikimedia SQL dump files. It supports Python 3.8 and later versions.

mwsql abstracts the messiness of working with SQL dump files. Each Wikimedia SQL dump file contains one database table. The most common use case for mwsql is to convert this table into a more user-friendly Python Dump class instance. This lets you access the table’s metadata (db names, field names, data types, etc.) as attributes, and its content – the table rows – as a generator, which enables processing of larger-than-memory datasets due to the inherent lazy/delayed execution of Python generators.

mwsql also provides a method to convert SQL dump files into CSV. You can find more information on how to use mwsql in the usage examples.

Installation

You can install mwsql with pip:

$ pip install mwsql

Basic Usage

>>> from mwsql import Dump
>>> dump = dump.from_file('simplewiki-latest-change_tag_def.sql.gz')
>>> dump.head(5)
['ctd_id', 'ctd_name', 'ctd_user_defined', 'ctd_count']
['1', 'mw-replace', '0', '10453']
['2', 'visualeditor', '0', '309141']
['3', 'mw-undo', '0', '59767']
['4', 'mw-rollback', '0', '71585']
['5', 'mobile edit', '0', '234682']
>>> dump.dtypes
{'ctd_id': int, 'ctd_name': str, 'ctd_user_defined': int, 'ctd_count': int}
>>> rows = dump.rows(convert_dtypes=True)
>>> next(rows)
[1, 'mw-replace', 0, 10453]

Known Issues

Encoding errors

Wikimedia SQL dumps use utf-8 encoding. Unfortunately, some of the fields can contain non-recognized characters, raising an encoding error when attempting to parse the dump file. If this happens while reading in the file, it’s recommended to try again using a different encoding. latin-1 will sometimes solve the problem; if not, you’re encouraged to try with other encodings. It’s also possible to change the encoding once the dump is created, if iterating over the rows gives rise to an encoding error. In this case, you don’t need to recreate the dump – you can just pass in a new encoding via the dump.encoding attribute.

Parsing errors

Some Wikimedia SQL dumps contain string-type fields that are sometimes not correctly parsed, resulting in fields that are split up in two or more parts. This is more likely to happen when parsing dumps containing file names from Wikimedia Commons, or containing external links with a lot of query parameters. If you’re parsing any of the other dumps, you’re unlikely to run into this issue.

In most cases, this issue affects a very small proportion of the total rows parsed. For instance, Wikimedia Commons page dump contains approximately 99 million entries, out of which ~13.000 are incorrectly parsed. Wikimedia Commons page links on the other hand contains ~760M records, and only 20 are wrongly parsed.

This issue is most commonly caused by the parser mistaking a single quote (or apostrophe, as they’re identical) within a string for the single-quote that marks the end of said string. There’s currently no known workaround other than manually removing the rows that contain more fields than expected, or if they are relatively few, manually merging the split fields.

Future versions of mwsql will focus on improving the parser to correctly identify when single quotes should be treated as string delimiters, and when they should be escaped. For now, it’s important to be aware that this problem exists.

Project information

mwsql is released under the MIT license. You can find the full documentation at Read the Docs. If you run into bugs, you can file them in our issue tracker. Have ideas on how to make mwsql better? Contributions are most welcome – we have put together a guide on how to get started.

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

mwsql-0.1.0.tar.gz (234.8 kB view details)

Uploaded Source

Built Distribution

mwsql-0.1.0-py3-none-any.whl (272.4 kB view details)

Uploaded Python 3

File details

Details for the file mwsql-0.1.0.tar.gz.

File metadata

  • Download URL: mwsql-0.1.0.tar.gz
  • Upload date:
  • Size: 234.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.5

File hashes

Hashes for mwsql-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1ad9adc3e280361f1039a91bab5242a4f7ce07c47cb5187b3346278fbdf24f92
MD5 a67fc5c581ecb46bee307d03442905be
BLAKE2b-256 aff686d84eb999b67bb4171ba8b99411ed086c7f0beb1f2d46c70b45fcdcf7f0

See more details on using hashes here.

File details

Details for the file mwsql-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: mwsql-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 272.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.5

File hashes

Hashes for mwsql-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 427f30633f3e60ef83b76a5f7fafa80991a4c1896112baa1b7c7101197482b73
MD5 1aadce130b7becb23c371bc6b551802a
BLAKE2b-256 7c204684fe862bc0223faf7dd01ba7a2ea4866e5face23b99852090980ef627c

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