zou 0.19.65__py3-none-any.whl → 0.19.67__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.
- zou/__init__.py +1 -1
- zou/app/models/person.py +1 -0
- zou/app/services/user_service.py +1 -1
- zou/utils/movie.py +8 -2
- {zou-0.19.65.dist-info → zou-0.19.67.dist-info}/METADATA +72 -70
- {zou-0.19.65.dist-info → zou-0.19.67.dist-info}/RECORD +10 -10
- {zou-0.19.65.dist-info → zou-0.19.67.dist-info}/WHEEL +1 -1
- {zou-0.19.65.dist-info → zou-0.19.67.dist-info}/LICENSE +0 -0
- {zou-0.19.65.dist-info → zou-0.19.67.dist-info}/entry_points.txt +0 -0
- {zou-0.19.65.dist-info → zou-0.19.67.dist-info}/top_level.txt +0 -0
zou/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.19.
|
|
1
|
+
__version__ = "0.19.67"
|
zou/app/models/person.py
CHANGED
zou/app/services/user_service.py
CHANGED
|
@@ -595,7 +595,7 @@ def check_supervisor_task_access(task, new_data={}):
|
|
|
595
595
|
# checks that the supervisor only modifies columns
|
|
596
596
|
# for which he is authorized
|
|
597
597
|
allowed_columns = set(
|
|
598
|
-
["priority", "start_date", "due_date", "estimation"]
|
|
598
|
+
["priority", "start_date", "due_date", "estimation", "difficulty"]
|
|
599
599
|
)
|
|
600
600
|
if len(set(new_data.keys()) - allowed_columns) == 0:
|
|
601
601
|
user_departments = persons_service.get_current_user(
|
zou/utils/movie.py
CHANGED
|
@@ -108,7 +108,9 @@ def generate_tile(movie_path):
|
|
|
108
108
|
height = 100
|
|
109
109
|
width = math.ceil(height * ratio)
|
|
110
110
|
if rows == 480:
|
|
111
|
-
select =
|
|
111
|
+
select = (
|
|
112
|
+
rf"select='not(mod(n\,{math.ceil(duration_in_frames/3840)}))',"
|
|
113
|
+
)
|
|
112
114
|
else:
|
|
113
115
|
select = ""
|
|
114
116
|
try:
|
|
@@ -493,7 +495,11 @@ def concat_demuxer(in_files, output_path, *args):
|
|
|
493
495
|
|
|
494
496
|
stream = ffmpeg.input(temp.name, format="concat", safe=0)
|
|
495
497
|
stream = ffmpeg.output(
|
|
496
|
-
stream.video,
|
|
498
|
+
stream.video,
|
|
499
|
+
stream.audio,
|
|
500
|
+
output_path,
|
|
501
|
+
vf="select=concatdec_select",
|
|
502
|
+
af="aselect=concatdec_select,aresample=async=1",
|
|
497
503
|
)
|
|
498
504
|
return run_ffmpeg(stream, "-xerror")
|
|
499
505
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: zou
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.67
|
|
4
4
|
Summary: API to store and manage the data of your animation production
|
|
5
5
|
Home-page: https://zou.cg-wire.com
|
|
6
6
|
Author: CG Wire
|
|
@@ -15,81 +15,83 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
19
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
19
20
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
20
21
|
Classifier: Topic :: Multimedia :: Graphics
|
|
21
|
-
Requires-Python: >=3.9, <3.
|
|
22
|
+
Requires-Python: >=3.9, <3.14
|
|
22
23
|
License-File: LICENSE
|
|
23
|
-
Requires-Dist:
|
|
24
|
-
Requires-Dist:
|
|
25
|
-
Requires-Dist:
|
|
26
|
-
Requires-Dist:
|
|
27
|
-
Requires-Dist:
|
|
28
|
-
Requires-Dist:
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist:
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
Requires-Dist:
|
|
38
|
-
Requires-Dist: flask-
|
|
39
|
-
Requires-Dist: flask-
|
|
40
|
-
Requires-Dist: flask-
|
|
41
|
-
Requires-Dist: flask
|
|
42
|
-
Requires-Dist:
|
|
43
|
-
Requires-Dist:
|
|
44
|
-
Requires-Dist: gevent
|
|
45
|
-
Requires-Dist:
|
|
46
|
-
Requires-Dist:
|
|
47
|
-
Requires-Dist:
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist:
|
|
51
|
-
Requires-Dist:
|
|
52
|
-
Requires-Dist:
|
|
53
|
-
Requires-Dist:
|
|
54
|
-
Requires-Dist:
|
|
55
|
-
Requires-Dist:
|
|
56
|
-
Requires-Dist:
|
|
57
|
-
Requires-Dist:
|
|
58
|
-
Requires-Dist:
|
|
59
|
-
Requires-Dist:
|
|
60
|
-
Requires-Dist:
|
|
61
|
-
Requires-Dist:
|
|
62
|
-
Requires-Dist:
|
|
63
|
-
Requires-Dist:
|
|
64
|
-
Requires-Dist:
|
|
65
|
-
Requires-Dist:
|
|
66
|
-
Requires-Dist:
|
|
67
|
-
Requires-Dist:
|
|
68
|
-
Requires-Dist:
|
|
69
|
-
Requires-Dist:
|
|
70
|
-
Requires-Dist:
|
|
71
|
-
Requires-Dist:
|
|
72
|
-
Requires-Dist:
|
|
73
|
-
Requires-Dist:
|
|
74
|
-
Requires-Dist:
|
|
75
|
-
|
|
76
|
-
Requires-Dist: wheel ; extra == 'dev'
|
|
77
|
-
Provides-Extra: lint
|
|
78
|
-
Requires-Dist: autoflake ==2.3.1 ; extra == 'lint'
|
|
79
|
-
Requires-Dist: black ==24.10.0 ; extra == 'lint'
|
|
80
|
-
Requires-Dist: pre-commit ==4.0.1 ; extra == 'lint'
|
|
81
|
-
Provides-Extra: monitoring
|
|
82
|
-
Requires-Dist: prometheus-flask-exporter ==0.23.1 ; extra == 'monitoring'
|
|
83
|
-
Requires-Dist: pygelf ==0.4.2 ; extra == 'monitoring'
|
|
84
|
-
Requires-Dist: sentry-sdk ==2.18.0 ; extra == 'monitoring'
|
|
24
|
+
Requires-Dist: audioop-lts==0.2.1; python_version >= "3.13"
|
|
25
|
+
Requires-Dist: babel==2.16.0
|
|
26
|
+
Requires-Dist: click==8.1.7
|
|
27
|
+
Requires-Dist: discord.py==2.4.0
|
|
28
|
+
Requires-Dist: email-validator==2.2.0
|
|
29
|
+
Requires-Dist: ffmpeg-python==0.2.0
|
|
30
|
+
Requires-Dist: fido2==1.1.3
|
|
31
|
+
Requires-Dist: flasgger==0.9.7.1
|
|
32
|
+
Requires-Dist: flask_bcrypt==1.0.1
|
|
33
|
+
Requires-Dist: flask_caching==2.3.0
|
|
34
|
+
Requires-Dist: flask_fixtures==0.3.8
|
|
35
|
+
Requires-Dist: flask_mail==0.10.0
|
|
36
|
+
Requires-Dist: flask_principal==0.4.0
|
|
37
|
+
Requires-Dist: flask_restful==0.3.10
|
|
38
|
+
Requires-Dist: flask_sqlalchemy==3.1.1
|
|
39
|
+
Requires-Dist: flask-fs2[s3,swift]==0.7.27
|
|
40
|
+
Requires-Dist: flask-jwt-extended==4.7.1
|
|
41
|
+
Requires-Dist: flask-migrate==4.0.7
|
|
42
|
+
Requires-Dist: flask-socketio==5.4.1
|
|
43
|
+
Requires-Dist: flask==3.1.0
|
|
44
|
+
Requires-Dist: gazu==0.10.19
|
|
45
|
+
Requires-Dist: gevent-websocket==0.10.1
|
|
46
|
+
Requires-Dist: gevent==24.11.1
|
|
47
|
+
Requires-Dist: gunicorn==23.0.0
|
|
48
|
+
Requires-Dist: isoweek==1.3.3
|
|
49
|
+
Requires-Dist: itsdangerous==2.2.0
|
|
50
|
+
Requires-Dist: Jinja2==3.1.4
|
|
51
|
+
Requires-Dist: ldap3==2.9.1
|
|
52
|
+
Requires-Dist: matterhook==0.2
|
|
53
|
+
Requires-Dist: meilisearch==0.31.6
|
|
54
|
+
Requires-Dist: numpy==2.0.1; python_version == "3.9"
|
|
55
|
+
Requires-Dist: numpy==2.1.3; python_version >= "3.10"
|
|
56
|
+
Requires-Dist: opencv-python==4.10.0.84
|
|
57
|
+
Requires-Dist: OpenTimelineIO==0.17.0
|
|
58
|
+
Requires-Dist: OpenTimelineIO-Plugins==0.17.0
|
|
59
|
+
Requires-Dist: orjson==3.10.11
|
|
60
|
+
Requires-Dist: pillow==11.0.0
|
|
61
|
+
Requires-Dist: psutil==6.1.0
|
|
62
|
+
Requires-Dist: psycopg[binary]==3.2.3
|
|
63
|
+
Requires-Dist: pyotp==2.9.0
|
|
64
|
+
Requires-Dist: pysaml2==7.5.0
|
|
65
|
+
Requires-Dist: python-nomad==2.0.1
|
|
66
|
+
Requires-Dist: python-slugify==8.0.4
|
|
67
|
+
Requires-Dist: python-socketio==5.11.4
|
|
68
|
+
Requires-Dist: pytz==2024.2
|
|
69
|
+
Requires-Dist: redis==5.2.0
|
|
70
|
+
Requires-Dist: requests==2.32.3
|
|
71
|
+
Requires-Dist: rq==2.0.0
|
|
72
|
+
Requires-Dist: slackclient==2.9.4
|
|
73
|
+
Requires-Dist: sqlalchemy_utils==0.41.2
|
|
74
|
+
Requires-Dist: sqlalchemy==2.0.36
|
|
75
|
+
Requires-Dist: ua-parser==0.18.0
|
|
76
|
+
Requires-Dist: werkzeug==3.1.3
|
|
85
77
|
Provides-Extra: prod
|
|
86
|
-
Requires-Dist: gunicorn
|
|
87
|
-
Requires-Dist: gevent
|
|
78
|
+
Requires-Dist: gunicorn; extra == "prod"
|
|
79
|
+
Requires-Dist: gevent; extra == "prod"
|
|
80
|
+
Provides-Extra: dev
|
|
81
|
+
Requires-Dist: wheel; extra == "dev"
|
|
88
82
|
Provides-Extra: test
|
|
89
|
-
Requires-Dist: fakeredis
|
|
90
|
-
Requires-Dist: mixer
|
|
91
|
-
Requires-Dist: pytest-cov
|
|
92
|
-
Requires-Dist: pytest
|
|
83
|
+
Requires-Dist: fakeredis==2.26.1; extra == "test"
|
|
84
|
+
Requires-Dist: mixer==7.2.2; extra == "test"
|
|
85
|
+
Requires-Dist: pytest-cov==6.0.0; extra == "test"
|
|
86
|
+
Requires-Dist: pytest==8.3.3; extra == "test"
|
|
87
|
+
Provides-Extra: monitoring
|
|
88
|
+
Requires-Dist: prometheus-flask-exporter==0.23.1; extra == "monitoring"
|
|
89
|
+
Requires-Dist: pygelf==0.4.2; extra == "monitoring"
|
|
90
|
+
Requires-Dist: sentry-sdk==2.18.0; extra == "monitoring"
|
|
91
|
+
Provides-Extra: lint
|
|
92
|
+
Requires-Dist: autoflake==2.3.1; extra == "lint"
|
|
93
|
+
Requires-Dist: black==24.10.0; extra == "lint"
|
|
94
|
+
Requires-Dist: pre-commit==4.0.1; extra == "lint"
|
|
93
95
|
|
|
94
96
|
.. figure:: https://zou.cg-wire.com/kitsu.png
|
|
95
97
|
:alt: Kitsu Logo
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
zou/__init__.py,sha256=
|
|
1
|
+
zou/__init__.py,sha256=9ow4RhQqppFk0sEchvQsvjJS9_8C_bNaG6U7Cf2HQE4,24
|
|
2
2
|
zou/cli.py,sha256=E7rinikQMEAoSzyV4VH2IrTR4HRDBgqHAcYswEfyFnU,18893
|
|
3
3
|
zou/debug.py,sha256=1fawPbkD4wn0Y9Gk0BiBFSa-CQe5agFi8R9uJYl2Uyk,520
|
|
4
4
|
zou/event_stream.py,sha256=_tue9Ry3aqCniZpKGhWJaY1Eo_fd6zOAfnzPvh_mJzU,8489
|
|
@@ -159,7 +159,7 @@ zou/app/models/notification.py,sha256=1ODOymGPeB4oxgX_3WhOgIL_Lsz-JR7miDkBS6W8t_
|
|
|
159
159
|
zou/app/models/organisation.py,sha256=jVDsS3C3ani0NYeKKMnsnkGzeeQor9jMU1qkHxkSa9c,1938
|
|
160
160
|
zou/app/models/output_file.py,sha256=hyLGrpsgrk0aisDXppRQrB7ItCwyuyw-X0ZwVAHabsA,2569
|
|
161
161
|
zou/app/models/output_type.py,sha256=us_lCUCEvuP4vi_XmmOcEl1J2MtZhMX5ZheBqEFCgWA,381
|
|
162
|
-
zou/app/models/person.py,sha256
|
|
162
|
+
zou/app/models/person.py,sha256=E6Q3KyE4QDon41Fz9sJSCYdR6obqWHtvv2jBOYYFGik,7500
|
|
163
163
|
zou/app/models/playlist.py,sha256=YGgAk84u0_fdIEY02Dal4kfk8APVZvWFwWYV74qvrio,1503
|
|
164
164
|
zou/app/models/preview_background_file.py,sha256=j8LgRmY7INnlB07hFwwB-8ssQrRC8vsb8VcpsTbt6tA,559
|
|
165
165
|
zou/app/models/preview_file.py,sha256=Ur45Wau2X3qyKULh04EUcMbnBmaQc8y4IMs5NgELiAQ,3134
|
|
@@ -213,7 +213,7 @@ zou/app/services/sync_service.py,sha256=EunfXlma_IIb7011A_xLQLVQGAi-MteKgm2Y2NAx
|
|
|
213
213
|
zou/app/services/tasks_service.py,sha256=IoogHBoZhbJegnl5SYGgOaBp2YVqrL22Gccjfp8dPn8,69335
|
|
214
214
|
zou/app/services/telemetry_services.py,sha256=xQm1h1t_JxSFW59zQGf4NuNdUi1UfMa_6pQ-ytRbmGA,1029
|
|
215
215
|
zou/app/services/time_spents_service.py,sha256=H9X-60s6oqtY9rtU-K2jKwUSljfkdGlf_9wMr3iVfIA,15158
|
|
216
|
-
zou/app/services/user_service.py,sha256=
|
|
216
|
+
zou/app/services/user_service.py,sha256=sIl9PE2hX2EfKiRV8YqL3ZrHNulzeL9y960LF4BuZbs,50528
|
|
217
217
|
zou/app/stores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
218
218
|
zou/app/stores/auth_tokens_store.py,sha256=-qOJPybLHvnMOq3PWk073OW9HJwOHGhFLZeOIlX1UVw,1290
|
|
219
219
|
zou/app/stores/file_store.py,sha256=yLQDM6mNbj9oe0vsWdBqun7D8Dw-eSjD1yHCCftX0OI,4045
|
|
@@ -412,10 +412,10 @@ zou/remote/config_payload.py,sha256=7b1xTZ0AHP1Y1KVWozQ4sNMS34s7fg3WO6nNbdDZBDc,
|
|
|
412
412
|
zou/remote/normalize_movie.py,sha256=zNfEY3N1UbAHZfddGONTg2Sff3ieLVWd4dfZa1dpnes,2164
|
|
413
413
|
zou/remote/playlist.py,sha256=AsDo0bgYhDcd6DfNRV6r6Jj3URWwavE2ZN3VkKRPbLU,3293
|
|
414
414
|
zou/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
415
|
-
zou/utils/movie.py,sha256=
|
|
416
|
-
zou-0.19.
|
|
417
|
-
zou-0.19.
|
|
418
|
-
zou-0.19.
|
|
419
|
-
zou-0.19.
|
|
420
|
-
zou-0.19.
|
|
421
|
-
zou-0.19.
|
|
415
|
+
zou/utils/movie.py,sha256=d67fIL9dVBKt-E_qCGXRbNNdbJaJR5sHvZeX3hf8ldE,16559
|
|
416
|
+
zou-0.19.67.dist-info/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
|
|
417
|
+
zou-0.19.67.dist-info/METADATA,sha256=bivve99aGbkPjCKRe4i2wiECYMwGnRjFiRWd0V_3nfI,6710
|
|
418
|
+
zou-0.19.67.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
419
|
+
zou-0.19.67.dist-info/entry_points.txt,sha256=PelQoIx3qhQ_Tmne7wrLY-1m2izuzgpwokoURwSohy4,130
|
|
420
|
+
zou-0.19.67.dist-info/top_level.txt,sha256=4S7G_jk4MzpToeDItHGjPhHx_fRdX52zJZWTD4SL54g,4
|
|
421
|
+
zou-0.19.67.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|