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
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
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
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