I want to create terminal commands in my python script.
for example,
 $ cd my_project_folder 
 $ --help  (I use a command in this python folder)
outputs
 $ this is the help command. You've activated it using --help. This is only possible because you cd'd to the folder and inputted this command.
I am looking for user defined commands ( ones that I've already defined in my python function.)
I am not looking for commands like 'ls' and 'pwd'.
 
     
     
    