kryten-webqueue 0.9.9__tar.gz → 0.9.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/CHANGELOG.md +7 -1
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/PKG-INFO +1 -1
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/ytpipe/downloader.py +22 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/pyproject.toml +1 -1
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/.github/workflows/python-publish.yml +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/.github/workflows/release.yml +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/.gitignore +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/README.md +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/config.example.json +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/deploy/kryten-webqueue.service +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/deploy/nginx-queue.conf +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/docs/IMPLEMENTATION_SPEC.md +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/docs/IMPL_API_GATE.md +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/docs/IMPL_ECONOMY.md +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/docs/IMPL_KRYTEN_PY.md +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/docs/IMPL_ROBOT.md +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/docs/PRE_PLAN_GAPS.md +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/docs/PRODUCT_PLAN.md +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/docs/SPEC_JOBS_AND_BROWSE.md +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/__init__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/__main__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/api_gate/__init__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/api_gate/client.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/app.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/auth/__init__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/auth/otp.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/auth/rate_limit.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/auth/session.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/catalog/__init__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/catalog/db.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/catalog/images.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/catalog/mediacms.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/catalog/sync.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/config.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/__init__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/cmsutils/__init__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/cmsutils/_common.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/cmsutils/enrichmeta.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/cmsutils/enrichtitles.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/cmsutils/enrichtv.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/cmsutils/fetchurls.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/ytpipe/__init__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/jobs/__init__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/jobs/fetchurls_auth.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/jobs/manager.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/jobs/tasks.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/playlists/__init__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/playlists/fire.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/playlists/importer.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/playlists/scheduler.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/queue/__init__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/queue/ordering.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/queue/poller.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/queue/shadow.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/routes/__init__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/routes/admin_catalog.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/routes/admin_jobs.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/routes/admin_playlists.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/routes/admin_queue.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/routes/admin_schedules.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/routes/auth.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/routes/catalog.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/routes/pages.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/routes/queue.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/routes/user.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/static/css/main.css +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/static/js/main.js +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/admin/index.html +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/admin/playlists.html +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/admin/queue_mgmt.html +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/admin/schedules.html +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/auth/login.html +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/base.html +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/catalog/browse.html +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/catalog/item_detail.html +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/catalog/item_not_found.html +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/queue/index.html +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/user/dashboard.html +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/ws/__init__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/ws/handler.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/ws/manager.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/tests/__init__.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/tests/test_fetchurls_sharepoint.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/tests/test_phase1.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/tests/test_phase2_jobs.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/tests/test_phase3_jobs.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/tests/test_phase4_live_fixes.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/tests/test_playlist_import.py +0 -0
- {kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/tests/test_queue_announce.py +0 -0
|
@@ -6,7 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
-
## [0.9.
|
|
9
|
+
## [0.9.11] — 2026-06-12
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- **`fetch`/`fetchurls` now enable a Node.js JavaScript runtime for yt-dlp.** yt-dlp needs an external JS runtime to solve YouTube's JS challenges; only `deno` is enabled by default, so hosts with only Node installed hit a "No supported JavaScript runtime could be found" warning and could miss formats. The vendored downloader now passes `js_runtimes=['deno', 'node']` to every yt-dlp call (priority deno > node, so the highest-priority available runtime is used), applied centrally via a thin `YoutubeDL` wrapper.
|
|
14
|
+
|
|
15
|
+
## [0.9.10] — 2026-06-12
|
|
10
16
|
|
|
11
17
|
### Changed
|
|
12
18
|
|
{kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/ytpipe/downloader.py
RENAMED
|
@@ -34,6 +34,28 @@ import yt_dlp
|
|
|
34
34
|
from slugify import slugify
|
|
35
35
|
|
|
36
36
|
|
|
37
|
+
# yt-dlp needs an external JavaScript runtime to solve YouTube's JS challenges.
|
|
38
|
+
# Only "deno" is enabled by default; many hosts only have Node installed, which
|
|
39
|
+
# triggers a "No supported JavaScript runtime could be found" warning and missing
|
|
40
|
+
# formats. Enable both (priority order deno > node) so the highest-priority
|
|
41
|
+
# available runtime is used. Applied centrally via a thin YoutubeDL subclass so
|
|
42
|
+
# every extraction/download call in this module gets it without editing each
|
|
43
|
+
# ydl_opts dict. ``setdefault`` means an explicit per-call value still wins.
|
|
44
|
+
_JS_RUNTIMES = ["deno", "node"]
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
class _YoutubeDLWithJSRuntimes(yt_dlp.YoutubeDL):
|
|
48
|
+
def __init__(self, params=None, *args, **kwargs): # noqa: D107
|
|
49
|
+
merged = dict(params or {})
|
|
50
|
+
merged.setdefault("js_runtimes", _JS_RUNTIMES)
|
|
51
|
+
super().__init__(merged, *args, **kwargs)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
# Route all `yt_dlp.YoutubeDL(...)` calls in this module through the wrapper.
|
|
55
|
+
yt_dlp.YoutubeDL = _YoutubeDLWithJSRuntimes
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
37
59
|
def clean_youtube_url(url: str) -> str:
|
|
38
60
|
"""
|
|
39
61
|
Clean YouTube URLs by removing Mix/Radio playlist parameters.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/cmsutils/__init__.py
RENAMED
|
File without changes
|
{kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/cmsutils/_common.py
RENAMED
|
File without changes
|
{kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/cmsutils/enrichmeta.py
RENAMED
|
File without changes
|
|
File without changes
|
{kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/cmsutils/enrichtv.py
RENAMED
|
File without changes
|
{kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/cmsutils/fetchurls.py
RENAMED
|
File without changes
|
{kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/integrations/ytpipe/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/admin/playlists.html
RENAMED
|
File without changes
|
{kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/admin/queue_mgmt.html
RENAMED
|
File without changes
|
{kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/admin/schedules.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/catalog/browse.html
RENAMED
|
File without changes
|
{kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/catalog/item_detail.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{kryten_webqueue-0.9.9 → kryten_webqueue-0.9.11}/kryten_webqueue/templates/user/dashboard.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|