libreflow 0.0.0__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.
Files changed (323) hide show
  1. libreflow/__init__.py +20 -0
  2. libreflow/_version.py +24 -0
  3. libreflow/baseflow/__init__.py +1017 -0
  4. libreflow/baseflow/asset.py +238 -0
  5. libreflow/baseflow/departments.py +238 -0
  6. libreflow/baseflow/dependency.py +1082 -0
  7. libreflow/baseflow/entity_manager.py +93 -0
  8. libreflow/baseflow/file.py +6536 -0
  9. libreflow/baseflow/filesystem/file.py +35 -0
  10. libreflow/baseflow/filesystem/filesequence.py +41 -0
  11. libreflow/baseflow/filesystem/fileset.py +40 -0
  12. libreflow/baseflow/filesystem/filesystemobject.py +63 -0
  13. libreflow/baseflow/film.py +841 -0
  14. libreflow/baseflow/kitsu.py +1194 -0
  15. libreflow/baseflow/lib.py +214 -0
  16. libreflow/baseflow/maputils.py +188 -0
  17. libreflow/baseflow/mytasks.py +615 -0
  18. libreflow/baseflow/runactions.py +54 -0
  19. libreflow/baseflow/runners.py +1264 -0
  20. libreflow/baseflow/search.py +505 -0
  21. libreflow/baseflow/shot.py +126 -0
  22. libreflow/baseflow/site.py +1867 -0
  23. libreflow/baseflow/task.py +634 -0
  24. libreflow/baseflow/task_manager.py +2252 -0
  25. libreflow/baseflow/ui/__init__.py +0 -0
  26. libreflow/baseflow/ui/controller.py +978 -0
  27. libreflow/baseflow/ui/delegate.py +356 -0
  28. libreflow/baseflow/ui/file.py +524 -0
  29. libreflow/baseflow/ui/file_cell.py +8 -0
  30. libreflow/baseflow/ui/file_history.py +23 -0
  31. libreflow/baseflow/ui/file_list.py +375 -0
  32. libreflow/baseflow/ui/homepage.py +539 -0
  33. libreflow/baseflow/ui/importfiles/__init__.py +1 -0
  34. libreflow/baseflow/ui/importfiles/custom_widget.py +245 -0
  35. libreflow/baseflow/ui/importfiles/files_list.py +359 -0
  36. libreflow/baseflow/ui/importfiles/target_wizard.py +577 -0
  37. libreflow/baseflow/ui/job_queue.py +933 -0
  38. libreflow/baseflow/ui/mytasks/__init__.py +0 -0
  39. libreflow/baseflow/ui/mytasks/components.py +527 -0
  40. libreflow/baseflow/ui/mytasks/edit_dialog.py +370 -0
  41. libreflow/baseflow/ui/mytasks/file_list.py +189 -0
  42. libreflow/baseflow/ui/mytasks/mytasks.py +1426 -0
  43. libreflow/baseflow/ui/mytasks/qmodel.py +33 -0
  44. libreflow/baseflow/ui/qmodel.py +143 -0
  45. libreflow/baseflow/ui/task.py +542 -0
  46. libreflow/baseflow/users.py +680 -0
  47. libreflow/cli.py +0 -0
  48. libreflow/custom_home/__init__.py +258 -0
  49. libreflow/custom_home/ui.py +138 -0
  50. libreflow/custom_home/wizard.py +4759 -0
  51. libreflow/examples/__init__.py +0 -0
  52. libreflow/examples/demoflow/__init__.py +19 -0
  53. libreflow/examples/demoflow/film.py +48 -0
  54. libreflow/examples/demoflow/lib.py +121 -0
  55. libreflow/examples/majorque/__init__.py +56 -0
  56. libreflow/examples/majorque/departments.py +104 -0
  57. libreflow/examples/majorque/file.py +305 -0
  58. libreflow/examples/majorque/film.py +150 -0
  59. libreflow/examples/majorque/kitsu.py +114 -0
  60. libreflow/examples/majorque/lib.py +78 -0
  61. libreflow/examples/majorque/runners.py +41 -0
  62. libreflow/examples/majorque/users.py +9 -0
  63. libreflow/gui.py +105 -0
  64. libreflow/index.py +112 -0
  65. libreflow/jobs_cleaner.py +174 -0
  66. libreflow/jobs_node.py +46 -0
  67. libreflow/resources/__init__.py +0 -0
  68. libreflow/resources/file_templates/__init__.py +6 -0
  69. libreflow/resources/file_templates/template.abc +0 -0
  70. libreflow/resources/file_templates/template.aep +0 -0
  71. libreflow/resources/file_templates/template.ai +1903 -7
  72. libreflow/resources/file_templates/template.blend +0 -0
  73. libreflow/resources/file_templates/template.fbx +0 -0
  74. libreflow/resources/file_templates/template.fla +0 -0
  75. libreflow/resources/file_templates/template.jpg +0 -0
  76. libreflow/resources/file_templates/template.json +3 -0
  77. libreflow/resources/file_templates/template.jsx +0 -0
  78. libreflow/resources/file_templates/template.kra +0 -0
  79. libreflow/resources/file_templates/template.mov +0 -0
  80. libreflow/resources/file_templates/template.mp4 +0 -0
  81. libreflow/resources/file_templates/template.nk +59 -0
  82. libreflow/resources/file_templates/template.obj +2068 -0
  83. libreflow/resources/file_templates/template.png +0 -0
  84. libreflow/resources/file_templates/template.prproj +0 -0
  85. libreflow/resources/file_templates/template.psb +0 -0
  86. libreflow/resources/file_templates/template.psd +0 -0
  87. libreflow/resources/file_templates/template.tvpp +0 -0
  88. libreflow/resources/file_templates/template.txt +0 -0
  89. libreflow/resources/file_templates/template.usd +0 -0
  90. libreflow/resources/file_templates/template.usda +26 -0
  91. libreflow/resources/file_templates/template.usdz +0 -0
  92. libreflow/resources/file_templates/template.wav +0 -0
  93. libreflow/resources/file_templates/template.xpix +0 -0
  94. libreflow/resources/file_templates/template_2D.blend +0 -0
  95. libreflow/resources/fonts/SpaceGrotesk-Bold.ttf +0 -0
  96. libreflow/resources/fonts/SpaceGrotesk-Regular.ttf +0 -0
  97. libreflow/resources/fonts/__init__.py +6 -0
  98. libreflow/resources/icons/__init__.py +0 -0
  99. libreflow/resources/icons/applications/__init__.py +6 -0
  100. libreflow/resources/icons/applications/rv.png +0 -0
  101. libreflow/resources/icons/flow/__init__.py +6 -0
  102. libreflow/resources/icons/flow/alembic.png +0 -0
  103. libreflow/resources/icons/flow/explorer.png +0 -0
  104. libreflow/resources/icons/flow/photoshop.png +0 -0
  105. libreflow/resources/icons/flow/quicktime.png +0 -0
  106. libreflow/resources/icons/gui/__init__.py +6 -0
  107. libreflow/resources/icons/gui/add-file.png +0 -0
  108. libreflow/resources/icons/gui/add-folder.png +0 -0
  109. libreflow/resources/icons/gui/arrow-down.png +0 -0
  110. libreflow/resources/icons/gui/arrow-right.png +0 -0
  111. libreflow/resources/icons/gui/check-box-empty-dark.png +0 -0
  112. libreflow/resources/icons/gui/close.png +0 -0
  113. libreflow/resources/icons/gui/duplicate.png +0 -0
  114. libreflow/resources/icons/gui/location-worldwide-disabled.png +0 -0
  115. libreflow/resources/icons/gui/location-worldwide.png +0 -0
  116. libreflow/resources/icons/gui/maximize.png +0 -0
  117. libreflow/resources/icons/gui/menu.png +0 -0
  118. libreflow/resources/icons/gui/menu_dots.png +0 -0
  119. libreflow/resources/icons/gui/minimize.png +0 -0
  120. libreflow/resources/icons/gui/mytasks-disabled.png +0 -0
  121. libreflow/resources/icons/gui/mytasks.png +0 -0
  122. libreflow/resources/icons/gui/nav-arrow-left-disabled.png +0 -0
  123. libreflow/resources/icons/gui/nav-arrow-left.png +0 -0
  124. libreflow/resources/icons/gui/nav-arrow-refresh-disabled.png +0 -0
  125. libreflow/resources/icons/gui/nav-arrow-refresh.png +0 -0
  126. libreflow/resources/icons/gui/nav-arrow-right-disabled.png +0 -0
  127. libreflow/resources/icons/gui/nav-arrow-right.png +0 -0
  128. libreflow/resources/icons/gui/ref-broken.png +0 -0
  129. libreflow/resources/icons/gui/ref.png +0 -0
  130. libreflow/resources/icons/gui/refresh.png +0 -0
  131. libreflow/resources/icons/gui/send.png +0 -0
  132. libreflow/resources/icons/gui/send2.png +0 -0
  133. libreflow/resources/icons/history/__init__.py +2 -0
  134. libreflow/resources/icons/history/check.png +0 -0
  135. libreflow/resources/icons/history/done.png +0 -0
  136. libreflow/resources/icons/history/init.png +0 -0
  137. libreflow/resources/icons/history/on_kitsu.png +0 -0
  138. libreflow/resources/icons/history/retake.png +0 -0
  139. libreflow/resources/icons/history/wfa.png +0 -0
  140. libreflow/resources/icons/history/wip.png +0 -0
  141. libreflow/resources/icons/history/working_copy.png +0 -0
  142. libreflow/resources/icons/history/working_copy_mine.png +0 -0
  143. libreflow/resources/icons/libreflow/3d-object.png +0 -0
  144. libreflow/resources/icons/libreflow/__init__.py +6 -0
  145. libreflow/resources/icons/libreflow/active_site.png +0 -0
  146. libreflow/resources/icons/libreflow/afterfx.png +0 -0
  147. libreflow/resources/icons/libreflow/animate.svg +11 -0
  148. libreflow/resources/icons/libreflow/archive.png +0 -0
  149. libreflow/resources/icons/libreflow/available.png +0 -0
  150. libreflow/resources/icons/libreflow/blank.png +0 -0
  151. libreflow/resources/icons/libreflow/blender.png +0 -0
  152. libreflow/resources/icons/libreflow/checked-symbol-colored.png +0 -0
  153. libreflow/resources/icons/libreflow/checked-symbol-owner.png +0 -0
  154. libreflow/resources/icons/libreflow/checked-symbol.png +0 -0
  155. libreflow/resources/icons/libreflow/circle-shape-outline.png +0 -0
  156. libreflow/resources/icons/libreflow/circle-shape-right-eye-outline.png +0 -0
  157. libreflow/resources/icons/libreflow/circular-shape-right-eye-silhouette.png +0 -0
  158. libreflow/resources/icons/libreflow/circular-shape-silhouette.png +0 -0
  159. libreflow/resources/icons/libreflow/clean.png +0 -0
  160. libreflow/resources/icons/libreflow/clipboard.png +0 -0
  161. libreflow/resources/icons/libreflow/compare-previews.png +0 -0
  162. libreflow/resources/icons/libreflow/cross-mark-on-a-black-circle-background-colored.png +0 -0
  163. libreflow/resources/icons/libreflow/custom_home_star.png +0 -0
  164. libreflow/resources/icons/libreflow/delete.png +0 -0
  165. libreflow/resources/icons/libreflow/dependencies.png +0 -0
  166. libreflow/resources/icons/libreflow/download.png +0 -0
  167. libreflow/resources/icons/libreflow/downloadable.png +0 -0
  168. libreflow/resources/icons/libreflow/duplicate.png +0 -0
  169. libreflow/resources/icons/libreflow/edit-blank.png +0 -0
  170. libreflow/resources/icons/libreflow/edit-lock-green.png +0 -0
  171. libreflow/resources/icons/libreflow/edit-lock-red.png +0 -0
  172. libreflow/resources/icons/libreflow/error.png +0 -0
  173. libreflow/resources/icons/libreflow/exchange.png +0 -0
  174. libreflow/resources/icons/libreflow/exclamation-sign-colored.png +0 -0
  175. libreflow/resources/icons/libreflow/fbx.png +0 -0
  176. libreflow/resources/icons/libreflow/firefox.png +0 -0
  177. libreflow/resources/icons/libreflow/hide.png +0 -0
  178. libreflow/resources/icons/libreflow/history.png +0 -0
  179. libreflow/resources/icons/libreflow/illustrator.png +0 -0
  180. libreflow/resources/icons/libreflow/json.png +0 -0
  181. libreflow/resources/icons/libreflow/jsx.png +0 -0
  182. libreflow/resources/icons/libreflow/kitsu.svg +1 -0
  183. libreflow/resources/icons/libreflow/kitsu_status_done.png +0 -0
  184. libreflow/resources/icons/libreflow/kitsu_status_oklodv.png +0 -0
  185. libreflow/resources/icons/libreflow/kitsu_status_omit.png +0 -0
  186. libreflow/resources/icons/libreflow/kitsu_status_retake.png +0 -0
  187. libreflow/resources/icons/libreflow/kitsu_status_todo.png +0 -0
  188. libreflow/resources/icons/libreflow/kitsu_status_wfa.png +0 -0
  189. libreflow/resources/icons/libreflow/kitsu_status_wip.png +0 -0
  190. libreflow/resources/icons/libreflow/krita.png +0 -0
  191. libreflow/resources/icons/libreflow/lock-green.png +0 -0
  192. libreflow/resources/icons/libreflow/lock-red.png +0 -0
  193. libreflow/resources/icons/libreflow/log_out.png +0 -0
  194. libreflow/resources/icons/libreflow/multi-share-option.png +0 -0
  195. libreflow/resources/icons/libreflow/nuke.png +0 -0
  196. libreflow/resources/icons/libreflow/origin-site.png +0 -0
  197. libreflow/resources/icons/libreflow/padlock.png +0 -0
  198. libreflow/resources/icons/libreflow/padlock_green.png +0 -0
  199. libreflow/resources/icons/libreflow/padlock_red.png +0 -0
  200. libreflow/resources/icons/libreflow/premiere-pro.png +0 -0
  201. libreflow/resources/icons/libreflow/publish-ae.png +0 -0
  202. libreflow/resources/icons/libreflow/publish-blender.png +0 -0
  203. libreflow/resources/icons/libreflow/publish-ps.png +0 -0
  204. libreflow/resources/icons/libreflow/publish.png +0 -0
  205. libreflow/resources/icons/libreflow/quicktime.png +0 -0
  206. libreflow/resources/icons/libreflow/refresh.png +0 -0
  207. libreflow/resources/icons/libreflow/request.png +0 -0
  208. libreflow/resources/icons/libreflow/requestable.png +0 -0
  209. libreflow/resources/icons/libreflow/run.png +0 -0
  210. libreflow/resources/icons/libreflow/share-option.png +0 -0
  211. libreflow/resources/icons/libreflow/show.png +0 -0
  212. libreflow/resources/icons/libreflow/stop.png +0 -0
  213. libreflow/resources/icons/libreflow/sync.png +0 -0
  214. libreflow/resources/icons/libreflow/sync_arrow.png +0 -0
  215. libreflow/resources/icons/libreflow/time_format.png +0 -0
  216. libreflow/resources/icons/libreflow/tvpaint.png +0 -0
  217. libreflow/resources/icons/libreflow/unavailable.png +0 -0
  218. libreflow/resources/icons/libreflow/upload.png +0 -0
  219. libreflow/resources/icons/libreflow/vscodium.png +0 -0
  220. libreflow/resources/icons/libreflow/waiting.png +0 -0
  221. libreflow/resources/icons/libreflow/warning.png +0 -0
  222. libreflow/resources/icons/libreflow/watch.png +0 -0
  223. libreflow/resources/icons/status/__init__.py +2 -0
  224. libreflow/resources/icons/status/done.png +0 -0
  225. libreflow/resources/icons/status/err.png +0 -0
  226. libreflow/resources/icons/status/inv.png +0 -0
  227. libreflow/resources/icons/status/none.png +0 -0
  228. libreflow/resources/icons/status/nys.png +0 -0
  229. libreflow/resources/icons/status/oop.png +0 -0
  230. libreflow/resources/icons/status/rtk.png +0 -0
  231. libreflow/resources/icons/status/rvw.png +0 -0
  232. libreflow/resources/icons/status/wait.png +0 -0
  233. libreflow/resources/icons/status/warn.png +0 -0
  234. libreflow/resources/icons/status/wip.png +0 -0
  235. libreflow/resources/icons/tasks/__init__.py +6 -0
  236. libreflow/resources/icons/tasks/animation.svg +16 -0
  237. libreflow/resources/icons/tasks/clean.svg +10 -0
  238. libreflow/resources/icons/tasks/colo.svg +20 -0
  239. libreflow/resources/icons/tasks/compositing.svg +23 -0
  240. libreflow/resources/icons/tasks/design.svg +13 -0
  241. libreflow/resources/icons/tasks/layout.svg +16 -0
  242. libreflow/resources/icons/tasks/lighting.svg +10 -0
  243. libreflow/resources/icons/tasks/modeling.svg +14 -0
  244. libreflow/resources/icons/tasks/rigging.svg +18 -0
  245. libreflow/resources/icons/tasks/shading.svg +11 -0
  246. libreflow/resources/mark_sequence/__init__.py +0 -0
  247. libreflow/resources/mark_sequence/fields/__init__.py +5 -0
  248. libreflow/resources/mark_sequence/fields/default.json +100 -0
  249. libreflow/resources/mark_sequence/fonts/LiberationMono-Regular.ttf +0 -0
  250. libreflow/resources/mark_sequence/fonts/__init__.py +5 -0
  251. libreflow/resources/scripts/__init__.py +0 -0
  252. libreflow/resources/scripts/blender/__init__.py +5 -0
  253. libreflow/resources/scripts/blender/disable_save_keymap.py +51 -0
  254. libreflow/resources/scripts/tvpaint/__init__.py +5 -0
  255. libreflow/resources/scripts/tvpaint/save_dependencies.grg +11 -0
  256. libreflow/resources/styles/__init__.py +0 -0
  257. libreflow/resources/styles/custom_style/__init__.py +76 -0
  258. libreflow/resources/styles/custom_style/custom_style.css +599 -0
  259. libreflow/resources/styles/lfs_tech/__init__.py +76 -0
  260. libreflow/resources/styles/lfs_tech/lfs_tech_style.css +585 -0
  261. libreflow/scripts/__init__.py +0 -0
  262. libreflow/scripts/mark_sequence.py +516 -0
  263. libreflow/scripts/minio_file_downloader.py +21 -0
  264. libreflow/scripts/minio_file_uploader.py +21 -0
  265. libreflow/scripts/minio_progress.py +193 -0
  266. libreflow/scripts/session_worker.py +40 -0
  267. libreflow/session.py +32 -0
  268. libreflow/sync.py +129 -0
  269. libreflow/sync_jobs_cleaner.py +117 -0
  270. libreflow/utils/__init__.py +0 -0
  271. libreflow/utils/b3d.py +12 -0
  272. libreflow/utils/flow/__init__.py +3 -0
  273. libreflow/utils/flow/action_values.py +504 -0
  274. libreflow/utils/flow/context_values.py +76 -0
  275. libreflow/utils/flow/entities.py +173 -0
  276. libreflow/utils/flow/file_processing.py +67 -0
  277. libreflow/utils/flow/import_files.py +585 -0
  278. libreflow/utils/flow/process_files.py +166 -0
  279. libreflow/utils/flow/values.py +77 -0
  280. libreflow/utils/kabaret/__init__.py +1 -0
  281. libreflow/utils/kabaret/flow_contextual_dict/__init__.py +0 -0
  282. libreflow/utils/kabaret/flow_contextual_dict/view/__init__.py +49 -0
  283. libreflow/utils/kabaret/flow_entities/__init__.py +0 -0
  284. libreflow/utils/kabaret/flow_entities/entities.py +276 -0
  285. libreflow/utils/kabaret/jobs/__init__.py +2 -0
  286. libreflow/utils/kabaret/jobs/demo_flow.py +113 -0
  287. libreflow/utils/kabaret/jobs/jobs_actor.py +961 -0
  288. libreflow/utils/kabaret/jobs/jobs_flow.py +230 -0
  289. libreflow/utils/kabaret/jobs/jobs_flow_worker.py +56 -0
  290. libreflow/utils/kabaret/jobs/jobs_node.py +138 -0
  291. libreflow/utils/kabaret/jobs/jobs_view.py +379 -0
  292. libreflow/utils/kabaret/script_view/__init__.py +0 -0
  293. libreflow/utils/kabaret/script_view/script_view.py +36 -0
  294. libreflow/utils/kabaret/subprocess_manager/__init__.py +0 -0
  295. libreflow/utils/kabaret/subprocess_manager/views/__init__.py +0 -0
  296. libreflow/utils/kabaret/subprocess_manager/views/subprocess_view.py +21 -0
  297. libreflow/utils/kabaret/ui/__init__.py +0 -0
  298. libreflow/utils/kabaret/ui/flow_view.py +618 -0
  299. libreflow/utils/kabaret/ui/main_window.py +176 -0
  300. libreflow/utils/kabaret/ui/navigation_control.py +598 -0
  301. libreflow/utils/kabaret/ui/widget_view.py +56 -0
  302. libreflow/utils/os.py +80 -0
  303. libreflow/utils/search/__init__.py +0 -0
  304. libreflow/utils/search/actor.py +623 -0
  305. libreflow/utils/search/data/__init__.py +0 -0
  306. libreflow/utils/search/data/icons/__init__.py +5 -0
  307. libreflow/utils/search/data/icons/export.png +0 -0
  308. libreflow/utils/search/data/icons/filter-disabled.png +0 -0
  309. libreflow/utils/search/data/icons/filter-enabled.png +0 -0
  310. libreflow/utils/search/data/icons/import.png +0 -0
  311. libreflow/utils/search/data/icons/magn-glass.png +0 -0
  312. libreflow/utils/search/data/icons/minus-button.png +0 -0
  313. libreflow/utils/search/data/icons/plus-button.png +0 -0
  314. libreflow/utils/search/data/icons/remove.png +0 -0
  315. libreflow/utils/search/data/icons/run-button.png +0 -0
  316. libreflow/utils/search/view.py +399 -0
  317. libreflow/utils/ui/__init__.py +0 -0
  318. libreflow/utils/ui/file_processing.py +593 -0
  319. libreflow-0.0.0.dist-info/METADATA +75 -0
  320. libreflow-0.0.0.dist-info/RECORD +323 -0
  321. libreflow-0.0.0.dist-info/WHEEL +4 -0
  322. libreflow-0.0.0.dist-info/licenses/AUTHORS +15 -0
  323. libreflow-0.0.0.dist-info/licenses/LICENSE +22 -0
