I have a python script that creates certain outputs. The script takes a vary of inputs and based on these inputs the outputs are generated.
Now I want to create an API where the user has to specify the inputs for my script and send it to the API. With this request it should start my script using the input given by the user and return the results of these script.
Any ideas what would be a good approach here?
Thank you very much in advance!