I have a command line app that I want to deploy. The only problem is that to run it you have to run the python file like this: `
$python application.py <arguement>
`. I have seen other applications made in python that can run like this but would require this input
$application<arguement>
How can I make this possible?
Thanks in advance