So I want to make myself a module that at some point needs the name of the python script that is importing my module, like argparse does to make the help argument.
ex.
python script.py -h
USAGE: script.py [-h] [-arg1] [-arg2] . . .
How does argparse acces the name of the script that is importing?