wi1-bot 1.4.13__tar.gz → 2.0.1__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.
- wi1_bot-2.0.1/.envrc +3 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/.github/workflows/pypi-publish.yml +1 -1
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/PKG-INFO +5 -4
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/README.md +2 -1
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/flake.nix +1 -1
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/pyproject.toml +2 -2
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/uv.lock +236 -414
- wi1_bot-2.0.1/wi1_bot/config.py +91 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/webhook.py +7 -14
- wi1_bot-1.4.13/.envrc +0 -7
- wi1_bot-1.4.13/wi1_bot/config.py +0 -136
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/.dockerignore +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/.github/workflows/docker.yaml +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/.gitignore +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/.pre-commit-config.yaml +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/Dockerfile +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/LICENSE +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/compose.yaml +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/config.yaml.template +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/tests/movie_downloaded.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/__init__.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/arr/__init__.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/arr/download.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/arr/episode.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/arr/movie.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/arr/radarr.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/arr/sonarr.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/arr/util.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/discord/__init__.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/discord/bot.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/discord/cogs/__init__.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/discord/cogs/movie.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/discord/cogs/series.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/discord/helpers.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/push.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/scripts/__init__.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/scripts/add_tag.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/scripts/rescan.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/scripts/start.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/scripts/transcode_item.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/transcoder/__init__.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/transcoder/transcode_queue.py +0 -0
- {wi1_bot-1.4.13 → wi1_bot-2.0.1}/wi1_bot/transcoder/transcoder.py +0 -0
wi1_bot-2.0.1/.envrc
ADDED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: wi1-bot
|
3
|
-
Version:
|
3
|
+
Version: 2.0.1
|
4
4
|
Summary: Discord bot for Radarr/Sonarr integration
|
5
5
|
Project-URL: Homepage, https://github.com/wthueb/wi1-bot
|
6
6
|
Author-email: William Huebner <wilhueb@gmail.com>
|
@@ -8,8 +8,8 @@ License-Expression: MIT
|
|
8
8
|
License-File: LICENSE
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
10
10
|
Classifier: Programming Language :: Python :: 3 :: Only
|
11
|
-
Classifier: Programming Language :: Python :: 3.
|
12
|
-
Requires-Python: >=3.
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
12
|
+
Requires-Python: >=3.11
|
13
13
|
Requires-Dist: discord-py==2.3.2
|
14
14
|
Requires-Dist: flask==3.0.2
|
15
15
|
Requires-Dist: mongoengine==0.29.1
|
@@ -35,13 +35,14 @@ A Discord bot to integrate [Radarr](https://radarr.video/) & [Sonarr](https://so
|
|
35
35
|
3. `pip install -e .[dev]`
|
36
36
|
4. `pre-commit install`
|
37
37
|
|
38
|
-
Requires Python >=3.
|
38
|
+
Requires Python >=3.11.
|
39
39
|
|
40
40
|
### TODO
|
41
41
|
|
42
42
|
- use sqlite
|
43
43
|
- dynamically copy streams
|
44
44
|
- i.e. if mov_text in input, -c:s srt
|
45
|
+
- https://github.com/HaveAGitGat/Tdarr_Plugins/blob/aef12f3c65905f5fc7d045b1a96ddc6a58dc55e7/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetContainer/1.0.0/index.ts#L77
|
45
46
|
- https://docs.docker.com/build/ci/github-actions/multi-platform/#distribute-build-across-multiple-runners
|
46
47
|
- link discord user to overseerr user
|
47
48
|
- https://github.com/kkroening/ffmpeg-python
|
@@ -15,13 +15,14 @@ A Discord bot to integrate [Radarr](https://radarr.video/) & [Sonarr](https://so
|
|
15
15
|
3. `pip install -e .[dev]`
|
16
16
|
4. `pre-commit install`
|
17
17
|
|
18
|
-
Requires Python >=3.
|
18
|
+
Requires Python >=3.11.
|
19
19
|
|
20
20
|
### TODO
|
21
21
|
|
22
22
|
- use sqlite
|
23
23
|
- dynamically copy streams
|
24
24
|
- i.e. if mov_text in input, -c:s srt
|
25
|
+
- https://github.com/HaveAGitGat/Tdarr_Plugins/blob/aef12f3c65905f5fc7d045b1a96ddc6a58dc55e7/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetContainer/1.0.0/index.ts#L77
|
25
26
|
- https://docs.docker.com/build/ci/github-actions/multi-platform/#distribute-build-across-multiple-runners
|
26
27
|
- link discord user to overseerr user
|
27
28
|
- https://github.com/kkroening/ffmpeg-python
|
@@ -8,9 +8,9 @@ license = "MIT"
|
|
8
8
|
classifiers = [
|
9
9
|
"Programming Language :: Python :: 3",
|
10
10
|
"Programming Language :: Python :: 3 :: Only",
|
11
|
-
"Programming Language :: Python :: 3.
|
11
|
+
"Programming Language :: Python :: 3.11"
|
12
12
|
]
|
13
|
-
requires-python = ">=3.
|
13
|
+
requires-python = ">=3.11"
|
14
14
|
dependencies = [
|
15
15
|
"discord-py==2.3.2",
|
16
16
|
"flask==3.0.2",
|