>>>>> "Sandeep" == Sandeep Avinash Gohad <[EMAIL PROTECTED]> writes:

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

This worked for me:

    import urllib, csv
    reader = csv.reader(urllib.urlopen("http://.../some.csv";))
    for row in reader:
        print row

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

Reply via email to