[Tutor] CGI (original) (raw)

Alan Gauld alan.gauld at blueyonder.co.uk
Tue Jul 20 23:19:46 CEST 2004


Is it possible to create a common gateway interface in python?

Yes, using the cgi module! :-)

If it is how do i submit data to it using vbscript?

Exactly like any other CGI program - its a Common gateway interface, that is, it is the same regardless of language. So you just send an http GET or POST message from VBScript and Python will pick it up and extract the values into the field storage in the cgi module.

The cgi documentation gives some simple examples.

HTH,

Alan G.



More information about the Tutor mailing list