Please tell me if there is a better way to do this in python.
I have an endpoint in the flask app that takes in the request, validate, and starts a thread and returns a response saying request if valid and a process is started. At the end of the thread, I will send a request to the call back URL saying the threading process has completed.
- is there a way to do this without threading?
- what are the other options to do an asynchronous endpoint call in python where the client doesn't till the process is complete.