Bhavya Gupta
Bhavya Gupta

Reputation: 186

Python CGI WebServer

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

Answers (1)

s3dev
s3dev

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

Related Questions