about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
* [utils] Advertise optional supported `Content-Encoding`sdirkf2023-08-011-2/+7
|
* [utils] Add and use `filter_dict()` from yt-dlpdirkf2023-08-011-4/+7
|
* [utils] Revise `isinstance()` tests (especially for str/unicode/bytes) to ↵dirkf2023-08-012-79/+70
| | | | complete Linter fix
* [utils] Avoid comparing `type(var)`, etc, to pass new Linter rulesdirkf2023-08-012-5/+7
|
* [utils] Rework URL path munging for ., .. componentsdirkf2023-07-294-41/+95
| | | | | | * move processing to YoutubeDLHandler * also process `Location` header for redirect * use tests from https://github.com/yt-dlp/yt-dlp/pull/7662
* [utils] Rework decoding of `Content-Encoding`sdirkf2023-07-293-43/+107
| | | | | | | | | | * support nested encodings * support optional `br` encoding, if brotli package is installed * support optional 'compress' encoding, if ncompress package is installed * response `Content-Encoding` has only unprocessed encodings, or removed * response `Content-Length` is decoded length (usable for filesize metadata) * use zlib for both deflate and gzip decompression * some elements taken from yt-dlp: thx especially coletdjnz
* [workflows/ci.yml] Update to setup-java@v3dirkf2023-07-291-1/+1
| | | | * avoid Node 12 deprecation
* [build] Fix typo in `devscripts/fish-completion.py` (fix 2285605)dirkf2023-07-251-1/+1
|
* [build] Extend use of `devscripts/utils`dirkf2023-07-2515-74/+99
|
* [compat] Use `compat_open()`dirkf2023-07-2516-55/+68
|
* [build] Add and use `devscripts/utils`dirkf2023-07-254-16/+81
|
* [utils] Fix update_Request() with empty data (not None)dirkf2023-07-252-4/+16
|
* [test/test_execution.py] Use `compat_subprocess_get_DEVNULL()`dirkf2023-07-251-5/+2
|
* [build] Fix various Jython CI and test issuesdirkf2023-07-254-19/+45
|
* [workflows/ci.yml] Build 3.12 with pyenvdirkf2023-07-251-2/+38
|
* [doc] Update developer guidancedirkf2023-07-251-12/+101
| | | | | | | * mention pynose * mention traverse_obj and add/revise examples [skip ci]
* [workflows/ci.yml] Extend Python versionsdirkf2023-07-251-18/+30
| | | | | | | * add 3.10 - 3.12 * use https://pypi.org/project/pynose/ for Py >= 3.9 * test Windows with 3.4 * set defaults (main, both) except push: (all, core)
* [utils] Remove stray undocumented Host header in redirect (fix 46fde7c)dirkf2023-07-201-1/+2
|
* [InfoExtractor] Add `_match_valid_url()` class method and refactordirkf2023-07-193-22/+49
| | | | | | | * API compatible with yt-dlp * also support Sequence of patterns in _VALID_URL * one place to compile _VALID_URL * TODO: remove existing extractor shims
* [utils] Fix broken Py 3.11+ compat in `traverse_obj()`dirkf2023-07-191-4/+32
| | | | | * inspect.getargspec is missing despite doc claiming backward compat * replace with emulation of `Signature.bind()`
* [InfoExtractor] Add search methods for Next/Nuxt.js from yt-dlpdirkf2023-07-195-58/+168
| | | | | | | | | | | | * add _search_nextjs_data(), from https://github.com/yt-dlp/yt-dlp/pull/1386 thanks selfisekai * add _search_nuxt_data(), from https://github.com/yt-dlp/yt-dlp/pull/1921, thanks Lesmiscore, pukkandan * add tests for the above * also fix HTML5 type recognition and tests, from https://github.com/yt-dlp/yt-dlp/commit/222a230871fe4fe63f35c49590379c9a77116819, thanks Lesmiscore * update extractors in PR using above, fix tests.
* [Clipchamp] Add new extractor back-ported from yt-dlpdirkf2023-07-192-0/+77
|
* [DLF] Add site extractors back-ported from yt-dlpdirkf2023-07-192-0/+208
| | | | * from https://github.com/yt-dlp/yt-dlp/pull/6697, thanks nick-cd
* [Whyp] Add extractor back-ported from yt-dlpdirkf2023-07-192-0/+79
| | | | * from https://github.com/yt-dlp/yt-dlp/pull/6803, thanks CoryTibbettsDev
* [GlobalPlayer] Add site extractors back-ported from yt-dlpdirkf2023-07-192-4/+296
| | | | * from https://github.com/yt-dlp/yt-dlp/pull/6903, thanks garret1317
* [InfoExtractor] Support groups in _`search_regex()`, etcdirkf2023-07-191-4/+5
|
* [utils] Minor updates (merge_dicts, T)dirkf2023-07-191-7/+30
| | | | | | | A couple of mods to ease yt-dlp back-ports: * add kwargs to merge_dicts: `unblank=True` (disallow empty string), `rev=False` (reverse the merge list) * add `T(x)` shortcut for `{x}`, unsupported in Py2.6
* [utils] Improve js_to_json, align with yt-dlpdirkf2023-07-192-30/+187
| | | | | | | | | | * support variable substitution, from https://github.com/yt-dlp/yt-dlp/pull/#521 etc, thanks ChillingPepper, Grub4k, pukkandan * improve escape handling, from https://github.com/yt-dlp/yt-dlp/pull/#521 thanks Grub4k * support template strings from https://github.com/yt-dlp/yt-dlp/pull/6623 thanks Grub4k * add limited `!` evaluation (eg, !!0 -> false, see tests)
* [utils] Align traverse_obj() with yt-dlpdirkf2023-07-192-23/+23
| | | | | | | | | Thanks Grub4k for these: * traverse `Iterable`s, from https://github.com/yt-dlp/yt-dlp/pull/6902, etc * traverse `set` key for transformations/filters, `re.Match` group names, from https://github.com/yt-dlp/yt-dlp/commit/776995bc109c5cd1aa56b684fada2ce718a386ec, etc * traverse `re.Match`es, from https://github.com/yt-dlp/yt-dlp/pull/5174 * always return list when branching, from https://github.com/yt-dlp/yt-dlp/pull/5170
* [compat] Fix old Pythons broken loading of valueless cookie attributesdirkf2023-07-181-4/+16
| | | | | Cookie string parsing in Py 2.6.9, probably earlier, requires `=`. Also 3.2, though the CPython code appears to be OK: 3.1 was also wrong.
* [test] Fixes for old Pythonsdirkf2023-07-186-15/+30
|
* [doc] Warn against setting cookies with --add-headerdirkf2023-07-181-2/+4
|
* [downloader/external] Fix cookie supportbashonly2023-07-183-29/+255
|
* [core] Process header cookies on loadingSimon Sawicki2023-07-184-33/+357
|
* [utils] `YoutubeDLCookieJar`: Add `get_cookie_header` and ↵bashonly2023-07-181-0/+13
| | | | `get_cookies_for_url` methods
* [core] Remove `Cookie` header on redirect to prevent leaksdirkf2023-07-182-4/+36
| | | | | Adated from yt-dlp/yt-dlp-ghsa-v8mc-9377-rwjj/pull/1/commits/101caac Thx coletdjnz
* [core] Update redirect handling from yt-dlpdirkf2023-07-182-79/+484
| | | | | * Thx coletdjnz: https://github.com/yt-dlp/yt-dlp/pull/7094 * add test that redirected `POST` loses its `Content-Type`
* [compat] Add Request and HTTPClient compat for redirectdirkf2023-07-181-0/+28
| | | | | * support `method` parameter of `Request.__init__` (Py 2 and old Py 3) * support `getcode` method of compat_http_client.HTTPResponse (Py 2)
* [test] Make skipped tests in test_execution work with Py 2.6dirkf2023-07-181-4/+7
|
* [core] Align error reporting methods with yt-dlpdirkf2023-07-183-16/+36
|
* [utils] Add {expected_type} and Iterable support to traverse_obj()dirkf2023-07-182-100/+266
|
* [core] Revert version display from b8a86dcdirkf2023-07-181-3/+5
|
* [Misc] Fixes for 2.6 compatibilitydirkf2023-07-056-8/+38
|
* [workflows/ci.yml] Fix test support for Py 2.6dirkf2023-07-053-56/+83
|
* [workflows/ci.yml] Restore test support for Py 3.2dirkf2023-07-056-30/+328
|
* [workflows/ci.yml] Restore test support for Py 3.3, 3.4, and add 2.6dirkf2023-06-231-3/+1
|
* [YouTube] Avoid crash in author extractiondirkf2023-06-221-1/+1
|
* [workflows/ci.yml] Replace actions/setup-python for legacy Pythonsdirkf2023-06-221-2/+4
| | | | Thanks MatteoH2O1999: https://github.com/MatteoH2O1999/setup-python
* [YouTube] Improve nsig function name extractionpukkandan2023-06-222-14/+16
| | | | | | | Fixes player b7910ca8, using `,` vs `;` See https://github.com/ytdl-org/youtube-dl/issues/32292#issuecomment-1602231170 Co-authored-by: dirkf
* [YouTube] Improve fix for ae8ba2cdirkf2023-06-182-12/+13
| | | | Thx: https://github.com/yt-dlp/yt-dlp/commit/01aba25