[EMAIL PROTECTED] wrote: > I am new to python. I read an example here about how to fetch data thru > a HTTP connection: > http://diveintopython.org/http_web_services/review.html, > > My question is how can i save the data to a file after reading it from > a http connection.
Do the tutorial and this and many other things will become clear. Instead of just "print sometext", do something like: ... f = open('filename', 'w') ... print >>f, sometext ... (possibly more prints like the above). f.close() --Scott David Daniels [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list