libreflow/__init__.py ADDED
@@ -0,0 +1,20 @@
1
+ # Copyright (C) 2016-2020 Les Fées Spéciales
2
+ # voeu@les-fees-speciales.coop
3
+ #
4
+ # This program is free software; you can redistribute it and/or modify
5
+ # it under the terms of the GNU General Public License as published by
6
+ # the Free Software Foundation; either version 2 of the License, or
7
+ # (at your option) any later version.
8
+ #
9
+ # This program is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ # GNU General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU General Public License along
15
+ # with this program; if not, write to the Free Software Foundation, Inc.,
16
+ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
+
18
+ __path__ = __import__("pkgutil").extend_path(__path__, __name__)
19
+
20
+ from ._version import __version__
libreflow/_version.py ADDED
@@ -0,0 +1,24 @@
1
+ # file generated by vcs-versioning
2
+ # don't change, don't track in version control
3
+ from __future__ import annotations
4
+
5
+ __all__ = [
6
+ "__version__",
7
+ "__version_tuple__",
8
+ "version",
9
+ "version_tuple",
10
+ "__commit_id__",
11
+ "commit_id",
12
+ ]
13
+
14
+ version: str
15
+ __version__: str
16
+ __version_tuple__: tuple[int | str, ...]
17
+ version_tuple: tuple[int | str, ...]
18
+ commit_id: str | None
19
+ __commit_id__: str | None
20
+
21
+ __version__ = version = '0.0.0'
22
+ __version_tuple__ = version_tuple = (0, 0, 0)
23
+
24
+ __commit_id__ = commit_id = None