Python's many command-line utilities
Did you know that Python some modules can double-up as handy command-line tools?
For example, you can run Python's webbrowser module from the command-line to open up a given URL in your default web browser:
$ python -m webbrowser https://pym.dev/p
Opening in existing browser session.
The Python standard library includes many such module-script hybrids.
Below is a complete list of every module in Python that can be run as a command-line script.
Feel free to jump right to the full list of all scri...
Read more at pythonmorsels.com