Show outdated packages python
List packages with newer versions available
pip list --outdated --format=columns
more python
all 15 commands →
Run module as script
python3 -m http.server 8080
One-liner JSON pretty print
python3 -m json.tool < input.json
Profile script
python3 -m cProfile -s cumulative script.py | head -30
Debug with pdb
python3 -m pdb script.py
Set breakpoint in code
breakpoint() # Python 3.7+ — drops into pdb at this line