Please Help me

I wish to download the data from any URL (from any website) and
then want to save into ".csv" format.

In the python documentation "12.20 csv -- CSV File Reading and Writing"
import csv
reader = csv.reader(file("some.csv"))
for row in reader:
    print row

How can i use the url as an input so that I can save data from that particular webpage to comma seperated file (csv).

Regards
Sandeep


     



-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to