NEW

Summary

Directory Structure

Directory structure:
└── mediawiki-utilities-python-mwxml/
    ├── README.md
    ├── dump.xml
    ├── LICENSE
    ├── MANIFEST.in
    ├── parse_xml.py
    ├── requirements.txt
    ├── setup.cfg
    ├── setup.py
    ├── tox.ini
    ├── utility
    ├── doc/
    │   ├── conf.py
    │   ├── index.rst
    │   ├── iteration.rst
    │   ├── Makefile
    │   ├── map.rst
    │   └── revision_document-0.1.0.json
    ├── ipython/
    │   └── labs_example.ipynb
    └── mwxml/
        ├── __init__.py
        ├── about.py
        ├── element_iterator.py
        ├── errors.py
        ├── mwxml.py
        ├── iteration/
        │   ├── __init__.py
        │   ├── dump.py
        │   ├── log_item.py
        │   ├── namespace.py
        │   ├── page.py
        │   ├── revision.py
        │   ├── site_info.py
        │   ├── slots.py
        │   ├── user.py
        │   ├── util.py
        │   └── tests/
        │       ├── __init__.py
        │       ├── test_dump.py
        │       ├── test_log_item.py
        │       ├── test_namespace.py
        │       ├── test_page.py
        │       ├── test_revision.py
        │       └── test_user.py
        ├── map/
        │   ├── __init__.py
        │   ├── map.py
        │   └── tests/
        │       ├── __init__.py
        │       └── test_map.py
        ├── tests/
        │   ├── __init__.py
        │   └── test_element_iterator.py
        └── utilities/
            ├── __init__.py
            ├── dump2revdocs.py
            ├── inflate.py
            ├── normalize.py
            └── validate.py

Files Content