The package doesn't install any scripts or entry points. It only installs an importable module xmltodict.py. The module seems to be runnable but not directly executable so try python -m xmltodict:

cat run.tcx | python -m xmltodict 2
Answer from phd on Stack Overflow
🌐
PyPI
pypi.org › project › xmltodict
xmltodict · PyPI
# Python2 $ zypper in python2-xmltodict # Python3 $ zypper in python3-xmltodict · For type checking support, install the external types package: # Using pypi $ pip install types-xmltodict # Using conda $ conda install -c conda-forge types-xmltodict
      » pip install xmltodict
    
Published   Feb 22, 2026
Version   1.0.4
🌐
Finxter
blog.finxter.com › home › learn python blog › how to install xmltodict in python?
How to Install xmltodict in Python? - Be on the Right Side of Change
August 24, 2023 - This article will show you everything ... bar and hit Enter to open the command line. Type “pip install xmltodict” (without quotes) in the command line and hit Enter again....
🌐
GitHub
github.com › pypa › pip › issues › 12644
When i install module error in pakage import xmltodict ModuleNotFoundError: No module named 'xmltodict i install this pakge still riase error · Issue #12644 · pypa/pip
April 21, 2024 - Description pip install xmltodict Defaulting to user installation because normal site-packages is not writeable Requirement already satisfied: xmltodict in ./.local/lib/python3.10/site-packages (0....
Author   HamidAbdalla123
🌐
AskPython
askpython.com › home › xmltodict module in python: a practical reference
xmltodict Module in Python: A Practical Reference - AskPython
December 9, 2020 - In this tutorial, we will see how ... and to JSON format and vice-versa. For Python 3 or above we can use the pip3 command to install xmltodict using the terminal....
🌐
Readthedocs
xmltodict.readthedocs.io › en › stable › README
README - xmltodict
>>> import xmltodict >>> >>> mydict ... version="1.0" encoding="utf-8"?> <text stroke="2" color="red">This is a test</text> You just need to · $ pip install xmltodict ·...
Find elsewhere
🌐
Howtoinstall.me
howtoinstall.me › ubuntu › 18-04 › python-xmltodict
How to Install python-xmltodict in Ubuntu 18.04 - HowToInstall
Ubuntu · 18.04 · python-xmltodict · Install python-xmltodict by entering the following commands in the terminal: sudo apt update sudo apt install python-xmltodict · Description: Makes working with XML feel like you are working with JSON (Python 2) xmltodict is a Python module that makes ...
🌐
Libraries.io
libraries.io › pypi › xmltodict
xmltodict 0.14.2 on PyPI - Libraries.io - security & maintenance data for open source software
August 28, 2012 - >>> mydict = { ... "line": { ... ... <points> <coord>2</coord> <coord>6</coord> </points> </line> You just need to · $ pip install xmltodict ·...
🌐
GitHub
github.com › martinblech › xmltodict
GitHub - martinblech/xmltodict: Python module that makes working with XML feel like you are working with JSON · GitHub
February 16, 2014 - # Python2 $ zypper in python2-xmltodict # Python3 $ zypper in python3-xmltodict · For type checking support, install the external types package: # Using pypi $ pip install types-xmltodict # Using conda $ conda install -c conda-forge types-xmltodict
Starred by 5.7K users
Forked by 468 users
Languages   Python
🌐
PyPI
pypi.org › project › xmltodict › 0.10.0
xmltodict
``` ## Roundtripping You can also ...12Z</last_updated> </response> ``` ## Ok, how do I get it? You just need to ```sh $ pip install xmltodict ``` There is an [official Fedora package for xmltodict](https://admin.fedoraproject...
      » pip install xmltodict
    
Published   Feb 23, 2016
Version   0.10.0
🌐
DigitalOcean
digitalocean.com › community › tutorials › python-xml-to-json-dict
Python XML to JSON, XML to Dict | DigitalOcean
August 3, 2022 - Just to demonstrate, on Debian based systems, this module can be easily installed using the apt tool: ... Another plus point is that this module has an official Debian package. The best place to start trying this module will be to perform an operation it was made to perform primarily, to perform XML to JSON conversions. Let’s look at a code snippet on how this can be done: import xmltodict import pprint import json my_xml = """ <audience> <id what="attribute">123</id> <name>Shubham</name> </audience> """ pp = pprint.PrettyPrinter(indent=4) pp.pprint(json.dumps(xmltodict.parse(my_xml)))
🌐
Howtoinstall.me
howtoinstall.me › ubuntu › 18-04 › python3-xmltodict
How to Install python3-xmltodict in Ubuntu 18.04
Ubuntu · 18.04 · python3-xmltodict · Install python3-xmltodict by entering the following commands in the terminal: sudo apt update sudo apt install python3-xmltodict · Description: Makes working with XML feel like you are working with JSON (Python 3) xmltodict is a Python module that makes ...
🌐
GeeksforGeeks
geeksforgeeks.org › python › python-program-to-convert-xml-to-dictionary
Python program to convert XML to Dictionary - GeeksforGeeks
July 23, 2025 - xmltodict: It is a Python module that makes working with XML feel like you are working with [JSON]. Run the following command in the terminal to install the module. Syntax: pip install xmltodict · pprint: The pprint module provides a capability ...
🌐
Finxter
blog.finxter.com › fixed-modulenotfounderror-no-module-named-xmltodict
[Fixed] ModuleNotFoundError: No module named ‘xmltodict’ – Be on the Right Side of Change
June 12, 2022 - If you face this issue server-side, you may want to try the command pip install --user xmltodict · If you’re using Ubuntu, you may want to try this command: sudo apt install xmltodict
🌐
Generalist Programmer
generalistprogrammer.com › home › tutorials › python packages › xmltodict: ml library guide 2025
Xmltodict: ML Library Guide 2025 - Generalist Programmer
November 16, 2025 - 🔗 Repository: https://github.com/martinblech/xmltodict ... # Create virtual environment python -m venv myenv # Activate (Linux/Mac) source myenv/bin/activate # Activate (Windows) myenv\Scripts\activate # Install package pip install xmltodict
🌐
Blogger
fosshelp.blogspot.com › 2016 › 04 › how-to-install-python-xmltodict.html
fosshelp: how to install python xmltodict
April 21, 2016 - $pip install -d ~/mydir xmltodict $cd ~/mydir $tar -xzf xmltodict-0.10.1.tar.gz $sudo python setup.py install ... Python (187) Ubuntu (81) OpenContrail (79) OpenStack (79) Django (69) Linux (67) Horizon (27) Networking (27) VMware (27) OpenStack Neutron (26) Git (25) OpenStack Heat (24) Puppet ...
🌐
Anaconda.org
anaconda.org › anaconda › xmltodict
xmltodict - anaconda | Anaconda.org
Install xmltodict with Anaconda.org. Makes working with XML feel like you are working with JSON
🌐
Installati.one
installati.one › home › how to install python-xmltodict on ubuntu 18.04
How To Install python-xmltodict on Ubuntu 18.04 | Installati.one
June 13, 2023 - There are three methods to install python-xmltodict on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method.