Re: Accessing a URL file Remotely

2007-11-30 Thread Grant Edwards
On 2007-11-30, mcl <[EMAIL PROTECTED]> wrote: > Brilliant - I had fears of much more complication. I've been writing Python programs for almost 10 years, and I still have that reaction not infrequently. -- Grant Edwards grante Yow! I like the way ONLY

Re: Accessing a URL file Remotely

2007-11-30 Thread James Matthews
Once you use urlopen you can read the website like a file On Nov 30, 2007 10:58 AM, mcl <[EMAIL PROTECTED]> wrote: > On 29 Nov, 22:32, TheSeeker <[EMAIL PROTECTED]> wrote: > > On Nov 29, 3:13 pm, mcl <[EMAIL PROTECTED]> wrote: > > > > > > > > > I have been given a url ofCSVfile (http://hostname/d

Re: Accessing a URL file Remotely

2007-11-30 Thread mcl
On 29 Nov, 22:32, TheSeeker <[EMAIL PROTECTED]> wrote: > On Nov 29, 3:13 pm, mcl <[EMAIL PROTECTED]> wrote: > > > > > I have been given a url ofCSVfile (http://hostname/dir/file.csv), > > which when I put the full URL in a web browser shows the contents of > > the file. > > > I want to be able to u

Re: Accessing a URL file Remotely

2007-11-29 Thread TheSeeker
On Nov 29, 3:13 pm, mcl <[EMAIL PROTECTED]> wrote: > I have been given a url of CSV file (http://hostname/dir/file.csv), > which when I put the full URL in a web browser shows the contents of > the file. > > I want to be able to use the CSV module to read that file, which I > have successfully used

Accessing a URL file Remotely

2007-11-29 Thread mcl
I have been given a url of CSV file (http://hostname/dir/file.csv), which when I put the full URL in a web browser shows the contents of the file. I want to be able to use the CSV module to read that file, which I have successfully used with a local CSV file. Any examples anywhere would be apprec