StreamingCommunity 1.9.4__py3-none-any.whl → 1.9.8__py3-none-any.whl
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.
Potentially problematic release.
This version of StreamingCommunity might be problematic. Click here for more details.
- StreamingCommunity/run.py +2 -11
- {StreamingCommunity-1.9.4.dist-info → StreamingCommunity-1.9.8.dist-info}/METADATA +4 -18
- StreamingCommunity-1.9.8.dist-info/RECORD +7 -0
- StreamingCommunity-1.9.4.dist-info/RECORD +0 -7
- {StreamingCommunity-1.9.4.dist-info → StreamingCommunity-1.9.8.dist-info}/LICENSE +0 -0
- {StreamingCommunity-1.9.4.dist-info → StreamingCommunity-1.9.8.dist-info}/WHEEL +0 -0
- {StreamingCommunity-1.9.4.dist-info → StreamingCommunity-1.9.8.dist-info}/entry_points.txt +0 -0
- {StreamingCommunity-1.9.4.dist-info → StreamingCommunity-1.9.8.dist-info}/top_level.txt +0 -0
StreamingCommunity/run.py
CHANGED
|
@@ -17,13 +17,11 @@ from StreamingCommunity.Util.console import console, msg
|
|
|
17
17
|
from StreamingCommunity.Util._jsonConfig import config_manager
|
|
18
18
|
from StreamingCommunity.Upload.update import update as git_update
|
|
19
19
|
from StreamingCommunity.Util.os import os_summary
|
|
20
|
-
from StreamingCommunity.Lib.TMBD import tmdb
|
|
21
20
|
from StreamingCommunity.Util.logger import Logger
|
|
22
21
|
|
|
23
22
|
|
|
24
23
|
# Config
|
|
25
24
|
CLOSE_CONSOLE = config_manager.get_bool('DEFAULT', 'not_close')
|
|
26
|
-
SHOW_TRENDING = config_manager.get_bool('DEFAULT', 'show_trending')
|
|
27
25
|
|
|
28
26
|
|
|
29
27
|
def run_function(func: Callable[..., None], close_console: bool = False) -> None:
|
|
@@ -120,18 +118,11 @@ def initialize():
|
|
|
120
118
|
sys.exit(0)
|
|
121
119
|
|
|
122
120
|
# Attempting GitHub update
|
|
123
|
-
|
|
121
|
+
try:
|
|
124
122
|
git_update()
|
|
125
123
|
print()
|
|
126
124
|
except:
|
|
127
|
-
console.log("[red]Error with loading github.")
|
|
128
|
-
|
|
129
|
-
# Show trending film and series
|
|
130
|
-
if SHOW_TRENDING:
|
|
131
|
-
tmdb.display_trending_films()
|
|
132
|
-
print()
|
|
133
|
-
tmdb.display_trending_tv_shows()
|
|
134
|
-
print()
|
|
125
|
+
console.log("[red]Error with loading github.")
|
|
135
126
|
|
|
136
127
|
|
|
137
128
|
def main():
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: StreamingCommunity
|
|
3
|
-
Version: 1.9.
|
|
3
|
+
Version: 1.9.8
|
|
4
4
|
Summary: UNKNOWN
|
|
5
5
|
Home-page: https://github.com/Lovi-0/StreamingCommunity
|
|
6
6
|
Author: Lovi-0
|
|
@@ -12,6 +12,7 @@ Platform: UNKNOWN
|
|
|
12
12
|
Requires-Python: >=3.8
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
Requires-Dist: httpx
|
|
15
|
+
Requires-Dist: cffi
|
|
15
16
|
Requires-Dist: bs4
|
|
16
17
|
Requires-Dist: rich
|
|
17
18
|
Requires-Dist: tqdm
|
|
@@ -20,7 +21,7 @@ Requires-Dist: psutil
|
|
|
20
21
|
Requires-Dist: unidecode
|
|
21
22
|
Requires-Dist: jsbeautifier
|
|
22
23
|
Requires-Dist: pathvalidate
|
|
23
|
-
Requires-Dist:
|
|
24
|
+
Requires-Dist: pycryptodomex
|
|
24
25
|
Requires-Dist: fake-useragent==1.1.3
|
|
25
26
|
Requires-Dist: qbittorrent-api
|
|
26
27
|
Requires-Dist: python-qbittorrent
|
|
@@ -48,7 +49,6 @@ Chat, contribute, and have fun in our **Git_StreamingCommunity** Discord [Server
|
|
|
48
49
|
- [Configuration](#configuration)
|
|
49
50
|
- [Default](#default-settings)
|
|
50
51
|
- [Request](#requests-settings)
|
|
51
|
-
- [Browser](#browser-settings)
|
|
52
52
|
- [Download](#m3u8_download-settings)
|
|
53
53
|
- [Parser](#m3u8_parser-settings)
|
|
54
54
|
- [Docker](#docker)
|
|
@@ -201,8 +201,7 @@ The configuration file is divided into several main sections:
|
|
|
201
201
|
"movie_folder_name": "Movie",
|
|
202
202
|
"serie_folder_name": "TV",
|
|
203
203
|
"map_episode_name": "%(tv_name)_S%(season)E%(episode)_%(episode_name)",
|
|
204
|
-
"not_close": false
|
|
205
|
-
"show_trending": false
|
|
204
|
+
"not_close": false
|
|
206
205
|
}
|
|
207
206
|
```
|
|
208
207
|
|
|
@@ -230,7 +229,6 @@ The configuration file is divided into several main sections:
|
|
|
230
229
|
`<br/><br/>`
|
|
231
230
|
|
|
232
231
|
- `not_close`: If true, continues running after downloading
|
|
233
|
-
- `show_trending`: Display trending content on startup
|
|
234
232
|
|
|
235
233
|
### qBittorrent Configuration
|
|
236
234
|
|
|
@@ -263,18 +261,6 @@ The configuration file is divided into several main sections:
|
|
|
263
261
|
|
|
264
262
|
<br>
|
|
265
263
|
|
|
266
|
-
## BROWSER Settings
|
|
267
|
-
|
|
268
|
-
```json
|
|
269
|
-
{
|
|
270
|
-
"headless": false
|
|
271
|
-
}
|
|
272
|
-
```
|
|
273
|
-
|
|
274
|
-
- `headless`: Controls whether to run browser in headless mode
|
|
275
|
-
|
|
276
|
-
<br>
|
|
277
|
-
|
|
278
264
|
## M3U8_DOWNLOAD Settings
|
|
279
265
|
|
|
280
266
|
```json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
StreamingCommunity/run.py,sha256=8juF-UPFnzzs0AqJkF_FF10PkYisbqc70xypln1aMRc,6435
|
|
2
|
+
StreamingCommunity-1.9.8.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
3
|
+
StreamingCommunity-1.9.8.dist-info/METADATA,sha256=tMXG8fMQbUTvvHzMqCT3y3HCFxF0KtpXukyG_ZNO5VA,11425
|
|
4
|
+
StreamingCommunity-1.9.8.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
5
|
+
StreamingCommunity-1.9.8.dist-info/entry_points.txt,sha256=-iQU6qfeHFwauAg4iZhifWhNZAkiV-x3XuEauo_EjUc,68
|
|
6
|
+
StreamingCommunity-1.9.8.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
|
|
7
|
+
StreamingCommunity-1.9.8.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
StreamingCommunity/run.py,sha256=7ZPkTVKMnbH_5ki9mRIDfnCriAzSZGV3WEFFQYqF1Rk,6733
|
|
2
|
-
StreamingCommunity-1.9.4.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
3
|
-
StreamingCommunity-1.9.4.dist-info/METADATA,sha256=1qqxCoanxmV4pMTcouhv5zVm_INlbEYdtsLfs6iVoVw,11666
|
|
4
|
-
StreamingCommunity-1.9.4.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
5
|
-
StreamingCommunity-1.9.4.dist-info/entry_points.txt,sha256=-iQU6qfeHFwauAg4iZhifWhNZAkiV-x3XuEauo_EjUc,68
|
|
6
|
-
StreamingCommunity-1.9.4.dist-info/top_level.txt,sha256=YsOcxKP-WOhWpIWgBlh0coll9XUx7aqmRPT7kmt3fH0,19
|
|
7
|
-
StreamingCommunity-1.9.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|