summaryrefslogtreecommitdiffstats
path: root/youtube_dl/downloader/external.py
Commit message (Collapse)AuthorAgeFilesLines
...
* [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.