Remote Objects via CGI?
Fredrik Lundh
fredrik at pythonware.com
Wed Nov 1 15:43:29 EST 2006
kpd wrote:
> I did not have much hope, but thought there might be something. I was
> thinking of going this route to get a very quick solution to a python
> fat-client adding to or retrieving objects from a community repository
> over http.
>
> XMLRpc could work if there is a CGI solution, although the data sets do
> not lend themselves to XML. They are tuples of 6 floats about 2000 to
> a data set.
sounds like native HTTP plus mime/multipart messages is all you need.
just POST or GET to a CGI script, and use the email module to create and
pull apart the messages.
</F>
More information about the Python-list
mailing list