I have a Python script which communicates with a Financial site through an API. I also have a Django site, i would like to create a basic form on my site where i input something and, according to that input, my Python script should perform some operations.
How can i do this? I'm not asking for any code, i just would like to understand how to accomplish this. How can i "run" a python script on a Django project? Should i make my Django project communicate with the script through a post request? Or is there a simpler way?