Mark wrote: > Is it possible to traverse say python lists via http:// > > say there is a list in the memory > > can we traverse the list using list/next list/prev list/first list/last > > is there a pythonic library to do that? > > thanks > It sounds like what you want would be implemented using XMLRPC over http (or https). You could have XMLRPC method that acted like a generator or you could have it return the entire list in a single transaction to the calling routine. To be more specific, you will need to go into more detail about what it is that you are trying to accomplish.
-Larry -- http://mail.python.org/mailman/listinfo/python-list