I have a file.py that I want to pass base_url
to when called, so that base_url
variable value can be dynamic upon running python file.py base_url='http://google.com'
the value of http://google.com
could then be used directly in the execution of file.py.
How might I go about doing this?
Thanks