This file is indexed.

/usr/lib/python3/dist-packages/mwparserfromhell-0.4.2.egg-info/PKG-INFO is in python3-mwparserfromhell 0.4.2-1.1build3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
Metadata-Version: 1.1
Name: mwparserfromhell
Version: 0.4.2
Summary: MWParserFromHell is a parser for MediaWiki wikicode.
Home-page: https://github.com/earwig/mwparserfromhell
Author: Ben Kurtovic
Author-email: ben.kurtovic@gmail.com
License: MIT License
Download-URL: https://github.com/earwig/mwparserfromhell/tarball/v0.4.2
Description: mwparserfromhell
        ================
        
        .. image:: https://img.shields.io/travis/earwig/mwparserfromhell/develop.svg
          :alt: Build Status
          :target: http://travis-ci.org/earwig/mwparserfromhell
        
        .. image:: https://img.shields.io/coveralls/earwig/mwparserfromhell/develop.svg
          :alt: Coverage Status
          :target: https://coveralls.io/r/earwig/mwparserfromhell
        
        **mwparserfromhell** (the *MediaWiki Parser from Hell*) is a Python package
        that provides an easy-to-use and outrageously powerful parser for MediaWiki_
        wikicode. It supports Python 2 and Python 3.
        
        Developed by Earwig_ with contributions from `Σ`_, Legoktm_, and others.
        Full documentation is available on ReadTheDocs_. Development occurs on GitHub_.
        
        Installation
        ------------
        
        The easiest way to install the parser is through the `Python Package Index`_;
        you can install the latest release with ``pip install mwparserfromhell``
        (`get pip`_). On Windows, make sure you have the latest version of pip
        installed by running ``pip install --upgrade pip``.
        
        Alternatively, get the latest development version::
        
            git clone https://github.com/earwig/mwparserfromhell.git
            cd mwparserfromhell
            python setup.py install
        
        You can run the comprehensive unit testing suite with
        ``python setup.py test -q``.
        
        Usage
        -----
        
        Normal usage is rather straightforward (where ``text`` is page text)::
        
            >>> import mwparserfromhell
            >>> wikicode = mwparserfromhell.parse(text)
        
        ``wikicode`` is a ``mwparserfromhell.Wikicode`` object, which acts like an
        ordinary ``str`` object (or ``unicode`` in Python 2) with some extra methods.
        For example::
        
            >>> text = "I has a template! {{foo|bar|baz|eggs=spam}} See it?"
            >>> wikicode = mwparserfromhell.parse(text)
            >>> print(wikicode)
            I has a template! {{foo|bar|baz|eggs=spam}} See it?
            >>> templates = wikicode.filter_templates()
            >>> print(templates)
            ['{{foo|bar|baz|eggs=spam}}']
            >>> template = templates[0]
            >>> print(template.name)
            foo
            >>> print(template.params)
            ['bar', 'baz', 'eggs=spam']
            >>> print(template.get(1).value)
            bar
            >>> print(template.get("eggs").value)
            spam
        
        Since nodes can contain other nodes, getting nested templates is trivial::
        
            >>> text = "{{foo|{{bar}}={{baz|{{spam}}}}}}"
            >>> mwparserfromhell.parse(text).filter_templates()
            ['{{foo|{{bar}}={{baz|{{spam}}}}}}', '{{bar}}', '{{baz|{{spam}}}}', '{{spam}}']
        
        You can also pass ``recursive=False`` to ``filter_templates()`` and explore
        templates manually. This is possible because nodes can contain additional
        ``Wikicode`` objects::
        
            >>> code = mwparserfromhell.parse("{{foo|this {{includes a|template}}}}")
            >>> print(code.filter_templates(recursive=False))
            ['{{foo|this {{includes a|template}}}}']
            >>> foo = code.filter_templates(recursive=False)[0]
            >>> print(foo.get(1).value)
            this {{includes a|template}}
            >>> print(foo.get(1).value.filter_templates()[0])
            {{includes a|template}}
            >>> print(foo.get(1).value.filter_templates()[0].get(1).value)
            template
        
        Templates can be easily modified to add, remove, or alter params. ``Wikicode``
        objects can be treated like lists, with ``append()``, ``insert()``,
        ``remove()``, ``replace()``, and more. They also have a ``matches()`` method
        for comparing page or template names, which takes care of capitalization and
        whitespace::
        
            >>> text = "{{cleanup}} '''Foo''' is a [[bar]]. {{uncategorized}}"
            >>> code = mwparserfromhell.parse(text)
            >>> for template in code.filter_templates():
            ...     if template.name.matches("Cleanup") and not template.has("date"):
            ...         template.add("date", "July 2012")
            ...
            >>> print(code)
            {{cleanup|date=July 2012}} '''Foo''' is a [[bar]]. {{uncategorized}}
            >>> code.replace("{{uncategorized}}", "{{bar-stub}}")
            >>> print(code)
            {{cleanup|date=July 2012}} '''Foo''' is a [[bar]]. {{bar-stub}}
            >>> print(code.filter_templates())
            ['{{cleanup|date=July 2012}}', '{{bar-stub}}']
        
        You can then convert ``code`` back into a regular ``str`` object (for
        saving the page!) by calling ``str()`` on it::
        
            >>> text = str(code)
            >>> print(text)
            {{cleanup|date=July 2012}} '''Foo''' is a [[bar]]. {{bar-stub}}
            >>> text == code
            True
        
        Likewise, use ``unicode(code)`` in Python 2.
        
        Integration
        -----------
        
        ``mwparserfromhell`` is used by and originally developed for EarwigBot_;
        ``Page`` objects have a ``parse`` method that essentially calls
        ``mwparserfromhell.parse()`` on ``page.get()``.
        
        If you're using Pywikibot_, your code might look like this::
        
            import mwparserfromhell
            import pywikibot
        
            def parse(title):
                site = pywikibot.Site()
                page = pywikibot.Page(site, title)
                text = page.get()
                return mwparserfromhell.parse(text)
        
        If you're not using a library, you can parse any page using the following code
        (via the API_)::
        
            import json
            from urllib.parse import urlencode
            from urllib.request import urlopen
            import mwparserfromhell
            API_URL = "https://en.wikipedia.org/w/api.php"
        
            def parse(title):
                data = {"action": "query", "prop": "revisions", "rvlimit": 1,
                        "rvprop": "content", "format": "json", "titles": title}
                raw = urlopen(API_URL, urlencode(data).encode()).read()
                res = json.loads(raw)
                text = res["query"]["pages"].values()[0]["revisions"][0]["*"]
                return mwparserfromhell.parse(text)
        
        .. _MediaWiki:              http://mediawiki.org
        .. _ReadTheDocs:            http://mwparserfromhell.readthedocs.org
        .. _Earwig:                 http://en.wikipedia.org/wiki/User:The_Earwig
        .. :                      http://en.wikipedia.org/wiki/User:%CE%A3
        .. _Legoktm:                http://en.wikipedia.org/wiki/User:Legoktm
        .. _GitHub:                 https://github.com/earwig/mwparserfromhell
        .. _Python Package Index:   http://pypi.python.org
        .. _get pip:                http://pypi.python.org/pypi/pip
        .. _EarwigBot:              https://github.com/earwig/earwigbot
        .. _Pywikibot:              https://www.mediawiki.org/wiki/Manual:Pywikibot
        .. _API:                    http://mediawiki.org/wiki/API
        
Keywords: earwig mwparserfromhell wikipedia wiki mediawiki wikicode template parsing
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Text Processing :: Markup