aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_YoutubeDLCookieJar.py
Commit message (Collapse)AuthorAgeFilesLines
* [cleanup] Misc fixespukkandan2023-07-221-6/+6
| | | | Closes #7528
* [core] Fix HTTP headers and cookie handlingbashonly2023-07-151-0/+8
| | | | | | | | | | - Remove `Cookie` header from `http_headers` immediately after loading into cookiejar - Restore compat for `--load-info-json` cookies - Add more tests - Fix improper passing of Cookie header by `MailRu` extractor Closes #7558 Authored by: bashonly, pukkandan
* [cookies] Move `YoutubeDLCookieJar` to cookies module (#7091)coletdjnz2023-05-271-1/+7
| | | Authored by: coletdjnz
* [cleanup] Consistent style for file headspukkandan2022-06-251-2/+6
|
* [cleanup] Minor fixes (See desc)pukkandan2022-05-091-1/+1
| | | | | | | | | | * [youtube] Fix `--youtube-skip-dash-manifest` * [build] Use `$()` in `Makefile`. Closes #3684 * Fix bug in 385ffb467b2285e85a2a5495b90314ba1f8e0700 * Fix bug in 43d7f5a5d0c77556156a3f8caa6976d3908a1e38 * [cleanup] Remove unnecessary `utf-8` from `str.encode`/`bytes.decode` * [utils] LazyList: Expose unnecessarily "protected" attributes and other minor cleanup
* [cleanup] Sort importspukkandan2022-04-121-0/+1
| | | | | | Using https://github.com/PyCQA/isort isort -m VERTICAL_HANGING_INDENT --py 36 -l 80 --rr -n --tc .
* [cleanup] Upgrade syntaxpukkandan2022-04-121-4/+0
| | | | | | | | | | Using https://github.com/asottile/pyupgrade 1. `__future__` imports and `coding: utf-8` were removed 2. Files were rewritten with `pyupgrade --py36-plus --keep-percent-format` 3. f-strings were cherry-picked from `pyupgrade --py36-plus` Extractors are left untouched (except removing header) to avoid unnecessary merge conflicts
* [cleanup] Point all shebang to `python3` (#372)felix2021-06-061-1/+1
| | | | Authored by: fstirlitz
* Completely change project name to yt-dlp (#85)Pccode662021-02-251-1/+1
| | | | | | | | | * All modules and binary names are changed * All documentation references changed * yt-dlp no longer loads youtube-dlc config files * All URLs changed to point to organization account Co-authored-by: Pccode66 Co-authored-by: pukkandan
* [skip travis] renamingUnknown2020-09-021-1/+1
| | | to avoid using same folder when using pip install for example
* [utils] Improve cookie files supportSergey M․2020-05-051-0/+7
| | | | | + Add support for UTF-8 in cookie files * Skip malformed cookie file entries instead of crashing (invalid entry len, invalid expires at)
* Revert "[utils] Add support for cookies with spaces used instead of tabs"Sergey M․2020-03-101-9/+5
| | | | | | | | | | According to [1] TABs must be used as separators between fields. Files produces by some tools with spaces as separators are considered malformed. 1. https://curl.haxx.se/docs/http-cookies.html This reverts commit cff99c91d150df2a4e21962a3ca8d4ae94533b8c.
* [utils] Add support for cookies with spaces used instead of tabsSergey M․2020-03-081-5/+9
|
* [utils] strip #HttpOnly_ prefix from cookies files (#20219)remitamine2019-03-031-0/+10
|
* [YoutubeDLCookieJar] Add test for keeping session cookiesSergey M․2018-12-091-0/+34