First and foremost, amazing product. I ran a couple of the demos and am thoroughly impressed.
In a python script I want to run with streamlit, I have been trying to add command-line arguments. Whether through argparse or simply sys.argv, I keep getting “no such option”.
I had thought the example:
Usage: streamlit run [OPTIONS] FILE_OR_URL [ARGS]…
implied that ARGS were arguments for the python script, but that doesn’t seem to be the case. Do you (or anyone else) know whether adding command-line arguments to the streamlit script is possible? Or would I have to put them in a wrapper script that calls the streamlit script?
Thanks!