how to get info from after the name of the script in command in python code example
Example: python get script name
# Option 1: Works for Python 3.4 +
from pathlib import Path
Path(__file__).name # ScriptName.py
Path(__file__).stem # ScriptName
# Option 2: use `os` library
import os
os.path.basename(__file__) # ScriptName.py
os.path.splitext(os.path.basename(__file__))[0] # ScriptName