I am creating a program that will download a .jar (java) file from a web server, by reading the URL that is specified in the .jad file of the same game/application. I\'m usi
If you are using Linux you can use the wget module of Linux through the python shell. Here is a sample code snippet
wget
import os url = 'http://www.example.com/foo.zip' os.system('wget %s'%url)