Reputation: 186
I need to host a server in python capable of CGI which takes the url parameters, sends it the index.py, executes and return the output to the browser. Is there an easy solution? I could not find good tutorials on this topic.
Upvotes: 2
Views: 62
Reputation: 9681
As per my comment above:
Perhaps check out Flask as your web service. Here is a link to the getting started guide.
We have this running along side a internally developed API service (also running on Flask) which parses the URL/URI requests from the Flask web service.
Upvotes: 1