On Wed, 2 Mar 2005 08:27:35 -0600, Skip Montanaro <[EMAIL PROTECTED]> wrote:
> > "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).
> "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("
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