Create package structure
Create a python package (potentially called allzweckmesser) in a new directory. Lay out a structure to make the package executable with python -m
. For this, the best way is probably an executable module containing a main function that takes all the necessary arguments and a separate function for parsing the arguments. Then, __init__.py
can be used for parsing the arguments from the command line and calling the main function.