kryten-webqueue 0.1.6__tar.gz → 0.2.0__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.1.6 → kryten_webqueue-0.2.0}/PKG-INFO +1 -1
- kryten_webqueue-0.2.0/kryten_webqueue/__main__.py +16 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/pyproject.toml +6 -1
- kryten_webqueue-0.1.6/kryten_webqueue/__main__.py +0 -10
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/.github/workflows/python-publish.yml +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/.github/workflows/release.yml +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/.gitignore +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/README.md +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/config.example.json +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/deploy/kryten-webqueue.service +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/deploy/nginx-queue.conf +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/docs/IMPLEMENTATION_SPEC.md +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/docs/IMPL_API_GATE.md +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/docs/IMPL_ECONOMY.md +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/docs/IMPL_KRYTEN_PY.md +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/docs/IMPL_ROBOT.md +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/docs/PRE_PLAN_GAPS.md +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/docs/PRODUCT_PLAN.md +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/__init__.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/api_gate/__init__.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/api_gate/client.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/app.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/auth/__init__.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/auth/otp.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/auth/rate_limit.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/auth/session.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/catalog/__init__.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/catalog/db.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/catalog/images.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/catalog/sync.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/config.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/playlists/__init__.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/playlists/fire.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/playlists/importer.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/playlists/scheduler.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/queue/__init__.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/queue/ordering.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/queue/poller.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/queue/shadow.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/routes/__init__.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/routes/admin_playlists.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/routes/admin_queue.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/routes/admin_schedules.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/routes/auth.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/routes/catalog.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/routes/pages.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/routes/queue.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/routes/user.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/static/css/main.css +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/static/js/main.js +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/templates/admin/index.html +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/templates/auth/login.html +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/templates/base.html +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/templates/catalog/browse.html +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/templates/queue/index.html +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/templates/user/dashboard.html +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/ws/__init__.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/ws/handler.py +0 -0
- {kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/ws/manager.py +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import os
|
|
2
|
+
import uvicorn
|
|
3
|
+
|
|
4
|
+
from .config import Config
|
|
5
|
+
from .app import create_app
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def main():
|
|
9
|
+
config_path = os.environ.get("WQ_CONFIG", "/etc/kryten-webqueue/config.json")
|
|
10
|
+
config = Config.from_file(config_path)
|
|
11
|
+
app = create_app(config)
|
|
12
|
+
uvicorn.run(app, host=config.host, port=config.port)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
if __name__ == "__main__":
|
|
16
|
+
main()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "kryten-webqueue"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.2.0"
|
|
4
4
|
description = "Netflix/Tubi-style catalog browser and pay-to-play queue management for CyTube"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -41,5 +41,10 @@ build-backend = "hatchling.build"
|
|
|
41
41
|
[tool.hatch.build.targets.wheel]
|
|
42
42
|
packages = ["kryten_webqueue"]
|
|
43
43
|
|
|
44
|
+
[tool.hatch.build.targets.wheel.shared-data]
|
|
45
|
+
"deploy/nginx-queue.conf" = "share/kryten-webqueue/nginx-queue.conf"
|
|
46
|
+
"deploy/kryten-webqueue.service" = "share/kryten-webqueue/kryten-webqueue.service"
|
|
47
|
+
"config.example.json" = "share/kryten-webqueue/config.example.json"
|
|
48
|
+
|
|
44
49
|
[tool.pytest.ini_options]
|
|
45
50
|
asyncio_mode = "auto"
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import os
|
|
2
|
-
import uvicorn
|
|
3
|
-
|
|
4
|
-
from .config import Config
|
|
5
|
-
from .app import create_app
|
|
6
|
-
|
|
7
|
-
config_path = os.environ.get("WQ_CONFIG", "/etc/kryten-webqueue/config.json")
|
|
8
|
-
config = Config.from_file(config_path)
|
|
9
|
-
app = create_app(config)
|
|
10
|
-
uvicorn.run(app, host=config.host, port=config.port)
|
|
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
|
|
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.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/templates/catalog/browse.html
RENAMED
|
File without changes
|
|
File without changes
|
{kryten_webqueue-0.1.6 → kryten_webqueue-0.2.0}/kryten_webqueue/templates/user/dashboard.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|