A parser for MediaWiki titles
Project description
MediaWikiTitleParser
MWTP is a parser for MediaWiki titles. Its logic is partly derived from mediawiki.Title, and hence is licensed under GNU GPL.
It works as simple as follows:
from mwtp import TitleParser as Parser
parser = Parser(namespaces_data, namespace_aliases)
title = parser.parse(' _ FoO: this/is A__/talk page _ ')
print(repr(title))
# Title('Thảo luận:This/is A /talk page')
namespaces_data
and namespace_aliases
can be obtained by
making a query to a wiki's API with
action=query&meta=siteinfo&siprop=namespaces|namespacealiases
:
namespaces_data = {
'0': { 'id': 0, 'case': 'first-letter', 'name': '', ...: ... },
'1': { 'id': 1, 'case': 'first-letter', 'name': 'Thảo luận', ...: ... },
...: ...
}
namespace_aliases = [
{ 'id': 1, 'alias': 'Foo' },
...
]
Note that the following format (&formatversion=1
) is not supported.
Always use &formatversion=2
or &formatversion=latest
.
namespaces_data = {
'0': { 'id': 0, 'case': 'first-letter', '*': '', ...: ... },
'1': { 'id': 1, 'case': 'first-letter', '*': 'Thảo luận', ...: ... },
...: ...
}
namespace_aliases = [
{ 'id': 1, '*': 'Foo' },
...
]
For more information, see the documentation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mwtp-4.0.0.tar.gz
(29.2 kB
view hashes)
Built Distribution
mwtp-4.0.0-py3-none-any.whl
(25.7 kB
view hashes)