| OLD | NEW |
| (Empty) |
| 1 Metadata-Version: 1.0 | |
| 2 Name: mozdownload | |
| 3 Version: 1.6 | |
| 4 Summary: Script to download builds for Firefox and Thunderbird from the Mozilla
server. | |
| 5 Home-page: http://github.com/mozilla/mozdownload | |
| 6 Author: Mozilla Automation and Testing Team | |
| 7 Author-email: tools@lists.mozilla.com | |
| 8 License: Mozilla Public License 2.0 (MPL 2.0) | |
| 9 Description: # mozdownload | |
| 10 | |
| 11 [mozdownload](https://github.com/mozilla/mozdownload) | |
| 12 is a [python package](http://pypi.python.org/pypi/mozdownload) | |
| 13 which handles downloading of Mozilla applications. | |
| 14 | |
| 15 ## Command Line Usage | |
| 16 | |
| 17 The `mozdownload` command will download the application based on the pro
vided | |
| 18 command line options. | |
| 19 | |
| 20 ### Examples | |
| 21 | |
| 22 Download the latest official Firefox release for your platform: | |
| 23 | |
| 24 mozdownload --version=latest | |
| 25 | |
| 26 Download the latest Firefox Aurora build for Windows (32bit): | |
| 27 | |
| 28 mozdownload --type=daily --branch=mozilla-aurora --platform=win32 | |
| 29 | |
| 30 Download the latest official Thunderbird release for your platform: | |
| 31 | |
| 32 mozdownload --application=thunderbird --version=latest | |
| 33 | |
| 34 Download the latest Earlybird build for Linux (64bit): | |
| 35 | |
| 36 mozdownload --application=thunderbird --type=daily --branch=comm-aur
ora --platform=linux64 | |
| 37 | |
| 38 Download this README file: | |
| 39 | |
| 40 mozdownload --url=https://raw.github.com/mozilla/mozdownload/master/
README.md | |
| 41 | |
| 42 Download a file from a URL protected with basic authentication: | |
| 43 | |
| 44 mozdownload --url=http://example.com/secrets.txt --username=admin --
password=password | |
| 45 | |
| 46 Run `mozdownload --help` for detailed information on the command line op
tions. | |
| 47 | |
| 48 Keywords: mozilla | |
| 49 Platform: UNKNOWN | |
| OLD | NEW |