Re: Need script to download file from a server using python script

2009-01-23 Thread Terry Reedy
Murali Murali wrote: Hi, I am fairly new to python and i am looking for a python script to download file(latest build) from the server. But, the build name changes daily. For Ex: today the build URL will be "http://mybuilds/myapp_1234.exe"; and tomorrow it will be "http://myserver/mybuilds

Re: Need script to download file from a server using python script

2009-01-23 Thread Chris Rebert
On Fri, Jan 23, 2009 at 3:00 AM, Murali Murali wrote: > Hi, > > I am fairly new to python and i am looking for a python script to download > file(latest build) from the server. But, the build name changes daily. For > Ex: today the build URL will be "http://mybuilds/myapp_1234.exe"; and > tomorro

Re: Need script to download file from a server using python script

2009-01-23 Thread Tim Chase
The build number keeps changing. So how can i use wildchars(?) or something else to handle change in the build no.? Short answer: you can't...HTTP doesn't support wild-card requests. Longer answer: presumably there's some method to the madness of naming the file. Find the algorithm and use

Need script to download file from a server using python script

2009-01-23 Thread Murali Murali
Hi, I am fairly new to python and i am looking for a python script to download file(latest build) from the server. But, the build name changes daily. For Ex: today the build URL will be "http://mybuilds/myapp_1234.exe"; and tomorrow it will be "http://myserver/mybuilds/myapp_3456.exe";. So i ne