aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/downloader/external.py
Commit message (Collapse)AuthorAgeFilesLines
* [downloader/external] Use generalized cli option convertersSergey M․2015-09-051-17/+8
|
* [downloader/external] change _argless_option function to _valueless_optionremitamine2015-09-041-4/+4
|
* [downloader/external] add _argless_option for option without argumentsremitamine2015-09-041-4/+6
|
* [downloader/external] add _bool_option to pass value to bool optionremitamine2015-09-041-1/+9
|
* [downloader/external] Respect --no-check-certificate for curl and aria2c and ↵remitamine2015-09-031-1/+4
| | | | --proxy for curl
* [downloader/external] Use generic _optionSergey M․2015-08-111-13/+4
|
* [downloader/external] Forward --proxy to wget and aria2cSergey M․2015-08-111-0/+10
|
* [downloader/external] Respect --no-check-certificate for wgetSergey M․2015-08-081-0/+4
|
* adding support for axel download managervijayanand nandam2015-08-081-0/+10
|
* [downloader/external] Fix externals downloaders specified with extension on ↵Sergey M․2015-06-281-1/+2
| | | | Windows
* [downloader/external] Add downloader for httpie (closes #6079)Jaime Marquínez Ferrándiz2015-06-251-0/+8
|
* [downloader/external] Use encodeArgumentSergey M․2015-04-261-12/+4
|
* [downloader/external] Add support for custom options (Fixes #4885, closes #5098)Philipp Hagemeister2015-03-021-3/+12
|
* [downloader/external] curl: Add the '--location' flagJaime Marquínez Ferrándiz2015-02-171-1/+1
| | | | curl doesn't follow redirections by default
* [downloader/external] Simplify source_addressPhilipp Hagemeister2015-02-021-4/+3
| | | | '' might actually be passed in, so check for None.
* [downloader/external] SimplifySergey M․2015-02-021-1/+1
|
* [downloader/external] SimplifySergey M․2015-02-021-2/+3
|
* passing source address option to external downloadersvijayanand nandam2015-02-021-0/+9
|
* [YoutubeDL] Fill the info dict 'http_headers' field with all the headers ↵Jaime Marquínez Ferrándiz2015-01-241-40/+3
| | | | | | | | available Useful for external tools using the json output. The methods '_calc_headers' and '_calc_cookies' have been copied from the downloader/external, now they just use "info_dict['http_headers']".
* [downloader/external] Use the 'http_headers' fieldJaime Marquínez Ferrándiz2015-01-241-3/+3
|
* [downloader/external] Add curl and aria2c (Closes #182)Philipp Hagemeister2015-01-241-2/+25
|
* [downloader] Lay groundwork for external downloaders.Philipp Hagemeister2015-01-241-0/+131
This comes with a very simply implementation for wget; the real work is in setting up the infrastructure.