├── .github └── workflows │ ├── commitlint.yml │ ├── publish.yml │ ├── release-please.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .release-please-manifest.json ├── AGENTS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── SECURITY.md ├── pyproject.toml ├── release-please-config.json ├── tests ├── __init__.py ├── test_dicttoxml.py └── test_xmltodict.py ├── tox.ini └── xmltodict.py /.github/workflows/commitlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/.github/workflows/commitlint.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "1.0.2" 3 | } 4 | -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include tests * 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/SECURITY.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/release-please-config.json -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_dicttoxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/tests/test_dicttoxml.py -------------------------------------------------------------------------------- /tests/test_xmltodict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/tests/test_xmltodict.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/tox.ini -------------------------------------------------------------------------------- /xmltodict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinblech/xmltodict/HEAD/xmltodict.py --------------------------------------------------------------------------------