scitex 2.10.3__py3-none-any.whl → 2.11.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.
- scitex/__init__.py +1 -4
- scitex/__version__.py +1 -1
- scitex/_install_guide.py +14 -2
- scitex/bridge/_figrecipe.py +1 -1
- scitex/bridge/_helpers.py +1 -1
- scitex/bridge/_plt_vis.py +1 -1
- scitex/bridge/_stats_plt.py +1 -1
- scitex/bridge/_stats_vis.py +2 -2
- scitex/{fig → canvas}/__init__.py +84 -96
- scitex/{fig → canvas}/backend/_parser.py +1 -1
- scitex/{fig → canvas}/canvas.py +13 -14
- scitex/{fts/_fig/_editor → canvas/editor}/_defaults.py +2 -2
- scitex/{fig → canvas}/editor/edit/__init__.py +11 -14
- scitex/{fig → canvas}/editor/edit/bundle_resolver.py +56 -48
- scitex/{fig → canvas}/editor/edit/editor_launcher.py +79 -26
- scitex/{fts/_fig/_editor/_cui/_panel_loader.py → canvas/editor/edit/panel_loader.py} +8 -8
- scitex/{fts/_fig/_editor/_gui/_flask_editor → canvas/editor/flask_editor}/_bbox.py +2 -1
- scitex/{fts/_fig/_editor/_gui/_flask_editor → canvas/editor/flask_editor}/_core.py +84 -84
- scitex/{fts/_fig/_editor/_gui/_flask_editor → canvas/editor/flask_editor}/_renderer.py +7 -6
- scitex/{fts/_fig/_editor/_gui/_flask_editor → canvas/editor/flask_editor}/static/css/features/canvas.css +2 -2
- scitex/{fig → canvas}/editor/flask_editor/static/css/features/panel-grid.css +1 -1
- scitex/{fig → canvas}/editor/flask_editor/static/js/core/api.js +3 -4
- scitex/{fig → canvas}/editor/flask_editor/static/js/editor/preview.js +5 -5
- scitex/{fig → canvas}/editor/flask_editor/templates/_html.py +3 -3
- scitex/{fig → canvas}/editor/flask_editor/templates/_scripts.py +10 -10
- scitex/{fig → canvas}/editor/flask_editor/templates/_styles.py +3 -3
- scitex/{fig → canvas}/io/__init__.py +32 -38
- scitex/{fig → canvas}/io/_bundle.py +217 -154
- scitex/{fig → canvas}/io/_canvas.py +1 -1
- scitex/{fig → canvas}/io/_data.py +1 -1
- scitex/{fig → canvas}/io/_export.py +1 -1
- scitex/{fig → canvas}/io/_load.py +1 -1
- scitex/{fig → canvas}/io/_panel.py +1 -1
- scitex/{fig → canvas}/io/_save.py +1 -1
- scitex/{fig → canvas}/model/__init__.py +1 -1
- scitex/{fig → canvas}/model/_annotations.py +1 -1
- scitex/{fig → canvas}/model/_axes.py +1 -1
- scitex/{fig → canvas}/model/_figure.py +1 -1
- scitex/{fig → canvas}/model/_guides.py +1 -1
- scitex/{fig → canvas}/model/_plot.py +1 -1
- scitex/{fig → canvas}/model/_styles.py +1 -1
- scitex/{fig → canvas}/utils/__init__.py +1 -1
- scitex/cli/convert.py +10 -6
- scitex/diagram/README.md +7 -7
- scitex/io/__init__.py +7 -19
- scitex/io/_load.py +15 -19
- scitex/io/_load_modules/_canvas.py +2 -2
- scitex/io/_load_modules/_con.py +5 -5
- scitex/io/_load_modules/_eeg.py +16 -12
- scitex/io/_save.py +11 -16
- scitex/io/_save_modules/__init__.py +6 -10
- scitex/io/_save_modules/_canvas.py +3 -3
- scitex/io/_save_modules/_plot_bundle.py +112 -0
- scitex/io/_save_modules/{_pltz_stx.py → _plot_scitex.py} +7 -7
- scitex/io/_save_modules/_stx_bundle.py +16 -16
- scitex/io/bundle/README.md +89 -80
- scitex/{fts/_bundle/_FTS.py → io/bundle/_Bundle.py} +197 -95
- scitex/io/bundle/__init__.py +67 -35
- scitex/{fts/_bundle → io/bundle}/_children.py +32 -40
- scitex/io/bundle/_core.py +184 -97
- scitex/{fts/_bundle/_dataclasses/_Node.py → io/bundle/_dataclasses/_Spec.py} +29 -23
- scitex/{fts/_bundle/_dataclasses/_NodeRefs.py → io/bundle/_dataclasses/_SpecRefs.py} +6 -6
- scitex/{fts/_bundle → io/bundle}/_dataclasses/__init__.py +4 -4
- scitex/{fts/_bundle → io/bundle}/_loader.py +19 -19
- scitex/io/bundle/_manifest.py +99 -0
- scitex/{fts/_bundle → io/bundle}/_mpl_helpers.py +119 -28
- scitex/io/bundle/_nested.py +113 -100
- scitex/{fts/_bundle → io/bundle}/_saver.py +13 -14
- scitex/{fts/_bundle → io/bundle}/_storage.py +3 -3
- scitex/io/bundle/_types.py +41 -16
- scitex/{fts/_bundle → io/bundle}/_validation.py +20 -18
- scitex/io/bundle/_zip.py +21 -31
- scitex/{fts/_kinds → io/bundle/kinds}/_plot/_backend/_parser.py +1 -1
- scitex/{fts/_kinds → io/bundle/kinds}/_plot/_models/_Annotations.py +1 -1
- scitex/{fts/_kinds → io/bundle/kinds}/_plot/_models/_Axes.py +1 -1
- scitex/{fts/_kinds → io/bundle/kinds}/_plot/_models/_Figure.py +1 -1
- scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/_Guides.py +1 -1
- scitex/{fts/_kinds → io/bundle/kinds}/_plot/_models/_Plot.py +1 -1
- scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/_Styles.py +1 -1
- scitex/{fts/_kinds → io/bundle/kinds}/_plot/_utils/_plot_layout.py +1 -1
- scitex/{fts/_kinds → io/bundle/kinds}/_table/_latex/__init__.py +1 -1
- scitex/{fts/_kinds → io/bundle/kinds}/_table/_latex/_editor/_app.py +1 -1
- scitex/{fts/_tables → io/bundle/kinds/_table}/_latex/_export.py +1 -1
- scitex/{fts/_kinds → io/bundle/kinds}/_table/_latex/_figure_exporter.py +1 -1
- scitex/{fts/_kinds → io/bundle/kinds}/_table/_latex/_table_exporter.py +1 -1
- scitex/io/bundle/schemas/__init__.py +30 -0
- scitex/parallel/_run.py +5 -4
- scitex/path/_find.py +60 -83
- scitex/path/_get_module_path.py +23 -21
- scitex/path/_get_spath.py +6 -27
- scitex/path/_getsize.py +23 -9
- scitex/path/_increment_version.py +31 -38
- scitex/path/_mk_spath.py +26 -29
- scitex/path/_path.py +5 -12
- scitex/path/_split.py +27 -15
- scitex/path/_this_path.py +23 -9
- scitex/plt/_subplots/_AxisWrapperMixins/_MatplotlibPlotMixin/__init__.py +2 -1
- scitex/plt/_subplots/_AxisWrapperMixins/__init__.py +2 -2
- scitex/plt/gallery/_generate.py +76 -50
- scitex/plt/io/__init__.py +17 -19
- scitex/plt/io/_bundle.py +99 -52
- scitex/plt/io/_layered_bundle.py +303 -168
- scitex/plt/utils/_csv_column_naming.py +250 -118
- scitex/schema/__init__.py +69 -73
- scitex/schema/_canvas.py +1 -1
- scitex/schema/_stats.py +2 -2
- scitex/stats/__init__.py +30 -33
- scitex/stats/_schema.py +1 -1
- scitex/stats/io/__init__.py +10 -11
- scitex/stats/io/_bundle.py +16 -16
- {scitex-2.10.3.dist-info → scitex-2.11.0.dist-info}/METADATA +190 -73
- {scitex-2.10.3.dist-info → scitex-2.11.0.dist-info}/RECORD +237 -360
- scitex/fig/editor/_defaults.py +0 -300
- scitex/fig/editor/edit/panel_loader.py +0 -232
- scitex/fig/editor/flask_editor/_bbox.py +0 -1299
- scitex/fig/editor/flask_editor/_core.py +0 -1429
- scitex/fig/editor/flask_editor/_renderer.py +0 -813
- scitex/fig/editor/flask_editor/static/css/features/canvas.css +0 -176
- scitex/fts/README.md +0 -262
- scitex/fts/TODO.md +0 -66
- scitex/fts/__init__.py +0 -90
- scitex/fts/_bundle/README_IN_BUNDLE.md +0 -102
- scitex/fts/_bundle/__init__.py +0 -38
- scitex/fts/_bundle/_utils/__init__.py +0 -55
- scitex/fts/_bundle/_utils/_const.py +0 -26
- scitex/fts/_bundle/_utils/_errors.py +0 -73
- scitex/fts/_bundle/_utils/_generate.py +0 -21
- scitex/fts/_bundle/_utils/_types.py +0 -76
- scitex/fts/_bundle/_zipbundle.py +0 -165
- scitex/fts/_fig/__init__.py +0 -22
- scitex/fts/_fig/_backend/_parser.py +0 -188
- scitex/fts/_fig/_editor/__init__.py +0 -14
- scitex/fts/_fig/_editor/_cui/__init__.py +0 -33
- scitex/fts/_fig/_editor/_cui/_backend_detector.py +0 -39
- scitex/fts/_fig/_editor/_cui/_bundle_resolver.py +0 -366
- scitex/fts/_fig/_editor/_cui/_editor_launcher.py +0 -175
- scitex/fts/_fig/_editor/_cui/_manual_handler.py +0 -52
- scitex/fts/_fig/_editor/_cui/_path_resolver.py +0 -66
- scitex/fts/_fig/_editor/_gui/__init__.py +0 -11
- scitex/fts/_fig/_editor/_gui/_flask_editor/__init__.py +0 -20
- scitex/fts/_fig/_editor/_gui/_flask_editor/_plotter.py +0 -664
- scitex/fts/_fig/_editor/_gui/_flask_editor/_utils.py +0 -79
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/base/reset.css +0 -41
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/base/typography.css +0 -16
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/base/variables.css +0 -85
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/components/buttons.css +0 -217
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/components/context-menu.css +0 -93
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/components/dropdown.css +0 -57
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/components/forms.css +0 -112
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/components/modal.css +0 -59
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/components/sections.css +0 -212
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/features/element-inspector.css +0 -190
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/features/loading.css +0 -59
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/features/overlay.css +0 -45
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/features/panel-grid.css +0 -95
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/features/selection.css +0 -101
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/features/statistics.css +0 -138
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/index.css +0 -31
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/layout/container.css +0 -7
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/layout/controls.css +0 -56
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/layout/preview.css +0 -78
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/alignment/axis.js +0 -314
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/alignment/basic.js +0 -107
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/alignment/distribute.js +0 -54
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/canvas/canvas.js +0 -172
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/canvas/dragging.js +0 -258
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/canvas/resize.js +0 -48
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/canvas/selection.js +0 -71
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/core/api.js +0 -288
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/core/state.js +0 -143
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/core/utils.js +0 -245
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/dev/element-inspector.js +0 -992
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/editor/bbox.js +0 -339
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/editor/element-drag.js +0 -286
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/editor/overlay.js +0 -371
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/editor/preview.js +0 -293
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/main.js +0 -426
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/shortcuts/context-menu.js +0 -152
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/shortcuts/keyboard.js +0 -265
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/ui/controls.js +0 -184
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/ui/download.js +0 -57
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/ui/help.js +0 -100
- scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/ui/theme.js +0 -34
- scitex/fts/_fig/_editor/_gui/_flask_editor/templates/__init__.py +0 -124
- scitex/fts/_fig/_editor/_gui/_flask_editor/templates/_html.py +0 -851
- scitex/fts/_fig/_editor/_gui/_flask_editor/templates/_scripts.py +0 -4932
- scitex/fts/_fig/_editor/_gui/_flask_editor/templates/_styles.py +0 -1657
- scitex/fts/_fig/_editor/_gui/_flask_editor.py +0 -36
- scitex/fts/_fig/_models/_Annotations.py +0 -115
- scitex/fts/_fig/_models/_Axes.py +0 -152
- scitex/fts/_fig/_models/_Figure.py +0 -138
- scitex/fts/_fig/_models/_Plot.py +0 -123
- scitex/fts/_fig/_utils/_plot_layout.py +0 -397
- scitex/fts/_kinds/_figure/_composite.py +0 -345
- scitex/fts/_kinds/_plot/_backend/__init__.py +0 -53
- scitex/fts/_kinds/_plot/_backend/_export.py +0 -165
- scitex/fts/_kinds/_plot/_backend/_render.py +0 -538
- scitex/fts/_kinds/_plot/_dataclasses/_ChannelEncoding.py +0 -46
- scitex/fts/_kinds/_plot/_dataclasses/_Encoding.py +0 -82
- scitex/fts/_kinds/_plot/_dataclasses/_Theme.py +0 -441
- scitex/fts/_kinds/_plot/_dataclasses/_TraceEncoding.py +0 -52
- scitex/fts/_kinds/_plot/_dataclasses/__init__.py +0 -47
- scitex/fts/_kinds/_plot/_models/_Guides.py +0 -104
- scitex/fts/_kinds/_plot/_models/_Styles.py +0 -245
- scitex/fts/_kinds/_plot/_models/__init__.py +0 -80
- scitex/fts/_kinds/_plot/_models/_plot_types/__init__.py +0 -156
- scitex/fts/_kinds/_plot/_models/_plot_types/_bar.py +0 -43
- scitex/fts/_kinds/_plot/_models/_plot_types/_box.py +0 -38
- scitex/fts/_kinds/_plot/_models/_plot_types/_distribution.py +0 -36
- scitex/fts/_kinds/_plot/_models/_plot_types/_errorbar.py +0 -60
- scitex/fts/_kinds/_plot/_models/_plot_types/_histogram.py +0 -30
- scitex/fts/_kinds/_plot/_models/_plot_types/_image.py +0 -61
- scitex/fts/_kinds/_plot/_models/_plot_types/_line.py +0 -57
- scitex/fts/_kinds/_plot/_models/_plot_types/_scatter.py +0 -30
- scitex/fts/_kinds/_plot/_models/_plot_types/_seaborn.py +0 -121
- scitex/fts/_kinds/_plot/_models/_plot_types/_violin.py +0 -36
- scitex/fts/_kinds/_plot/_utils/__init__.py +0 -129
- scitex/fts/_kinds/_plot/_utils/_auto_layout.py +0 -127
- scitex/fts/_kinds/_plot/_utils/_calc_bounds.py +0 -111
- scitex/fts/_kinds/_plot/_utils/_const_sizes.py +0 -48
- scitex/fts/_kinds/_plot/_utils/_convert_coords.py +0 -77
- scitex/fts/_kinds/_plot/_utils/_get_template.py +0 -178
- scitex/fts/_kinds/_plot/_utils/_normalize.py +0 -73
- scitex/fts/_kinds/_plot/_utils/_validate.py +0 -197
- scitex/fts/_kinds/_table/_latex/_export.py +0 -279
- scitex/fts/_stats/__init__.py +0 -48
- scitex/fts/_stats/_dataclasses/_Stats.py +0 -423
- scitex/fts/_stats/_dataclasses/__init__.py +0 -48
- scitex/fts/_tables/__init__.py +0 -65
- scitex/fts/_tables/_latex/__init__.py +0 -93
- scitex/fts/_tables/_latex/_editor/__init__.py +0 -11
- scitex/fts/_tables/_latex/_editor/_app.py +0 -725
- scitex/fts/_tables/_latex/_figure_exporter.py +0 -153
- scitex/fts/_tables/_latex/_stats_formatter.py +0 -274
- scitex/fts/_tables/_latex/_table_exporter.py +0 -362
- scitex/fts/_tables/_latex/_utils.py +0 -369
- scitex/fts/_tables/_latex/_validator.py +0 -445
- scitex/io/_save_modules/_pltz_bundle.py +0 -356
- /scitex/{fig → canvas}/README.md +0 -0
- /scitex/{fig → canvas}/backend/__init__.py +0 -0
- /scitex/{fig → canvas}/backend/_export.py +0 -0
- /scitex/{fig → canvas}/backend/_render.py +0 -0
- /scitex/{fig → canvas}/docs/CANVAS_ARCHITECTURE.md +0 -0
- /scitex/{fig → canvas}/editor/__init__.py +0 -0
- /scitex/{fig → canvas}/editor/_dearpygui_editor.py +0 -0
- /scitex/{fig → canvas}/editor/_flask_editor.py +0 -0
- /scitex/{fig → canvas}/editor/_mpl_editor.py +0 -0
- /scitex/{fig → canvas}/editor/_qt_editor.py +0 -0
- /scitex/{fig → canvas}/editor/_tkinter_editor.py +0 -0
- /scitex/{fig → canvas}/editor/edit/backend_detector.py +0 -0
- /scitex/{fig → canvas}/editor/edit/manual_handler.py +0 -0
- /scitex/{fig → canvas}/editor/edit/path_resolver.py +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/__init__.py +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/_plotter.py +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/_utils.py +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/base/reset.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/base/typography.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/base/variables.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/components/buttons.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/components/context-menu.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/components/dropdown.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/components/forms.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/components/modal.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/components/sections.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/features/element-inspector.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/features/loading.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/features/overlay.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/features/selection.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/features/statistics.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/index.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/layout/container.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/layout/controls.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/css/layout/preview.css +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/alignment/axis.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/alignment/basic.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/alignment/distribute.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/canvas/canvas.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/canvas/dragging.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/canvas/resize.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/canvas/selection.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/core/state.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/core/utils.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/dev/element-inspector.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/editor/bbox.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/editor/element-drag.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/editor/overlay.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/main.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/shortcuts/context-menu.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/shortcuts/keyboard.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/ui/controls.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/ui/download.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/ui/help.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/static/js/ui/theme.js +0 -0
- /scitex/{fig → canvas}/editor/flask_editor/templates/__init__.py +0 -0
- /scitex/{fig → canvas}/io/_directory.py +0 -0
- /scitex/{fig → canvas}/model/_plot_types.py +0 -0
- /scitex/{fig → canvas}/utils/_defaults.py +0 -0
- /scitex/{fig → canvas}/utils/_validate.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_conversion/__init__.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_conversion/_bundle2dict.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_conversion/_dict2bundle.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_dataclasses/_Axes.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_dataclasses/_BBox.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_dataclasses/_ColumnDef.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_dataclasses/_DataFormat.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_dataclasses/_DataInfo.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_dataclasses/_DataSource.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_dataclasses/_SizeMM.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_extractors/__init__.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_extractors/_extract_bar.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_extractors/_extract_line.py +0 -0
- /scitex/{fts/_bundle → io/bundle}/_extractors/_extract_scatter.py +0 -0
- /scitex/{fts/_kinds → io/bundle/kinds}/__init__.py +0 -0
- /scitex/{fts/_kinds → io/bundle/kinds}/_figure/__init__.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_figure}/_composite.py +0 -0
- /scitex/{fts/_kinds → io/bundle/kinds}/_plot/__init__.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_backend/__init__.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_backend/_export.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_backend/_render.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_dataclasses/_ChannelEncoding.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_dataclasses/_Encoding.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_dataclasses/_Theme.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_dataclasses/_TraceEncoding.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_dataclasses/__init__.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/__init__.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/_plot_types/__init__.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/_plot_types/_bar.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/_plot_types/_box.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/_plot_types/_distribution.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/_plot_types/_errorbar.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/_plot_types/_histogram.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/_plot_types/_image.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/_plot_types/_line.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/_plot_types/_scatter.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/_plot_types/_seaborn.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_models/_plot_types/_violin.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_utils/__init__.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_utils/_auto_layout.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_utils/_calc_bounds.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_utils/_const_sizes.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_utils/_convert_coords.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_utils/_get_template.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_utils/_normalize.py +0 -0
- /scitex/{fts/_fig → io/bundle/kinds/_plot}/_utils/_validate.py +0 -0
- /scitex/{fts/_kinds → io/bundle/kinds}/_shape/__init__.py +0 -0
- /scitex/{fts/_kinds → io/bundle/kinds}/_stats/__init__.py +0 -0
- /scitex/{fts/_kinds → io/bundle/kinds}/_stats/_dataclasses/_Stats.py +0 -0
- /scitex/{fts/_kinds → io/bundle/kinds}/_stats/_dataclasses/__init__.py +0 -0
- /scitex/{fts/_kinds → io/bundle/kinds}/_table/__init__.py +0 -0
- /scitex/{fts/_kinds → io/bundle/kinds}/_table/_latex/_editor/__init__.py +0 -0
- /scitex/{fts/_kinds → io/bundle/kinds}/_table/_latex/_stats_formatter.py +0 -0
- /scitex/{fts/_kinds → io/bundle/kinds}/_table/_latex/_utils.py +0 -0
- /scitex/{fts/_kinds → io/bundle/kinds}/_table/_latex/_validator.py +0 -0
- /scitex/{fts/_kinds → io/bundle/kinds}/_text/__init__.py +0 -0
- /scitex/{fts/_schemas → io/bundle/schemas}/data_info.schema.json +0 -0
- /scitex/{fts/_schemas → io/bundle/schemas}/encoding.schema.json +0 -0
- /scitex/{fts/_schemas → io/bundle/schemas}/node.schema.json +0 -0
- /scitex/{fts/_schemas → io/bundle/schemas}/render_manifest.schema.json +0 -0
- /scitex/{fts/_schemas → io/bundle/schemas}/stats.schema.json +0 -0
- /scitex/{fts/_schemas → io/bundle/schemas}/theme.schema.json +0 -0
- {scitex-2.10.3.dist-info → scitex-2.11.0.dist-info}/WHEEL +0 -0
- {scitex-2.10.3.dist-info → scitex-2.11.0.dist-info}/entry_points.txt +0 -0
- {scitex-2.10.3.dist-info → scitex-2.11.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
scitex/.mcp.json,sha256=ge1NDrBZkRIxJgx_tCS9QvcEa_P_ay8AAAafraZVRP4,1259
|
|
2
|
-
scitex/__init__.py,sha256=
|
|
2
|
+
scitex/__init__.py,sha256=oGyHux3M7TVPMrNT1qV4H69clr_5H6pEO3VTDWvZmmM,6325
|
|
3
3
|
scitex/__main__.py,sha256=_7OnKtETkmRU1QhAGIUJaT2WrCdsYar0ggzgMJ-HyEI,489
|
|
4
|
-
scitex/__version__.py,sha256=
|
|
5
|
-
scitex/_install_guide.py,sha256=
|
|
4
|
+
scitex/__version__.py,sha256=6udGet8DAtrwWwTuZXin4--WlLylPvvsq_QDno9Nfy0,377
|
|
5
|
+
scitex/_install_guide.py,sha256=We3KbS4JZI6t4K-uttzx6ZCAS0B2br-4LHyXpFxxR4s,9436
|
|
6
6
|
scitex/_optional_deps.py,sha256=WUTWY4hq6dDEm4_Hhw8c1u2mTx6RuonLKETLHQVc1ps,9210
|
|
7
7
|
scitex/errors.py,sha256=Pxk8TKpGRk_QBFVB46H7k1Uxetja0OEdYjJjV_lrxRM,2874
|
|
8
8
|
scitex/units.py,sha256=lm2SH4PGXz-22tjUoBQhvKJDKmPD01ykSFWoCaFC384,10356
|
|
@@ -156,12 +156,12 @@ scitex/benchmark/benchmark.py,sha256=OHzg4-wFODzHwhPke1IRK-rESDcESi5HAN9YJqvWfnA
|
|
|
156
156
|
scitex/benchmark/monitor.py,sha256=iKFFEiH8dK83gCwxj1_TEFeYDdghnreIcDgSDyoK4IE,11541
|
|
157
157
|
scitex/benchmark/profiler.py,sha256=ZOZrwsoIZcKIGDpUlWe2wwOb9Up6mUAV_s8VK3dHn5E,8365
|
|
158
158
|
scitex/bridge/__init__.py,sha256=ZaVPtrO13mA8znwmqcDedux9zFv4UuaF4jO2FAACevg,2970
|
|
159
|
-
scitex/bridge/_figrecipe.py,sha256=
|
|
160
|
-
scitex/bridge/_helpers.py,sha256=
|
|
161
|
-
scitex/bridge/_plt_vis.py,sha256=
|
|
159
|
+
scitex/bridge/_figrecipe.py,sha256=Hab44eTcSf6beCCPoj8YYdmkv1ds6iKJfz2iKJlZC-A,7141
|
|
160
|
+
scitex/bridge/_helpers.py,sha256=zyM6I8BO53rjtaghwjkGKF72M1lTvZcow70b-TOxes4,4172
|
|
161
|
+
scitex/bridge/_plt_vis.py,sha256=wGMadLyMJK4DYGeefRRvFOHSacQS73k-t8dR9BCjVl8,15297
|
|
162
162
|
scitex/bridge/_protocol.py,sha256=Kc7d86GTbxFGs6viZazFfnWPa2FZN_lScMcI-gF2NHY,8133
|
|
163
|
-
scitex/bridge/_stats_plt.py,sha256=
|
|
164
|
-
scitex/bridge/_stats_vis.py,sha256=
|
|
163
|
+
scitex/bridge/_stats_plt.py,sha256=TBCmjcsMsRmKUrMl2F8MQDBbvqXNQWuzvQ4Anmq7X44,7862
|
|
164
|
+
scitex/bridge/_stats_vis.py,sha256=plHgRSGOFqBbLCzYHrAU-oRsxEK6nDLcqz4TU2uBlfQ,8047
|
|
165
165
|
scitex/browser/README.md,sha256=xpYYwib632qOyLCeAIBNtwE2o8frDiLXTyacw2fAz6k,4436
|
|
166
166
|
scitex/browser/__init__.py,sha256=H7H3kSgK35g5fZc84Eoh4A1xjSr7TbP8er_d5jVW_u4,4106
|
|
167
167
|
scitex/browser/auth/__init__.py,sha256=mSHD6yUmDsgADN9U4D2Hm5Pi7y4mWYBCsdRnTcB9BHY,910
|
|
@@ -204,6 +204,100 @@ scitex/browser/remote/__init__.py,sha256=Ua9vg68eIAsJVqm5pS8H3O-5JGt5qGXqjsD8m-A
|
|
|
204
204
|
scitex/browser/stealth/HumanBehavior.py,sha256=mWy2ZUFPlvMBMCqV7AiYJ3_2jaHbQCp7dOV1k-m4xKg,11089
|
|
205
205
|
scitex/browser/stealth/StealthManager.py,sha256=Wya1OLF4I16RZO7AfVS2O1PkGtzRUhh84R2EAYMuQnA,37452
|
|
206
206
|
scitex/browser/stealth/__init__.py,sha256=KVbyLjm8KnM5YwyB84A3pwLdUGkANNgwpA7YL2fyAxo,188
|
|
207
|
+
scitex/canvas/README.md,sha256=I2gHvX0bTAfqujnqGScA9jF7BHwhG29ttM326eqj11s,9140
|
|
208
|
+
scitex/canvas/__init__.py,sha256=k_1mqbodRgy6phbhLDqRenEEnOLvueWwj0xNNYrCyd0,9380
|
|
209
|
+
scitex/canvas/canvas.py,sha256=1aUjIqCzwKhGXukCQsHc-h-kqLNA9VqzIMazimqm2mA,12968
|
|
210
|
+
scitex/canvas/backend/__init__.py,sha256=h-0QPhC37XbtilgzB0dUQA5Tipqlkjz6YfNCCijxn1o,1113
|
|
211
|
+
scitex/canvas/backend/_export.py,sha256=WSHIDn_LjaScBoe0e27vCHgMLkuA3IVXw1I69DwdI_A,3912
|
|
212
|
+
scitex/canvas/backend/_parser.py,sha256=TBb78NO00izF0JnZkfOs4jrD1WfhYKlWHLXsyeYqmw0,4493
|
|
213
|
+
scitex/canvas/backend/_render.py,sha256=_LEqJ2NmJxzDzi8FfgEWuT-Lvm_YlFRtNt3neKnQnXk,11138
|
|
214
|
+
scitex/canvas/docs/CANVAS_ARCHITECTURE.md,sha256=LF5GSiUA1ZWriZt1lAc0FNsGEjl__zgqDQLIp6HKkb8,10559
|
|
215
|
+
scitex/canvas/editor/__init__.py,sha256=FpsAFnNPTVeH_UudaRIMB_wHpO9MjYoqocLvzaFutkU,648
|
|
216
|
+
scitex/canvas/editor/_dearpygui_editor.py,sha256=9nKfqE45okVr6XbHwWdmJYqX-nAcuENIH5ElXeg_NaM,76299
|
|
217
|
+
scitex/canvas/editor/_defaults.py,sha256=ka6O6r-tQq3ATtRPZW0psDyva0V9fpnEV493jsFfi9Q,9852
|
|
218
|
+
scitex/canvas/editor/_flask_editor.py,sha256=ZC_T-6zpB3SXO4I_p8rtEdSEfWckCGU-TsVh5IMf-Vs,848
|
|
219
|
+
scitex/canvas/editor/_mpl_editor.py,sha256=HbcVkob-OTt4UcQtQXiGNkZ1iUOVyg8nlvGbV6jvzD4,7908
|
|
220
|
+
scitex/canvas/editor/_qt_editor.py,sha256=VS0PBC9VsXxRDrrNb5yFa42Cxc4Si9wsgNUGeBsRaHc,40687
|
|
221
|
+
scitex/canvas/editor/_tkinter_editor.py,sha256=JN2Oy2uyu0GB0fJjIQ8bb8YR9_gX2TQ_bhj4GQsSKP0,19321
|
|
222
|
+
scitex/canvas/editor/edit/__init__.py,sha256=8-nPLWjj3GaqNYvpThAP1FzTiE1Uk0RT-vyO6j0wMjA,1376
|
|
223
|
+
scitex/canvas/editor/edit/backend_detector.py,sha256=UN5Tc50UatJMafsdBypY0NBpRd01SxVv4DFCRTUVPIQ,2917
|
|
224
|
+
scitex/canvas/editor/edit/bundle_resolver.py,sha256=7J4nZMC-UvcOK--833UWVemW1DLs7AArvmqITgzUGro,7567
|
|
225
|
+
scitex/canvas/editor/edit/editor_launcher.py,sha256=EXfDP1dlEAnGjY9GBW0wqPc2ChPePuB_VBAFPjQb96g,8588
|
|
226
|
+
scitex/canvas/editor/edit/manual_handler.py,sha256=5zKfn2T9ox4n_q5S351OY5r7bW1seOqZdTg1jB7o1_w,1249
|
|
227
|
+
scitex/canvas/editor/edit/panel_loader.py,sha256=cFt5piUIQanfGyULJ1YL0i2tApkvrTsPNzzIu0lV6gI,7249
|
|
228
|
+
scitex/canvas/editor/edit/path_resolver.py,sha256=9b1PCj9-ragRWvDNwW0oR733qTlvpjBp7zH2L7IUSTw,2056
|
|
229
|
+
scitex/canvas/editor/flask_editor/__init__.py,sha256=C-5iDsc5c2xSRhgexgB_XvQqJQBvNrGbzKzxOKSSMkA,531
|
|
230
|
+
scitex/canvas/editor/flask_editor/_bbox.py,sha256=gVZOI7WdBSPvxMIE-0uHVxVfvLUAlRv7uOaReHRQ2Kc,51527
|
|
231
|
+
scitex/canvas/editor/flask_editor/_core.py,sha256=u1SOADIfN3PpQMcdprg_XxDPXajPbauzr-lTcTaMbc4,69735
|
|
232
|
+
scitex/canvas/editor/flask_editor/_plotter.py,sha256=FUWHlGVac0mc3MmtuDWIfwe5jw47vGypL0Cbk0LvWPE,21221
|
|
233
|
+
scitex/canvas/editor/flask_editor/_renderer.py,sha256=-kFh8Uicjj-p6mA8Jbc_lY8gFjdVtlYQNMAYG1-DhBo,27878
|
|
234
|
+
scitex/canvas/editor/flask_editor/_utils.py,sha256=V9wyfWy61tgnJIFshF2S-d7T8wiNdAgz_CIXCRfBkuI,2513
|
|
235
|
+
scitex/canvas/editor/flask_editor/static/css/index.css,sha256=69FxUW6r2K5ZgtiyxqCelJSgpKE_sj9pWKjLjKb6PCk,1234
|
|
236
|
+
scitex/canvas/editor/flask_editor/static/css/base/reset.css,sha256=TzCtLzXMbgPwEo4KdiL9GCdgJ1JHomS0NYnI_IXeoOQ,1132
|
|
237
|
+
scitex/canvas/editor/flask_editor/static/css/base/typography.css,sha256=vfnz3WiZ11r_eE4ZZSflCu4ZfINZynGUwbEbZsFoU_s,402
|
|
238
|
+
scitex/canvas/editor/flask_editor/static/css/base/variables.css,sha256=Am4S_gvNCPO692hMQhsS-HYn_Ovt6iGJEnNEEhJ7cj4,2767
|
|
239
|
+
scitex/canvas/editor/flask_editor/static/css/components/buttons.css,sha256=8Zh-ujPAsgPpO3cw32lDYY-M3NrmkSUR01xwIw8kvUA,4076
|
|
240
|
+
scitex/canvas/editor/flask_editor/static/css/components/context-menu.css,sha256=UUmapB6BhXSQbWX7AMpPinZa6dsjfXx3KettnaZZgHk,2023
|
|
241
|
+
scitex/canvas/editor/flask_editor/static/css/components/dropdown.css,sha256=CbjVS5rWpB17OdryKbVchORBctLP4g0vs7WYr89K35E,1153
|
|
242
|
+
scitex/canvas/editor/flask_editor/static/css/components/forms.css,sha256=JlArbNGllH2rY0rcJ7fc3h1H5RZvn9inV4tsrT8bbAQ,2136
|
|
243
|
+
scitex/canvas/editor/flask_editor/static/css/components/modal.css,sha256=qjGRknJaMU5Uw3HojQ5zreiwEkp7tl1kn5MedygrOIA,1272
|
|
244
|
+
scitex/canvas/editor/flask_editor/static/css/components/sections.css,sha256=KEdPP7cPzWzIR2gKT68bKB3VWrokYJ92rfsbWGJlYD4,4613
|
|
245
|
+
scitex/canvas/editor/flask_editor/static/css/features/canvas.css,sha256=p8l5yaOo_OFbzk5QrHwbwaQJKUhtCclP7W2PRFgei74,4138
|
|
246
|
+
scitex/canvas/editor/flask_editor/static/css/features/element-inspector.css,sha256=jqqvNBNrXZ0oSAiECKCXhz5CovPLs2x9a9x-4TDCHTQ,5100
|
|
247
|
+
scitex/canvas/editor/flask_editor/static/css/features/loading.css,sha256=Sk2dZHGOivFn78A6vi9jVzeXoJRTUWYR0tjv2TLnsBA,1367
|
|
248
|
+
scitex/canvas/editor/flask_editor/static/css/features/overlay.css,sha256=X3Fmului2p3CENs25kOQM61dEnh2mFY1Y93ea8kq-9A,1031
|
|
249
|
+
scitex/canvas/editor/flask_editor/static/css/features/panel-grid.css,sha256=dVcz0dtWSQaT1TJEFo4eCoeK7gmlVE27GacIgLLQC3Q,2004
|
|
250
|
+
scitex/canvas/editor/flask_editor/static/css/features/selection.css,sha256=v7J9AFHCCtgS7WLHJPfhot7IkCSGAOGB9oholS5Ys44,2686
|
|
251
|
+
scitex/canvas/editor/flask_editor/static/css/features/statistics.css,sha256=294QxYffE_pk_nzFl47TgD07s2QCDuaT1wjJFu43voE,2728
|
|
252
|
+
scitex/canvas/editor/flask_editor/static/css/layout/container.css,sha256=kEJrivH0Cz3MNQrHx_lv1a3B22LBDvZq9aNEYnUlX60,243
|
|
253
|
+
scitex/canvas/editor/flask_editor/static/css/layout/controls.css,sha256=aVLaIJNcQGCe4f_sY0EuScDYbyqGjA3Hd8CZ1KqltqE,1280
|
|
254
|
+
scitex/canvas/editor/flask_editor/static/css/layout/preview.css,sha256=GCT4fU0NnQJCIojQCuQT9Hp1Gkk-ax05Pg40dH-Hnr0,1744
|
|
255
|
+
scitex/canvas/editor/flask_editor/static/js/main.js,sha256=fL0rRoGd9pAKj4USw3KMulDEm5vxOm0O2oI59TiIBPA,16445
|
|
256
|
+
scitex/canvas/editor/flask_editor/static/js/alignment/axis.js,sha256=wCDseHMBhvfogY6qjrZqv0AZ7ZawDN1Z_0oQWP9QQZ8,11270
|
|
257
|
+
scitex/canvas/editor/flask_editor/static/js/alignment/basic.js,sha256=3Qq7webElt_TEL7Kfwj3hCuL05HzlnYDU0j2GaSNqRs,3984
|
|
258
|
+
scitex/canvas/editor/flask_editor/static/js/alignment/distribute.js,sha256=NQqSG_ShFcPq0bXdlKDmzHb6uKNurx8d2PU2sjd67vA,1979
|
|
259
|
+
scitex/canvas/editor/flask_editor/static/js/canvas/canvas.js,sha256=qu6n8W3Zc9v5Dmw8kNXyUPo-AeJp6KKaDY94758Ufc0,6051
|
|
260
|
+
scitex/canvas/editor/flask_editor/static/js/canvas/dragging.js,sha256=YqVM8U5I2ZuGMmr-i2MLZY3s-gxq2nf3ej6bgUMuHu4,8911
|
|
261
|
+
scitex/canvas/editor/flask_editor/static/js/canvas/resize.js,sha256=OnS6L8j0X8S51lSNS4i17GgFozDiynrGIBj1JrZIjAk,1610
|
|
262
|
+
scitex/canvas/editor/flask_editor/static/js/canvas/selection.js,sha256=1wwq0myWJ5VFvkB_kcOPbdiqeeyzwq9ZCgoMUqc4w_g,2601
|
|
263
|
+
scitex/canvas/editor/flask_editor/static/js/core/api.js,sha256=RXGySowPGlM_xGYbo8vBwvz_5_VnZ47z7FYN_zdwBUQ,9128
|
|
264
|
+
scitex/canvas/editor/flask_editor/static/js/core/state.js,sha256=tq0ThqAwlIkzB4F2LqFQ8CPuuVxq80elPF5U1uvTrtw,6129
|
|
265
|
+
scitex/canvas/editor/flask_editor/static/js/core/utils.js,sha256=4dAKWUQlPsaOK2YHJpoO8mpxHDFyiOPmrudOQPV3J4Q,9201
|
|
266
|
+
scitex/canvas/editor/flask_editor/static/js/dev/element-inspector.js,sha256=2IlMg0MSYHr66GPIRuxvxAeMK4qnBUyU0JKLLxrN5mg,35549
|
|
267
|
+
scitex/canvas/editor/flask_editor/static/js/editor/bbox.js,sha256=WR0482ZyQwcQg4Au4xssEdEPSecmnecivC-m3luYNx4,12101
|
|
268
|
+
scitex/canvas/editor/flask_editor/static/js/editor/element-drag.js,sha256=0UjtQS4vmSfouvA5u5ahOWKUgZ29HuuAPmWvngxAre8,10393
|
|
269
|
+
scitex/canvas/editor/flask_editor/static/js/editor/overlay.js,sha256=-f6ktu593FXmomVsF1O8KS3tBdNRGWeiY7t6Hjz3Ca8,14147
|
|
270
|
+
scitex/canvas/editor/flask_editor/static/js/editor/preview.js,sha256=_w1eelsvcGUiCZMydA-tmW8CM5YS3MwTGhd4q4NkGu0,11767
|
|
271
|
+
scitex/canvas/editor/flask_editor/static/js/shortcuts/context-menu.js,sha256=z0a2HVrEc7EXBUsOaMRvX5TnZ8Dky-30oxAh3aHtqSY,7901
|
|
272
|
+
scitex/canvas/editor/flask_editor/static/js/shortcuts/keyboard.js,sha256=wdMhZqVF4xVY92-rkSFKc_ZCxXQa7JZaCCn0hByFPRg,8435
|
|
273
|
+
scitex/canvas/editor/flask_editor/static/js/ui/controls.js,sha256=jBL2j0ve4Ca9V39Hn4PhGt9cLHlA8fGeOSiUHvnDVOc,7852
|
|
274
|
+
scitex/canvas/editor/flask_editor/static/js/ui/download.js,sha256=Y4kQLVb2ylki9YHR1hyupDJKOZKPlIKCmMVmTSHFWUk,1958
|
|
275
|
+
scitex/canvas/editor/flask_editor/static/js/ui/help.js,sha256=9n6IM8r2yBPufo8OokiRwtUljayLLbZlQNcqcr2t4dA,5229
|
|
276
|
+
scitex/canvas/editor/flask_editor/static/js/ui/theme.js,sha256=wM9xwZtBNQ5Lq6E-KANbDt9H83Uf7wGiPSI9jQqbzKE,1075
|
|
277
|
+
scitex/canvas/editor/flask_editor/templates/__init__.py,sha256=SheAQc9TECkZNEjX8g4ZUpDEh8iAZPaPlmahkfN4Rdk,3287
|
|
278
|
+
scitex/canvas/editor/flask_editor/templates/_html.py,sha256=pGjOca3A4e3WY24WYHVIE6tcI1NoiDMQSueUCcCU-XY,47425
|
|
279
|
+
scitex/canvas/editor/flask_editor/templates/_scripts.py,sha256=RWHLN48eSv7i5kIfdDeeDmkbL3WPyVY5QzLOByFBU2o,189760
|
|
280
|
+
scitex/canvas/editor/flask_editor/templates/_styles.py,sha256=y78BQlg6Z1Sw53cGu3NmF8E1y1N2A1U_EdudG0R-Ubc,37879
|
|
281
|
+
scitex/canvas/io/__init__.py,sha256=mTIBbyI2F4OjAay0BmP1q1B0cXBpISi9gJqGzYHw25A,2570
|
|
282
|
+
scitex/canvas/io/_bundle.py,sha256=LKXV8IgUK-MronTu9sJS2hmG6nwGAcQg7nW7146Ju4Q,37606
|
|
283
|
+
scitex/canvas/io/_canvas.py,sha256=7Mb7310PoCYT3P5R0FjACuChm6w7C8io-WHM4zyYnOY,5724
|
|
284
|
+
scitex/canvas/io/_data.py,sha256=bNuEBFcsyFHrV1ib48y0i7tod0R3SfKUBNBotKk_Ugo,4830
|
|
285
|
+
scitex/canvas/io/_directory.py,sha256=P6v5Lpef6uyv2V58v0gOfZMmgIertNXRE_gsriLvVg4,5385
|
|
286
|
+
scitex/canvas/io/_export.py,sha256=24z4NazNNpp08ncQRgHDPxV_3_FT4IRBCO9P6Vd5u1w,12400
|
|
287
|
+
scitex/canvas/io/_load.py,sha256=HIufhTRfgi-I_dPk76DpK_e6FgvM9BQ0PcD3ON0yOnU,3712
|
|
288
|
+
scitex/canvas/io/_panel.py,sha256=4KYkEF0SL_ToPECOZsvJlrJvhIa6BOuQvF4JLPG4etk,11709
|
|
289
|
+
scitex/canvas/io/_save.py,sha256=rn4Mi3L1gTXSCQ868hK1S9LQx5eBSG-JQB2ZJHg22wE,3054
|
|
290
|
+
scitex/canvas/model/__init__.py,sha256=iSRGe0nlgr3JLRE4FTPLqcrwTyMg3787NhUmLuUGuPY,2542
|
|
291
|
+
scitex/canvas/model/_annotations.py,sha256=i6iUR_3Bw-jcuibchucThWFuntlZwQzy6fxoI_1g31E,3699
|
|
292
|
+
scitex/canvas/model/_axes.py,sha256=JNNO79lxopdd3NZJyC9NgAQy4XR88Sgu3nlgD5pAwsE,4590
|
|
293
|
+
scitex/canvas/model/_figure.py,sha256=u0KxvLw9NhzZDROGpiS80eKY7gW_9p_D8-H8O5JUSdU,3789
|
|
294
|
+
scitex/canvas/model/_guides.py,sha256=hsIQurV-9G3A6im2Sl7VfTdILiiwr7y__37ky_IYbQo,3425
|
|
295
|
+
scitex/canvas/model/_plot.py,sha256=gYfSxcQXacyrJjWPjPVoHfQ4izsQTq32WOWKgx6mzUs,3957
|
|
296
|
+
scitex/canvas/model/_plot_types.py,sha256=zq_PKZuMRhV1sVds51Dy_wraHSEf9y2JNEYgxxRBRhA,14746
|
|
297
|
+
scitex/canvas/model/_styles.py,sha256=4XkOnudTuXZn2IYv_O-mJKFd8wCEGdxVodJoLfejVnU,6476
|
|
298
|
+
scitex/canvas/utils/__init__.py,sha256=gJs_EYfXJY72VWzP7vRQrTfro5QYoYJM0F3eD_TpGuk,1680
|
|
299
|
+
scitex/canvas/utils/_defaults.py,sha256=_kX40zMHuOpfYN8kV9c-8WXHtwmh_1PbegHnYzd_JgE,8103
|
|
300
|
+
scitex/canvas/utils/_validate.py,sha256=GEuBy8UfG54WB3c012PQh7NqZG4qblCPo-DHgTPb-8A,5279
|
|
207
301
|
scitex/capture/README.md,sha256=SEpeXZedxklXMIpWWF2Ye_254hi0RGQAiSBmYvWfL3g,6850
|
|
208
302
|
scitex/capture/TODO.md,sha256=-G-IurfcKpnlPEPLIUKxts12Y3gvKJ6bAm-cQCzfaCM,1400
|
|
209
303
|
scitex/capture/__init__.py,sha256=X1x_kuP769-Q1NEiXlAbqWLSOIfRpQoL6Ng8Az8DiH8,2881
|
|
@@ -229,7 +323,7 @@ scitex/capture/powershell/enumerate_virtual_desktops.ps1,sha256=-KF39BUYjoZBL9mq
|
|
|
229
323
|
scitex/cli/__init__.py,sha256=LShYon_C7H5yVbLYHSdyoNgwYxXdzUFEVGZkMG211dU,399
|
|
230
324
|
scitex/cli/cloud.py,sha256=ZghVxWaHHNz0zhTz3BnZPguGwuZjslaj-Xxerg6-_6E,21398
|
|
231
325
|
scitex/cli/config.py,sha256=J-oJL9MJ8Ef0mKxlctlvRDbS7eHeOyb6BImZq_PTVbc,6216
|
|
232
|
-
scitex/cli/convert.py,sha256=
|
|
326
|
+
scitex/cli/convert.py,sha256=W6Z9gaVBTPD5BhRcHWb-v3AHYcDmqvMUetu5NusP8lE,12587
|
|
233
327
|
scitex/cli/main.py,sha256=8C_N-MXRrlA2mcrgSjY1pkcyPp7zD96Zj9nqPO721-U,5360
|
|
234
328
|
scitex/cli/scholar.py,sha256=4uAq9u5Y_XIWqnm0PKiwzq-iiW1HkmF-gm0xBBeJjnI,9944
|
|
235
329
|
scitex/cli/security.py,sha256=6f_3TO5E0jzWvDmIDcF1ZKWmLxsn6iTJCHVlYyPE6os,2785
|
|
@@ -453,7 +547,7 @@ scitex/dev/plt/demo_plotters/plot_stx_violinplot.py,sha256=wafuzIKs9WJRfXcH4bxxu
|
|
|
453
547
|
scitex/dev/plt/mpl/get_dir_ax.py,sha256=KjcqgYaaY2R5Y-h1Wo5oPNsQx8jEiokmIfp1sjq_dpI,901
|
|
454
548
|
scitex/dev/plt/mpl/get_signatures.py,sha256=T-7eidQGb5Ttyv4p4IteRWY_T22e2UpGYo-bfy5EruE,4818
|
|
455
549
|
scitex/dev/plt/mpl/get_signatures_details.py,sha256=Oe059QU9mD1Uabmi9GhmUT2hAtwwblzlA9t9fqADr5A,19204
|
|
456
|
-
scitex/diagram/README.md,sha256=
|
|
550
|
+
scitex/diagram/README.md,sha256=6NDrGTze_CVJ7qNcQAFjz9i-llQhf9uZVYO34iYqAzw,4836
|
|
457
551
|
scitex/diagram/__init__.py,sha256=JfT2X9-PNrUyUcvDiz_z7Na3ABzVUOftDV4aS9lGdHo,1488
|
|
458
552
|
scitex/diagram/_compile.py,sha256=JPjVHEJPk884Qfrk9wpbxjQ0PB7AlzQxsi4Sv-osXHU,10282
|
|
459
553
|
scitex/diagram/_diagram.py,sha256=lPTTjrPuAO0WJlTxluygzU7qaKL5cYIqK4yUSwO8NHI,10565
|
|
@@ -505,310 +599,6 @@ scitex/dt/_linspace.py,sha256=imaYZRYbr83HTs8j6K7mxGAQ0m3zLN8Oj6zVr_6Egec,4352
|
|
|
505
599
|
scitex/dt/_normalize_timestamp.py,sha256=9aTcE7ST6xvYuWZLbbGUOBXsKyIiLgjMB94N2NvcPQw,11660
|
|
506
600
|
scitex/etc/__init__.py,sha256=KDGlp8RUwKnbahvrxpXNX_A3B745fy9B8kmBp4Z9N3A,459
|
|
507
601
|
scitex/etc/wait_key.py,sha256=MPG7HjEjBAOxP8gbxQShRjTdy7uM5meRqWYECk6P5mw,579
|
|
508
|
-
scitex/fig/README.md,sha256=I2gHvX0bTAfqujnqGScA9jF7BHwhG29ttM326eqj11s,9140
|
|
509
|
-
scitex/fig/__init__.py,sha256=kbl5-SoUB7HR04SFCOjJD72_-RL2TOdDlUE07x4oTmg,9370
|
|
510
|
-
scitex/fig/canvas.py,sha256=8QJoRvdckMi4W1D_CiT8JiNJ60BC1XIuA0bKX_fqwFI,12969
|
|
511
|
-
scitex/fig/backend/__init__.py,sha256=h-0QPhC37XbtilgzB0dUQA5Tipqlkjz6YfNCCijxn1o,1113
|
|
512
|
-
scitex/fig/backend/_export.py,sha256=WSHIDn_LjaScBoe0e27vCHgMLkuA3IVXw1I69DwdI_A,3912
|
|
513
|
-
scitex/fig/backend/_parser.py,sha256=WNPVW6peqeWBZRth0e4o6JWEFtREo6CAgyxhkKH7kjM,4490
|
|
514
|
-
scitex/fig/backend/_render.py,sha256=_LEqJ2NmJxzDzi8FfgEWuT-Lvm_YlFRtNt3neKnQnXk,11138
|
|
515
|
-
scitex/fig/docs/CANVAS_ARCHITECTURE.md,sha256=LF5GSiUA1ZWriZt1lAc0FNsGEjl__zgqDQLIp6HKkb8,10559
|
|
516
|
-
scitex/fig/editor/__init__.py,sha256=FpsAFnNPTVeH_UudaRIMB_wHpO9MjYoqocLvzaFutkU,648
|
|
517
|
-
scitex/fig/editor/_dearpygui_editor.py,sha256=9nKfqE45okVr6XbHwWdmJYqX-nAcuENIH5ElXeg_NaM,76299
|
|
518
|
-
scitex/fig/editor/_defaults.py,sha256=4-oIZZmwkBTFJj7tKDCy7Ezp55GxbLFP8s_YTYvuFD0,9855
|
|
519
|
-
scitex/fig/editor/_flask_editor.py,sha256=ZC_T-6zpB3SXO4I_p8rtEdSEfWckCGU-TsVh5IMf-Vs,848
|
|
520
|
-
scitex/fig/editor/_mpl_editor.py,sha256=HbcVkob-OTt4UcQtQXiGNkZ1iUOVyg8nlvGbV6jvzD4,7908
|
|
521
|
-
scitex/fig/editor/_qt_editor.py,sha256=VS0PBC9VsXxRDrrNb5yFa42Cxc4Si9wsgNUGeBsRaHc,40687
|
|
522
|
-
scitex/fig/editor/_tkinter_editor.py,sha256=JN2Oy2uyu0GB0fJjIQ8bb8YR9_gX2TQ_bhj4GQsSKP0,19321
|
|
523
|
-
scitex/fig/editor/edit/__init__.py,sha256=T0L8PDwb7nO1myg-iR2Yy9qojTJdk0NI6uVVCKrawdw,1383
|
|
524
|
-
scitex/fig/editor/edit/backend_detector.py,sha256=UN5Tc50UatJMafsdBypY0NBpRd01SxVv4DFCRTUVPIQ,2917
|
|
525
|
-
scitex/fig/editor/edit/bundle_resolver.py,sha256=oMziNJPYvtIuEfXMeryLyYay9gEM8k3Ecq8pbjAU7k4,7476
|
|
526
|
-
scitex/fig/editor/edit/editor_launcher.py,sha256=eQVVU7f2vWyuN78QZRX9ppbMVeyuO2LfFZE3L6XZoBQ,8135
|
|
527
|
-
scitex/fig/editor/edit/manual_handler.py,sha256=5zKfn2T9ox4n_q5S351OY5r7bW1seOqZdTg1jB7o1_w,1249
|
|
528
|
-
scitex/fig/editor/edit/panel_loader.py,sha256=wpAKWx2RwS9Jscn4kw0VtHyeP2U817io3tPQ0oGR1b0,7094
|
|
529
|
-
scitex/fig/editor/edit/path_resolver.py,sha256=9b1PCj9-ragRWvDNwW0oR733qTlvpjBp7zH2L7IUSTw,2056
|
|
530
|
-
scitex/fig/editor/flask_editor/__init__.py,sha256=C-5iDsc5c2xSRhgexgB_XvQqJQBvNrGbzKzxOKSSMkA,531
|
|
531
|
-
scitex/fig/editor/flask_editor/_bbox.py,sha256=o_hyh4ZFvV1-_ydf3UyRyp_DfJx5C4zICOywMNXlOck,50862
|
|
532
|
-
scitex/fig/editor/flask_editor/_core.py,sha256=ZjYRiu_qDxgBJ_sBfh6fcYuqiniaWg0eJGlZFrtuOQc,62893
|
|
533
|
-
scitex/fig/editor/flask_editor/_plotter.py,sha256=FUWHlGVac0mc3MmtuDWIfwe5jw47vGypL0Cbk0LvWPE,21221
|
|
534
|
-
scitex/fig/editor/flask_editor/_renderer.py,sha256=m_8mvQjIo-r5rNmFt7qJ-mXqe6KGEW7Q_tamNB78FaE,27442
|
|
535
|
-
scitex/fig/editor/flask_editor/_utils.py,sha256=V9wyfWy61tgnJIFshF2S-d7T8wiNdAgz_CIXCRfBkuI,2513
|
|
536
|
-
scitex/fig/editor/flask_editor/static/css/index.css,sha256=69FxUW6r2K5ZgtiyxqCelJSgpKE_sj9pWKjLjKb6PCk,1234
|
|
537
|
-
scitex/fig/editor/flask_editor/static/css/base/reset.css,sha256=TzCtLzXMbgPwEo4KdiL9GCdgJ1JHomS0NYnI_IXeoOQ,1132
|
|
538
|
-
scitex/fig/editor/flask_editor/static/css/base/typography.css,sha256=vfnz3WiZ11r_eE4ZZSflCu4ZfINZynGUwbEbZsFoU_s,402
|
|
539
|
-
scitex/fig/editor/flask_editor/static/css/base/variables.css,sha256=Am4S_gvNCPO692hMQhsS-HYn_Ovt6iGJEnNEEhJ7cj4,2767
|
|
540
|
-
scitex/fig/editor/flask_editor/static/css/components/buttons.css,sha256=8Zh-ujPAsgPpO3cw32lDYY-M3NrmkSUR01xwIw8kvUA,4076
|
|
541
|
-
scitex/fig/editor/flask_editor/static/css/components/context-menu.css,sha256=UUmapB6BhXSQbWX7AMpPinZa6dsjfXx3KettnaZZgHk,2023
|
|
542
|
-
scitex/fig/editor/flask_editor/static/css/components/dropdown.css,sha256=CbjVS5rWpB17OdryKbVchORBctLP4g0vs7WYr89K35E,1153
|
|
543
|
-
scitex/fig/editor/flask_editor/static/css/components/forms.css,sha256=JlArbNGllH2rY0rcJ7fc3h1H5RZvn9inV4tsrT8bbAQ,2136
|
|
544
|
-
scitex/fig/editor/flask_editor/static/css/components/modal.css,sha256=qjGRknJaMU5Uw3HojQ5zreiwEkp7tl1kn5MedygrOIA,1272
|
|
545
|
-
scitex/fig/editor/flask_editor/static/css/components/sections.css,sha256=KEdPP7cPzWzIR2gKT68bKB3VWrokYJ92rfsbWGJlYD4,4613
|
|
546
|
-
scitex/fig/editor/flask_editor/static/css/features/canvas.css,sha256=cpkX9ZHT985D7z6fnJHmdKnjm_Brtnm25I35xMXW8Lk,4134
|
|
547
|
-
scitex/fig/editor/flask_editor/static/css/features/element-inspector.css,sha256=jqqvNBNrXZ0oSAiECKCXhz5CovPLs2x9a9x-4TDCHTQ,5100
|
|
548
|
-
scitex/fig/editor/flask_editor/static/css/features/loading.css,sha256=Sk2dZHGOivFn78A6vi9jVzeXoJRTUWYR0tjv2TLnsBA,1367
|
|
549
|
-
scitex/fig/editor/flask_editor/static/css/features/overlay.css,sha256=X3Fmului2p3CENs25kOQM61dEnh2mFY1Y93ea8kq-9A,1031
|
|
550
|
-
scitex/fig/editor/flask_editor/static/css/features/panel-grid.css,sha256=AYoy-5c0QX7tA4SFq_axICtc5cj6AMIGJnfsblnt5ug,2002
|
|
551
|
-
scitex/fig/editor/flask_editor/static/css/features/selection.css,sha256=v7J9AFHCCtgS7WLHJPfhot7IkCSGAOGB9oholS5Ys44,2686
|
|
552
|
-
scitex/fig/editor/flask_editor/static/css/features/statistics.css,sha256=294QxYffE_pk_nzFl47TgD07s2QCDuaT1wjJFu43voE,2728
|
|
553
|
-
scitex/fig/editor/flask_editor/static/css/layout/container.css,sha256=kEJrivH0Cz3MNQrHx_lv1a3B22LBDvZq9aNEYnUlX60,243
|
|
554
|
-
scitex/fig/editor/flask_editor/static/css/layout/controls.css,sha256=aVLaIJNcQGCe4f_sY0EuScDYbyqGjA3Hd8CZ1KqltqE,1280
|
|
555
|
-
scitex/fig/editor/flask_editor/static/css/layout/preview.css,sha256=GCT4fU0NnQJCIojQCuQT9Hp1Gkk-ax05Pg40dH-Hnr0,1744
|
|
556
|
-
scitex/fig/editor/flask_editor/static/js/main.js,sha256=fL0rRoGd9pAKj4USw3KMulDEm5vxOm0O2oI59TiIBPA,16445
|
|
557
|
-
scitex/fig/editor/flask_editor/static/js/alignment/axis.js,sha256=wCDseHMBhvfogY6qjrZqv0AZ7ZawDN1Z_0oQWP9QQZ8,11270
|
|
558
|
-
scitex/fig/editor/flask_editor/static/js/alignment/basic.js,sha256=3Qq7webElt_TEL7Kfwj3hCuL05HzlnYDU0j2GaSNqRs,3984
|
|
559
|
-
scitex/fig/editor/flask_editor/static/js/alignment/distribute.js,sha256=NQqSG_ShFcPq0bXdlKDmzHb6uKNurx8d2PU2sjd67vA,1979
|
|
560
|
-
scitex/fig/editor/flask_editor/static/js/canvas/canvas.js,sha256=qu6n8W3Zc9v5Dmw8kNXyUPo-AeJp6KKaDY94758Ufc0,6051
|
|
561
|
-
scitex/fig/editor/flask_editor/static/js/canvas/dragging.js,sha256=YqVM8U5I2ZuGMmr-i2MLZY3s-gxq2nf3ej6bgUMuHu4,8911
|
|
562
|
-
scitex/fig/editor/flask_editor/static/js/canvas/resize.js,sha256=OnS6L8j0X8S51lSNS4i17GgFozDiynrGIBj1JrZIjAk,1610
|
|
563
|
-
scitex/fig/editor/flask_editor/static/js/canvas/selection.js,sha256=1wwq0myWJ5VFvkB_kcOPbdiqeeyzwq9ZCgoMUqc4w_g,2601
|
|
564
|
-
scitex/fig/editor/flask_editor/static/js/core/api.js,sha256=YW1q5rSvLUSrZKREWS9K0w56ipBgZ32iTsif7_snQrk,9131
|
|
565
|
-
scitex/fig/editor/flask_editor/static/js/core/state.js,sha256=tq0ThqAwlIkzB4F2LqFQ8CPuuVxq80elPF5U1uvTrtw,6129
|
|
566
|
-
scitex/fig/editor/flask_editor/static/js/core/utils.js,sha256=4dAKWUQlPsaOK2YHJpoO8mpxHDFyiOPmrudOQPV3J4Q,9201
|
|
567
|
-
scitex/fig/editor/flask_editor/static/js/dev/element-inspector.js,sha256=2IlMg0MSYHr66GPIRuxvxAeMK4qnBUyU0JKLLxrN5mg,35549
|
|
568
|
-
scitex/fig/editor/flask_editor/static/js/editor/bbox.js,sha256=WR0482ZyQwcQg4Au4xssEdEPSecmnecivC-m3luYNx4,12101
|
|
569
|
-
scitex/fig/editor/flask_editor/static/js/editor/element-drag.js,sha256=0UjtQS4vmSfouvA5u5ahOWKUgZ29HuuAPmWvngxAre8,10393
|
|
570
|
-
scitex/fig/editor/flask_editor/static/js/editor/overlay.js,sha256=-f6ktu593FXmomVsF1O8KS3tBdNRGWeiY7t6Hjz3Ca8,14147
|
|
571
|
-
scitex/fig/editor/flask_editor/static/js/editor/preview.js,sha256=ZB2j_DmlPwYBoNKLFXPh9UsOjv-3LPwSZi4EOAzcDD8,11757
|
|
572
|
-
scitex/fig/editor/flask_editor/static/js/shortcuts/context-menu.js,sha256=z0a2HVrEc7EXBUsOaMRvX5TnZ8Dky-30oxAh3aHtqSY,7901
|
|
573
|
-
scitex/fig/editor/flask_editor/static/js/shortcuts/keyboard.js,sha256=wdMhZqVF4xVY92-rkSFKc_ZCxXQa7JZaCCn0hByFPRg,8435
|
|
574
|
-
scitex/fig/editor/flask_editor/static/js/ui/controls.js,sha256=jBL2j0ve4Ca9V39Hn4PhGt9cLHlA8fGeOSiUHvnDVOc,7852
|
|
575
|
-
scitex/fig/editor/flask_editor/static/js/ui/download.js,sha256=Y4kQLVb2ylki9YHR1hyupDJKOZKPlIKCmMVmTSHFWUk,1958
|
|
576
|
-
scitex/fig/editor/flask_editor/static/js/ui/help.js,sha256=9n6IM8r2yBPufo8OokiRwtUljayLLbZlQNcqcr2t4dA,5229
|
|
577
|
-
scitex/fig/editor/flask_editor/static/js/ui/theme.js,sha256=wM9xwZtBNQ5Lq6E-KANbDt9H83Uf7wGiPSI9jQqbzKE,1075
|
|
578
|
-
scitex/fig/editor/flask_editor/templates/__init__.py,sha256=SheAQc9TECkZNEjX8g4ZUpDEh8iAZPaPlmahkfN4Rdk,3287
|
|
579
|
-
scitex/fig/editor/flask_editor/templates/_html.py,sha256=9Fh6Jgt5UQINI5HtltwpYkZ0VLyx5RyqxF1i14dkvDo,47419
|
|
580
|
-
scitex/fig/editor/flask_editor/templates/_scripts.py,sha256=_23IW9n68vkBbbGDa78wYSI2LUiDObP3QsLFY0GYrjA,189756
|
|
581
|
-
scitex/fig/editor/flask_editor/templates/_styles.py,sha256=CnpyH4hnBi8pRaMCjDhDMwhfdmqwdSvTU_YU0RuRX-w,37873
|
|
582
|
-
scitex/fig/io/__init__.py,sha256=64TIywi_WWk79tkXYyOyF6Llmfuq1lDAc2XaS2puHcU,2580
|
|
583
|
-
scitex/fig/io/_bundle.py,sha256=bGcFYXa85QEjIx9E7FnuMD0FZSxFQuu-2P2rqscaeio,37016
|
|
584
|
-
scitex/fig/io/_canvas.py,sha256=IC-pm4sLYoUyYp55lJW_B20rfNlgG7TrQiHZ9y16TZw,5721
|
|
585
|
-
scitex/fig/io/_data.py,sha256=13ob2Mp-5qDNFSQozZMlZvRvobpHFvIkn560mqgkmxI,4827
|
|
586
|
-
scitex/fig/io/_directory.py,sha256=P6v5Lpef6uyv2V58v0gOfZMmgIertNXRE_gsriLvVg4,5385
|
|
587
|
-
scitex/fig/io/_export.py,sha256=fCKJiG8MpD2YClNm1ml6hb0mzpG88stLTLnpIzM1JDo,12397
|
|
588
|
-
scitex/fig/io/_load.py,sha256=gIkCNUWjH9e_LP3MSj9H5azgImpUhJVGvEdQsmOyIBo,3709
|
|
589
|
-
scitex/fig/io/_panel.py,sha256=TN2BaWKRQJtUM5EMxDN4-vLr_1_4ybyZjCtRzOpvsV0,11706
|
|
590
|
-
scitex/fig/io/_save.py,sha256=GNRgFt3BjoHrP_eVKL7LwgfDH-_7I9gnNGgj5kvPXtg,3051
|
|
591
|
-
scitex/fig/model/__init__.py,sha256=4eDN0clf5kYBJDroUfXUqnlXSH8xcDWy0hZIuDapaCY,2539
|
|
592
|
-
scitex/fig/model/_annotations.py,sha256=wSZGkn1uRP9GkjpC_5Wf4puUtc0yB2NxeCRebb7gx4s,3696
|
|
593
|
-
scitex/fig/model/_axes.py,sha256=MrzdrrvhYT2sv0VGvucdcqwe10Gb8bW_I981fQ80ugQ,4587
|
|
594
|
-
scitex/fig/model/_figure.py,sha256=bsFAODoYGX8Oca0fqGPFNdblV8Bqxlz6ZG9epu8P9ks,3786
|
|
595
|
-
scitex/fig/model/_guides.py,sha256=0w1kYoFh1zXUVc1VR-6uQRjiQ9sDvBwUbBOnllacngk,3422
|
|
596
|
-
scitex/fig/model/_plot.py,sha256=4sD0ICMZ4P_zwbMiqP-O-9PZ0TYYpRqSgFKCT3IybCE,3954
|
|
597
|
-
scitex/fig/model/_plot_types.py,sha256=zq_PKZuMRhV1sVds51Dy_wraHSEf9y2JNEYgxxRBRhA,14746
|
|
598
|
-
scitex/fig/model/_styles.py,sha256=gd--ZNKMEAZPOp0I0yivuObx1qNmWre5GhSmQE6T-j4,6473
|
|
599
|
-
scitex/fig/utils/__init__.py,sha256=pMeaIj7gKOkIGlmf_lYRNrXA3PzkVySTODHPS-fT9yo,1677
|
|
600
|
-
scitex/fig/utils/_defaults.py,sha256=_kX40zMHuOpfYN8kV9c-8WXHtwmh_1PbegHnYzd_JgE,8103
|
|
601
|
-
scitex/fig/utils/_validate.py,sha256=GEuBy8UfG54WB3c012PQh7NqZG4qblCPo-DHgTPb-8A,5279
|
|
602
|
-
scitex/fts/README.md,sha256=bsf3Isv7h0elDLr9qQ3THSl38r1WSkpZ1sKY5CRZAqk,7320
|
|
603
|
-
scitex/fts/TODO.md,sha256=-XYKiWBwljQY_5cd_CMowQnV1Y5q2-GYd6FUSDmq5Ik,1390
|
|
604
|
-
scitex/fts/__init__.py,sha256=qSfSS05gvD8x6rauNj1_aucjiX6QHBQbBwYx2sv7cdk,2179
|
|
605
|
-
scitex/fts/_bundle/README_IN_BUNDLE.md,sha256=d9whLXmdtgul6KD2zxgy70Gy7N8z88nRDJp28Z6fJZs,3311
|
|
606
|
-
scitex/fts/_bundle/_FTS.py,sha256=MZBC7lu90ROqjIZM_S_lSHoEiHnURaD3X2aOOmYexEM,22698
|
|
607
|
-
scitex/fts/_bundle/__init__.py,sha256=SRJZAcgDTAr3BdFu-XDuXHFmkoKzrX2Oabu_BS4Yxs0,777
|
|
608
|
-
scitex/fts/_bundle/_children.py,sha256=rEPCFVqqYdFG_UCYwrnOYfKgjo8F953ZmvC_010sQ6M,6927
|
|
609
|
-
scitex/fts/_bundle/_loader.py,sha256=uKaPCLsWfReYRkUlD8RFmkvRq8o38wzVFWpIIcAo1to,3769
|
|
610
|
-
scitex/fts/_bundle/_mpl_helpers.py,sha256=-lYbE-GTLbZzaXr-zJhMs7RsUfNOUkyJWALgkpH4eME,13278
|
|
611
|
-
scitex/fts/_bundle/_saver.py,sha256=VuDgpKY27VNfF5r_QrbMAt5QVFl0d-E7mBt9WSmCO6o,8790
|
|
612
|
-
scitex/fts/_bundle/_storage.py,sha256=QpzCmwMHDNxWTbEmHJUfRU0lN2x-3E130aZWyl2gEwY,6145
|
|
613
|
-
scitex/fts/_bundle/_validation.py,sha256=ct8UcWvBJ7Mrx-VUDmeMx5vrhES0gJ9PML8zC2BS0BQ,13124
|
|
614
|
-
scitex/fts/_bundle/_zipbundle.py,sha256=PCisNb0sDGe_hvUbuGtJnJ97hGxcK6FGM_DPKviG_Xc,4464
|
|
615
|
-
scitex/fts/_bundle/_conversion/__init__.py,sha256=WH9KoCKSJmP7BsQhg68pYzJmj9BBVJTWyOALEzwkAlY,307
|
|
616
|
-
scitex/fts/_bundle/_conversion/_bundle2dict.py,sha256=Xwe7cMWjTjkMx3ieBgtDBFtb_jyFdhgFFsvcCWIu9zs,1077
|
|
617
|
-
scitex/fts/_bundle/_conversion/_dict2bundle.py,sha256=tPYDH2eV_ZtYCYpniBJUFxC8UXN7nCOnY7jjSK3iS8A,1214
|
|
618
|
-
scitex/fts/_bundle/_dataclasses/_Axes.py,sha256=FhHFUh7epHCiGibjbj7EDL2IYrZGZE_PjqaDQoYuRJU,1615
|
|
619
|
-
scitex/fts/_bundle/_dataclasses/_BBox.py,sha256=TtgcaPscnbBx4yh_XnIFiuS7Il2PHlJcLAfMhc8w7yI,1320
|
|
620
|
-
scitex/fts/_bundle/_dataclasses/_ColumnDef.py,sha256=7InhNo4DQPvlmMh4MbnpvIs6s_6wBV3Aoi-SHfsMs3Y,2217
|
|
621
|
-
scitex/fts/_bundle/_dataclasses/_DataFormat.py,sha256=zB1OCM3L4h-YTjVSMvQQmOMQ7um2aMslNThedJa7qtg,1007
|
|
622
|
-
scitex/fts/_bundle/_dataclasses/_DataInfo.py,sha256=GdovBGfMzGTiXh5nUeF6YyFZordSoPMfWL254LQyvlc,4150
|
|
623
|
-
scitex/fts/_bundle/_dataclasses/_DataSource.py,sha256=ytRsjmFgBznQle10YMzRFwdMmooaJNGHBbENnEu-7Pk,1160
|
|
624
|
-
scitex/fts/_bundle/_dataclasses/_Node.py,sha256=PwR0SiKtVqB0CLEfCzb_6NXqni5kW9Ca_qo5ZcCckT4,11638
|
|
625
|
-
scitex/fts/_bundle/_dataclasses/_NodeRefs.py,sha256=2bOM7c39jeSKDQgadTgI87kHe1jcV2x87DcS0mt7STs,1184
|
|
626
|
-
scitex/fts/_bundle/_dataclasses/_SizeMM.py,sha256=X5EvivQsA4wb1hCQJlp2TYwsClkA6U-sIKO2Zzxok-k,921
|
|
627
|
-
scitex/fts/_bundle/_dataclasses/__init__.py,sha256=fykbO3Z7vwFSdedafEiLk1l0XkHoAp3G3ReU7WKqfQE,813
|
|
628
|
-
scitex/fts/_bundle/_extractors/__init__.py,sha256=2OdqonQMmRYhwgm2uLDdrNL_ib8zLKIxrArJdhXfkNg,810
|
|
629
|
-
scitex/fts/_bundle/_extractors/_extract_bar.py,sha256=gKHsJntyV7-K5YY4a5UH_SXH838-8rZ92lBiz7BFQ5A,3567
|
|
630
|
-
scitex/fts/_bundle/_extractors/_extract_line.py,sha256=9W_iZ9ZFNi4rqpAd9wE8-wImeqDjc3zTLm1fRqPwvXI,1970
|
|
631
|
-
scitex/fts/_bundle/_extractors/_extract_scatter.py,sha256=03lQJJzgIyWNXo1DAvx47xB3HLER1IkvDeFc1_DxhPE,2250
|
|
632
|
-
scitex/fts/_bundle/_utils/__init__.py,sha256=jRkU-0DKWrHkJRWvH0okU1HO1Zf8uVtG8uFmnZ9UnjY,1115
|
|
633
|
-
scitex/fts/_bundle/_utils/_const.py,sha256=4f6kXFQpAFUaDLIeUSfP7dWzJqUXWXm_YOpBDSk2vjo,544
|
|
634
|
-
scitex/fts/_bundle/_utils/_errors.py,sha256=u0QP8bLfogjfefrftOEP-HIB5F1l_IvjyTnFMt6e83c,1587
|
|
635
|
-
scitex/fts/_bundle/_utils/_generate.py,sha256=Ux64HV8JuAY8UpE_Ovldkxb2xPzOtIu2JQjqIrejoWU,387
|
|
636
|
-
scitex/fts/_bundle/_utils/_types.py,sha256=feVhf5l1Wff42jjq3M2BD2BPwyPlh08m0E6kLRHrTl4,2035
|
|
637
|
-
scitex/fts/_fig/__init__.py,sha256=f4h1OY9KukeLNNpxJ6LwgeMMsZReuumiE8_A1XdArLg,386
|
|
638
|
-
scitex/fts/_fig/_composite.py,sha256=Pk-rcOdaNVzr2EskTr2ikLGi7bTA7AjZcKOV5Hq9uYI,10047
|
|
639
|
-
scitex/fts/_fig/_backend/__init__.py,sha256=AqgjdE6tUJkJ5WkOMJ1bJeOLs6_1Nv70hrM8hz6cVM8,1087
|
|
640
|
-
scitex/fts/_fig/_backend/_export.py,sha256=4pfma3kpba1SnODGRZLlMBgybRTAH0DnUv2ITjwukUw,3888
|
|
641
|
-
scitex/fts/_fig/_backend/_parser.py,sha256=leO0NbA9PMR2gJKTn4pWsxy28lG6WbLcKcJjCHmpdj0,4469
|
|
642
|
-
scitex/fts/_fig/_backend/_render.py,sha256=9xKjbeHWZgZVOziOKuonT4ZOuGAUo4PHzsmY7lk_6MI,15186
|
|
643
|
-
scitex/fts/_fig/_dataclasses/_ChannelEncoding.py,sha256=6mL_YMhBWmnqESYj0875m1axQJsDYWyrkUTNfNDriXA,1385
|
|
644
|
-
scitex/fts/_fig/_dataclasses/_Encoding.py,sha256=WvAaCkkrw-upC9WoIyfmgceQxHfjNARnHl3iYbKbgQw,2258
|
|
645
|
-
scitex/fts/_fig/_dataclasses/_Theme.py,sha256=vcAwbR_ZyXOxL3MudyyoExZvqWgdKNLNOc94ICv3e8w,13267
|
|
646
|
-
scitex/fts/_fig/_dataclasses/_TraceEncoding.py,sha256=EOe3D08tqMgF7GvbADUSq2q8seA5JSXhvRNroFvuK5U,1876
|
|
647
|
-
scitex/fts/_fig/_dataclasses/__init__.py,sha256=CyWdQy_Q8Y1lpo0McdUn29TS6kepLOn1mT7PEBFjYnM,881
|
|
648
|
-
scitex/fts/_fig/_editor/__init__.py,sha256=9FST-ldTrjtEIA-fAGhI-h_Z6AaMCYToOSzmBXGIxWg,307
|
|
649
|
-
scitex/fts/_fig/_editor/_defaults.py,sha256=-fNlJ4HHwgoMJ46pFVlVamewLP32EjkcUChnsZRioBY,9852
|
|
650
|
-
scitex/fts/_fig/_editor/_cui/__init__.py,sha256=R0RlpBg02PRCVRRIwK6KMZaCKAyjepZBrK7J1LgE5vs,915
|
|
651
|
-
scitex/fts/_fig/_editor/_cui/_backend_detector.py,sha256=672fTNSdl2n6FOACjesf6hsVYnSJqfrp0LftQMfyXlM,946
|
|
652
|
-
scitex/fts/_fig/_editor/_cui/_bundle_resolver.py,sha256=2DF9waT7Z8KbsfAa1bHjzAl7pwc1I9Eft4PykzLY4HQ,11620
|
|
653
|
-
scitex/fts/_fig/_editor/_cui/_editor_launcher.py,sha256=izmTr0_66-lFGFXC-qugNJ7OslRiVbpVX3qF3Gwqre0,5206
|
|
654
|
-
scitex/fts/_fig/_editor/_cui/_manual_handler.py,sha256=tozb-9a7dNUUG5x8jgBE9avxE5u-DMg3MRwDgHJ3wpw,1225
|
|
655
|
-
scitex/fts/_fig/_editor/_cui/_panel_loader.py,sha256=JKojZSJvdQaj15jgnQN6pdD3UE23d4iQwxWTCg9NhI8,7286
|
|
656
|
-
scitex/fts/_fig/_editor/_cui/_path_resolver.py,sha256=sb3PHOcOIOtjAwSH0fXSQvc0SQv3kyCU5mck2zy8vKs,2032
|
|
657
|
-
scitex/fts/_fig/_editor/_gui/__init__.py,sha256=Y1V95IfWfpZpTbyqSw6BybDMk-p_qMphd4l3kz9P8eU,253
|
|
658
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor.py,sha256=f8vvgoBdIdwb9oj_RGRdl6PCGAmSEZXo1bhpfufXHQc,825
|
|
659
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/__init__.py,sha256=WSKV-y3-0x3UOq9XJUal03WiDM4yd0mSprFxx9fCBVc,507
|
|
660
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/_bbox.py,sha256=9mRNji55og6QmGv06JNQVoVx49FC9jeWp4wKHwc5MSM,51503
|
|
661
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/_core.py,sha256=Zx3NFxi1tmO1GAhYJaZ82twNyFFb7o_cL8ddDzG40_k,69745
|
|
662
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/_plotter.py,sha256=7MwN3RXcjCbEtWZM0KW51VYACsPhnJgQTCTY9vaVcdE,22093
|
|
663
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/_renderer.py,sha256=s5nOUnYViHUTMhiKv1kBc4DGUlYur2XjfUGeSpxcOs4,27834
|
|
664
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/_utils.py,sha256=Eo33et7ZqZSC2wEAAGMZyk26NsZku9R7HUJY9A5oR4M,2489
|
|
665
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/index.css,sha256=69FxUW6r2K5ZgtiyxqCelJSgpKE_sj9pWKjLjKb6PCk,1234
|
|
666
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/base/reset.css,sha256=TzCtLzXMbgPwEo4KdiL9GCdgJ1JHomS0NYnI_IXeoOQ,1132
|
|
667
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/base/typography.css,sha256=vfnz3WiZ11r_eE4ZZSflCu4ZfINZynGUwbEbZsFoU_s,402
|
|
668
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/base/variables.css,sha256=Am4S_gvNCPO692hMQhsS-HYn_Ovt6iGJEnNEEhJ7cj4,2767
|
|
669
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/components/buttons.css,sha256=8Zh-ujPAsgPpO3cw32lDYY-M3NrmkSUR01xwIw8kvUA,4076
|
|
670
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/components/context-menu.css,sha256=UUmapB6BhXSQbWX7AMpPinZa6dsjfXx3KettnaZZgHk,2023
|
|
671
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/components/dropdown.css,sha256=CbjVS5rWpB17OdryKbVchORBctLP4g0vs7WYr89K35E,1153
|
|
672
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/components/forms.css,sha256=JlArbNGllH2rY0rcJ7fc3h1H5RZvn9inV4tsrT8bbAQ,2136
|
|
673
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/components/modal.css,sha256=qjGRknJaMU5Uw3HojQ5zreiwEkp7tl1kn5MedygrOIA,1272
|
|
674
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/components/sections.css,sha256=KEdPP7cPzWzIR2gKT68bKB3VWrokYJ92rfsbWGJlYD4,4613
|
|
675
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/features/canvas.css,sha256=cpkX9ZHT985D7z6fnJHmdKnjm_Brtnm25I35xMXW8Lk,4134
|
|
676
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/features/element-inspector.css,sha256=jqqvNBNrXZ0oSAiECKCXhz5CovPLs2x9a9x-4TDCHTQ,5100
|
|
677
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/features/loading.css,sha256=Sk2dZHGOivFn78A6vi9jVzeXoJRTUWYR0tjv2TLnsBA,1367
|
|
678
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/features/overlay.css,sha256=X3Fmului2p3CENs25kOQM61dEnh2mFY1Y93ea8kq-9A,1031
|
|
679
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/features/panel-grid.css,sha256=AYoy-5c0QX7tA4SFq_axICtc5cj6AMIGJnfsblnt5ug,2002
|
|
680
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/features/selection.css,sha256=v7J9AFHCCtgS7WLHJPfhot7IkCSGAOGB9oholS5Ys44,2686
|
|
681
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/features/statistics.css,sha256=294QxYffE_pk_nzFl47TgD07s2QCDuaT1wjJFu43voE,2728
|
|
682
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/layout/container.css,sha256=kEJrivH0Cz3MNQrHx_lv1a3B22LBDvZq9aNEYnUlX60,243
|
|
683
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/layout/controls.css,sha256=aVLaIJNcQGCe4f_sY0EuScDYbyqGjA3Hd8CZ1KqltqE,1280
|
|
684
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/css/layout/preview.css,sha256=GCT4fU0NnQJCIojQCuQT9Hp1Gkk-ax05Pg40dH-Hnr0,1744
|
|
685
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/main.js,sha256=fL0rRoGd9pAKj4USw3KMulDEm5vxOm0O2oI59TiIBPA,16445
|
|
686
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/alignment/axis.js,sha256=wCDseHMBhvfogY6qjrZqv0AZ7ZawDN1Z_0oQWP9QQZ8,11270
|
|
687
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/alignment/basic.js,sha256=3Qq7webElt_TEL7Kfwj3hCuL05HzlnYDU0j2GaSNqRs,3984
|
|
688
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/alignment/distribute.js,sha256=NQqSG_ShFcPq0bXdlKDmzHb6uKNurx8d2PU2sjd67vA,1979
|
|
689
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/canvas/canvas.js,sha256=qu6n8W3Zc9v5Dmw8kNXyUPo-AeJp6KKaDY94758Ufc0,6051
|
|
690
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/canvas/dragging.js,sha256=YqVM8U5I2ZuGMmr-i2MLZY3s-gxq2nf3ej6bgUMuHu4,8911
|
|
691
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/canvas/resize.js,sha256=OnS6L8j0X8S51lSNS4i17GgFozDiynrGIBj1JrZIjAk,1610
|
|
692
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/canvas/selection.js,sha256=1wwq0myWJ5VFvkB_kcOPbdiqeeyzwq9ZCgoMUqc4w_g,2601
|
|
693
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/core/api.js,sha256=YW1q5rSvLUSrZKREWS9K0w56ipBgZ32iTsif7_snQrk,9131
|
|
694
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/core/state.js,sha256=tq0ThqAwlIkzB4F2LqFQ8CPuuVxq80elPF5U1uvTrtw,6129
|
|
695
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/core/utils.js,sha256=4dAKWUQlPsaOK2YHJpoO8mpxHDFyiOPmrudOQPV3J4Q,9201
|
|
696
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/dev/element-inspector.js,sha256=2IlMg0MSYHr66GPIRuxvxAeMK4qnBUyU0JKLLxrN5mg,35549
|
|
697
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/editor/bbox.js,sha256=WR0482ZyQwcQg4Au4xssEdEPSecmnecivC-m3luYNx4,12101
|
|
698
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/editor/element-drag.js,sha256=0UjtQS4vmSfouvA5u5ahOWKUgZ29HuuAPmWvngxAre8,10393
|
|
699
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/editor/overlay.js,sha256=-f6ktu593FXmomVsF1O8KS3tBdNRGWeiY7t6Hjz3Ca8,14147
|
|
700
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/editor/preview.js,sha256=ZB2j_DmlPwYBoNKLFXPh9UsOjv-3LPwSZi4EOAzcDD8,11757
|
|
701
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/shortcuts/context-menu.js,sha256=z0a2HVrEc7EXBUsOaMRvX5TnZ8Dky-30oxAh3aHtqSY,7901
|
|
702
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/shortcuts/keyboard.js,sha256=wdMhZqVF4xVY92-rkSFKc_ZCxXQa7JZaCCn0hByFPRg,8435
|
|
703
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/ui/controls.js,sha256=jBL2j0ve4Ca9V39Hn4PhGt9cLHlA8fGeOSiUHvnDVOc,7852
|
|
704
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/ui/download.js,sha256=Y4kQLVb2ylki9YHR1hyupDJKOZKPlIKCmMVmTSHFWUk,1958
|
|
705
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/ui/help.js,sha256=9n6IM8r2yBPufo8OokiRwtUljayLLbZlQNcqcr2t4dA,5229
|
|
706
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/static/js/ui/theme.js,sha256=wM9xwZtBNQ5Lq6E-KANbDt9H83Uf7wGiPSI9jQqbzKE,1075
|
|
707
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/templates/__init__.py,sha256=cKTlMyB8silj6fphH-9aW7AwWC0u3T_Qkxq2_I5hig0,3287
|
|
708
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/templates/_html.py,sha256=XAaRLXH8ncYrN0b5GA3oNWNWgi-kLImUrOTwZSga2gk,47395
|
|
709
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/templates/_scripts.py,sha256=VH5LnNY8H16FSYzuk51SXsMou5aVAINfgtf1KqPWBG8,189734
|
|
710
|
-
scitex/fts/_fig/_editor/_gui/_flask_editor/templates/_styles.py,sha256=zRKOLjb1C4hsx6-U6kUZW3OJrh_IM0o3yfauER2PQnM,37849
|
|
711
|
-
scitex/fts/_fig/_models/_Annotations.py,sha256=C7z0K7QOUP40n0Ke5SWetqfAJ-Ubb_EYOWwSu9jq0Kk,3672
|
|
712
|
-
scitex/fts/_fig/_models/_Axes.py,sha256=hIbNYrOGXDtRI27vPfKG8WbGF3dY17mdulQQ-nZ41Xw,4563
|
|
713
|
-
scitex/fts/_fig/_models/_Figure.py,sha256=SXTAdRu0aycKGaZk29G2s5zXfcqS1ozGp7xz85YEV_w,3762
|
|
714
|
-
scitex/fts/_fig/_models/_Guides.py,sha256=XxLcawBO15Eptc1nT9gm97KIfbZWZ3RPNyfkNK5xHpk,3392
|
|
715
|
-
scitex/fts/_fig/_models/_Plot.py,sha256=vbZslp9KEHwSUQlnbiCWZgdgXbqWcB5KgJbAcLYPAOk,3930
|
|
716
|
-
scitex/fts/_fig/_models/_Styles.py,sha256=3WYhR_ZHTKpA9phkMP32IVGdzXdqag_AVzb1Y_7QL4U,6449
|
|
717
|
-
scitex/fts/_fig/_models/__init__.py,sha256=BqBMOn7wrIz1AAuh86Yi2eJ9oHFy3DCTjtJPKPYR1gs,1686
|
|
718
|
-
scitex/fts/_fig/_models/_plot_types/__init__.py,sha256=t7vrsrJ9Y87a20TwR7x8raqJkrXBRCxmKRArUVIpkds,3879
|
|
719
|
-
scitex/fts/_fig/_models/_plot_types/_bar.py,sha256=nboN7tCpkTgTIVrzkLv7kp2VFgJjrQe1DvhCL7nOBGw,1055
|
|
720
|
-
scitex/fts/_fig/_models/_plot_types/_box.py,sha256=rwZ0npSKDP_M4lusFOfqYAQH8lK710YireIFyxYxftY,900
|
|
721
|
-
scitex/fts/_fig/_models/_plot_types/_distribution.py,sha256=rhYkiosC6YFwjTb-4zB5-yxieiaXWmYFjVxy3W9MHm4,833
|
|
722
|
-
scitex/fts/_fig/_models/_plot_types/_errorbar.py,sha256=WfkVq_HP1ERnuWfbn9Y02pfdo8KZc9U4KXpe8Dv2X9g,1527
|
|
723
|
-
scitex/fts/_fig/_models/_plot_types/_histogram.py,sha256=Hlh_ztf0pEOdKjCAcrw832W9NSmb6LyUTT-FfpV0V9E,696
|
|
724
|
-
scitex/fts/_fig/_models/_plot_types/_image.py,sha256=etFoQpRVTh5ii5KYzVoUUDPi-wvHZVdVVcLnXzgXx2I,1483
|
|
725
|
-
scitex/fts/_fig/_models/_plot_types/_line.py,sha256=YE0FiccyJZRqLxvlsWKpPwaQQ3aEhUZfjtdrtSW0z-U,1385
|
|
726
|
-
scitex/fts/_fig/_models/_plot_types/_scatter.py,sha256=KuU6AHybncoMYc86D0v88xSBp6pru6O9Q8-pqYcL3qU,712
|
|
727
|
-
scitex/fts/_fig/_models/_plot_types/_seaborn.py,sha256=bPdy6yc2YH6XPJpTUznmX-8HEB0sdVSUZZ4aCOdR_KU,2720
|
|
728
|
-
scitex/fts/_fig/_models/_plot_types/_violin.py,sha256=8MbXK-klYo2q6VWp-vvj--oGEMzgSmSlTb-zJJTypRA,829
|
|
729
|
-
scitex/fts/_fig/_utils/__init__.py,sha256=i3XJ0gNFodkYz1dNKtNyfj23Tf0JTOM4jY24eSh-vDw,2851
|
|
730
|
-
scitex/fts/_fig/_utils/_auto_layout.py,sha256=KxDQRpXqB1FfbKZXQUZHKGIfqiRDPJq5B58ABtgQE9k,3861
|
|
731
|
-
scitex/fts/_fig/_utils/_calc_bounds.py,sha256=Kyd5Nx9_lOezA4XTFWfN5Bp8ycAd8mgbsUADS2nNx9w,3089
|
|
732
|
-
scitex/fts/_fig/_utils/_const_sizes.py,sha256=jU6naytIR8v6_RM30bPIddcvhPuqc6qF_UinCo3GVMM,976
|
|
733
|
-
scitex/fts/_fig/_utils/_convert_coords.py,sha256=X0rSEOCe29k_CNofzxpEzDONpD9N2cHSNI-hv6MR3Hk,1958
|
|
734
|
-
scitex/fts/_fig/_utils/_get_template.py,sha256=YfNjrXfLX5XuQkyfFqxIEThJz5SLMW4_0ECM3GSkzh4,5146
|
|
735
|
-
scitex/fts/_fig/_utils/_normalize.py,sha256=DKYZaf02VahivH7jTakpTqrh17LGf5iYGTuhRR36uRI,1954
|
|
736
|
-
scitex/fts/_fig/_utils/_plot_layout.py,sha256=TiK3n9au6ISmns5nDiJ0Nwpm4PFAMp0Yn7jYv7CLRhQ,10504
|
|
737
|
-
scitex/fts/_fig/_utils/_validate.py,sha256=DeSiFBSyiGT_19jWu8tVoppm1SLMwADYQQw8D6Ny11A,5249
|
|
738
|
-
scitex/fts/_kinds/__init__.py,sha256=LdnypJTNv7VdOVEIt4PllEow9uTr7JPqfUnc3lUtUo0,1065
|
|
739
|
-
scitex/fts/_kinds/_figure/__init__.py,sha256=81tReIA2ZZ8fuIOmF0F88p_wzf_hey3xSAhUKhEav9k,519
|
|
740
|
-
scitex/fts/_kinds/_figure/_composite.py,sha256=Pk-rcOdaNVzr2EskTr2ikLGi7bTA7AjZcKOV5Hq9uYI,10047
|
|
741
|
-
scitex/fts/_kinds/_plot/__init__.py,sha256=bgqhoe0ymnoiaoF5adrtcLgGE7VbsFrxTNVfTfiOLSg,616
|
|
742
|
-
scitex/fts/_kinds/_plot/_backend/__init__.py,sha256=AqgjdE6tUJkJ5WkOMJ1bJeOLs6_1Nv70hrM8hz6cVM8,1087
|
|
743
|
-
scitex/fts/_kinds/_plot/_backend/_export.py,sha256=4pfma3kpba1SnODGRZLlMBgybRTAH0DnUv2ITjwukUw,3888
|
|
744
|
-
scitex/fts/_kinds/_plot/_backend/_parser.py,sha256=leO0NbA9PMR2gJKTn4pWsxy28lG6WbLcKcJjCHmpdj0,4469
|
|
745
|
-
scitex/fts/_kinds/_plot/_backend/_render.py,sha256=9xKjbeHWZgZVOziOKuonT4ZOuGAUo4PHzsmY7lk_6MI,15186
|
|
746
|
-
scitex/fts/_kinds/_plot/_dataclasses/_ChannelEncoding.py,sha256=6mL_YMhBWmnqESYj0875m1axQJsDYWyrkUTNfNDriXA,1385
|
|
747
|
-
scitex/fts/_kinds/_plot/_dataclasses/_Encoding.py,sha256=WvAaCkkrw-upC9WoIyfmgceQxHfjNARnHl3iYbKbgQw,2258
|
|
748
|
-
scitex/fts/_kinds/_plot/_dataclasses/_Theme.py,sha256=vcAwbR_ZyXOxL3MudyyoExZvqWgdKNLNOc94ICv3e8w,13267
|
|
749
|
-
scitex/fts/_kinds/_plot/_dataclasses/_TraceEncoding.py,sha256=EOe3D08tqMgF7GvbADUSq2q8seA5JSXhvRNroFvuK5U,1876
|
|
750
|
-
scitex/fts/_kinds/_plot/_dataclasses/__init__.py,sha256=CyWdQy_Q8Y1lpo0McdUn29TS6kepLOn1mT7PEBFjYnM,881
|
|
751
|
-
scitex/fts/_kinds/_plot/_models/_Annotations.py,sha256=C7z0K7QOUP40n0Ke5SWetqfAJ-Ubb_EYOWwSu9jq0Kk,3672
|
|
752
|
-
scitex/fts/_kinds/_plot/_models/_Axes.py,sha256=hIbNYrOGXDtRI27vPfKG8WbGF3dY17mdulQQ-nZ41Xw,4563
|
|
753
|
-
scitex/fts/_kinds/_plot/_models/_Figure.py,sha256=SXTAdRu0aycKGaZk29G2s5zXfcqS1ozGp7xz85YEV_w,3762
|
|
754
|
-
scitex/fts/_kinds/_plot/_models/_Guides.py,sha256=XxLcawBO15Eptc1nT9gm97KIfbZWZ3RPNyfkNK5xHpk,3392
|
|
755
|
-
scitex/fts/_kinds/_plot/_models/_Plot.py,sha256=vbZslp9KEHwSUQlnbiCWZgdgXbqWcB5KgJbAcLYPAOk,3930
|
|
756
|
-
scitex/fts/_kinds/_plot/_models/_Styles.py,sha256=3WYhR_ZHTKpA9phkMP32IVGdzXdqag_AVzb1Y_7QL4U,6449
|
|
757
|
-
scitex/fts/_kinds/_plot/_models/__init__.py,sha256=BqBMOn7wrIz1AAuh86Yi2eJ9oHFy3DCTjtJPKPYR1gs,1686
|
|
758
|
-
scitex/fts/_kinds/_plot/_models/_plot_types/__init__.py,sha256=t7vrsrJ9Y87a20TwR7x8raqJkrXBRCxmKRArUVIpkds,3879
|
|
759
|
-
scitex/fts/_kinds/_plot/_models/_plot_types/_bar.py,sha256=nboN7tCpkTgTIVrzkLv7kp2VFgJjrQe1DvhCL7nOBGw,1055
|
|
760
|
-
scitex/fts/_kinds/_plot/_models/_plot_types/_box.py,sha256=rwZ0npSKDP_M4lusFOfqYAQH8lK710YireIFyxYxftY,900
|
|
761
|
-
scitex/fts/_kinds/_plot/_models/_plot_types/_distribution.py,sha256=rhYkiosC6YFwjTb-4zB5-yxieiaXWmYFjVxy3W9MHm4,833
|
|
762
|
-
scitex/fts/_kinds/_plot/_models/_plot_types/_errorbar.py,sha256=WfkVq_HP1ERnuWfbn9Y02pfdo8KZc9U4KXpe8Dv2X9g,1527
|
|
763
|
-
scitex/fts/_kinds/_plot/_models/_plot_types/_histogram.py,sha256=Hlh_ztf0pEOdKjCAcrw832W9NSmb6LyUTT-FfpV0V9E,696
|
|
764
|
-
scitex/fts/_kinds/_plot/_models/_plot_types/_image.py,sha256=etFoQpRVTh5ii5KYzVoUUDPi-wvHZVdVVcLnXzgXx2I,1483
|
|
765
|
-
scitex/fts/_kinds/_plot/_models/_plot_types/_line.py,sha256=YE0FiccyJZRqLxvlsWKpPwaQQ3aEhUZfjtdrtSW0z-U,1385
|
|
766
|
-
scitex/fts/_kinds/_plot/_models/_plot_types/_scatter.py,sha256=KuU6AHybncoMYc86D0v88xSBp6pru6O9Q8-pqYcL3qU,712
|
|
767
|
-
scitex/fts/_kinds/_plot/_models/_plot_types/_seaborn.py,sha256=bPdy6yc2YH6XPJpTUznmX-8HEB0sdVSUZZ4aCOdR_KU,2720
|
|
768
|
-
scitex/fts/_kinds/_plot/_models/_plot_types/_violin.py,sha256=8MbXK-klYo2q6VWp-vvj--oGEMzgSmSlTb-zJJTypRA,829
|
|
769
|
-
scitex/fts/_kinds/_plot/_utils/__init__.py,sha256=i3XJ0gNFodkYz1dNKtNyfj23Tf0JTOM4jY24eSh-vDw,2851
|
|
770
|
-
scitex/fts/_kinds/_plot/_utils/_auto_layout.py,sha256=KxDQRpXqB1FfbKZXQUZHKGIfqiRDPJq5B58ABtgQE9k,3861
|
|
771
|
-
scitex/fts/_kinds/_plot/_utils/_calc_bounds.py,sha256=Kyd5Nx9_lOezA4XTFWfN5Bp8ycAd8mgbsUADS2nNx9w,3089
|
|
772
|
-
scitex/fts/_kinds/_plot/_utils/_const_sizes.py,sha256=jU6naytIR8v6_RM30bPIddcvhPuqc6qF_UinCo3GVMM,976
|
|
773
|
-
scitex/fts/_kinds/_plot/_utils/_convert_coords.py,sha256=X0rSEOCe29k_CNofzxpEzDONpD9N2cHSNI-hv6MR3Hk,1958
|
|
774
|
-
scitex/fts/_kinds/_plot/_utils/_get_template.py,sha256=YfNjrXfLX5XuQkyfFqxIEThJz5SLMW4_0ECM3GSkzh4,5146
|
|
775
|
-
scitex/fts/_kinds/_plot/_utils/_normalize.py,sha256=DKYZaf02VahivH7jTakpTqrh17LGf5iYGTuhRR36uRI,1954
|
|
776
|
-
scitex/fts/_kinds/_plot/_utils/_plot_layout.py,sha256=TiK3n9au6ISmns5nDiJ0Nwpm4PFAMp0Yn7jYv7CLRhQ,10504
|
|
777
|
-
scitex/fts/_kinds/_plot/_utils/_validate.py,sha256=DeSiFBSyiGT_19jWu8tVoppm1SLMwADYQQw8D6Ny11A,5249
|
|
778
|
-
scitex/fts/_kinds/_shape/__init__.py,sha256=AN4ek5W48pXRtX1eP40QQloIW_Qc1xEjM5wDlEmGN_s,3610
|
|
779
|
-
scitex/fts/_kinds/_stats/__init__.py,sha256=sod-ZsKOkcO2YxMQaYzgBjq3w_l8XLy3k8ZPbgTz7cg,1094
|
|
780
|
-
scitex/fts/_kinds/_stats/_dataclasses/_Stats.py,sha256=69fDS2944puQY8UzG2sXqo7x3j32bXRoffYihp_0R7s,13051
|
|
781
|
-
scitex/fts/_kinds/_stats/_dataclasses/__init__.py,sha256=-CtLEMmmWtFR_SpFZ1zSkaerw0EUxTc8jeVt89ojtnQ,847
|
|
782
|
-
scitex/fts/_kinds/_table/__init__.py,sha256=O6dtGct-b7T1Hka33f2P7aBsAr4k1lelnHFzZdejrrQ,1636
|
|
783
|
-
scitex/fts/_kinds/_table/_latex/__init__.py,sha256=HrG9hFDH5aTLaEHvQRQwHCHueN8aaU0dFj3PD4d2mic,2269
|
|
784
|
-
scitex/fts/_kinds/_table/_latex/_export.py,sha256=G9yAavCxSmGcAoymV-XDGcgc6XpWD_g8-1nhyiuaM3o,7736
|
|
785
|
-
scitex/fts/_kinds/_table/_latex/_figure_exporter.py,sha256=5IeGIWaInuh1qYxFJovGSSlmx9iT7Gc87WL5DWXCvBM,4126
|
|
786
|
-
scitex/fts/_kinds/_table/_latex/_stats_formatter.py,sha256=Mxf4OU-cCpDTXp8xdHyr44Tcpr8yBwNKISqfacjXGpw,7139
|
|
787
|
-
scitex/fts/_kinds/_table/_latex/_table_exporter.py,sha256=j4502-6gWDQDT6y7BAP0FvGkAN1u7lSLqOZeY3fKip0,10025
|
|
788
|
-
scitex/fts/_kinds/_table/_latex/_utils.py,sha256=W1KppVnnePG-0XO6M8W1iPxTsHEvHXj056HlJIaRyr4,8517
|
|
789
|
-
scitex/fts/_kinds/_table/_latex/_validator.py,sha256=-qFYTfhvjR3RJqHxzP9iCdnfzuD38FU43A4IL9YL5og,13860
|
|
790
|
-
scitex/fts/_kinds/_table/_latex/_editor/__init__.py,sha256=kPYs5u0RKvWAtoQPhv-9xXtk0kZqvWpGaVsWu5ldivY,246
|
|
791
|
-
scitex/fts/_kinds/_table/_latex/_editor/_app.py,sha256=AO_TH8gxDHF1thAtMsSolQ4eX1XNpY9jzw2cZwVq6vA,22975
|
|
792
|
-
scitex/fts/_kinds/_text/__init__.py,sha256=QTSjHfNEJBbCW5kJ32O5_ujUO-PPIDmPze1M-xjjIg0,1875
|
|
793
|
-
scitex/fts/_schemas/data_info.schema.json,sha256=NcC6HIvxJyEEPQeN8v3gcfqXIpcT1_PlSj3WQiUlaVc,2468
|
|
794
|
-
scitex/fts/_schemas/encoding.schema.json,sha256=CCc-qTrcezctpaLrpzQ8MQqLW8bKfgGtuaaSjfuuZZA,2414
|
|
795
|
-
scitex/fts/_schemas/node.schema.json,sha256=W7cE5jJnG4YqciQmKwrPaSV-Kbpjh58RyacF_yElX4g,4500
|
|
796
|
-
scitex/fts/_schemas/render_manifest.schema.json,sha256=zVa0HIwkMF1Dmr4vg0Idfn-rnucjloa364DaXy154Xc,1730
|
|
797
|
-
scitex/fts/_schemas/stats.schema.json,sha256=M1MMSRkK3kyET2chzPeyCl2-Blfn2mbNxnvVF0X5HMU,4860
|
|
798
|
-
scitex/fts/_schemas/theme.schema.json,sha256=WwCQ69cMwvq32XAE3hKz-CbTTIY0ltH5j1tJoLzTzPI,5399
|
|
799
|
-
scitex/fts/_stats/__init__.py,sha256=Bm3zdK_HtpcXdIZHSSk5BAVlZBEzF5uam5AFoxDAlp0,842
|
|
800
|
-
scitex/fts/_stats/_dataclasses/_Stats.py,sha256=69fDS2944puQY8UzG2sXqo7x3j32bXRoffYihp_0R7s,13051
|
|
801
|
-
scitex/fts/_stats/_dataclasses/__init__.py,sha256=-CtLEMmmWtFR_SpFZ1zSkaerw0EUxTc8jeVt89ojtnQ,847
|
|
802
|
-
scitex/fts/_tables/__init__.py,sha256=7LhNKptU6IooyqPAVhUPspjQDAx8MTozvHtfVsQ7Nig,1427
|
|
803
|
-
scitex/fts/_tables/_latex/__init__.py,sha256=HrG9hFDH5aTLaEHvQRQwHCHueN8aaU0dFj3PD4d2mic,2269
|
|
804
|
-
scitex/fts/_tables/_latex/_export.py,sha256=G9yAavCxSmGcAoymV-XDGcgc6XpWD_g8-1nhyiuaM3o,7736
|
|
805
|
-
scitex/fts/_tables/_latex/_figure_exporter.py,sha256=5IeGIWaInuh1qYxFJovGSSlmx9iT7Gc87WL5DWXCvBM,4126
|
|
806
|
-
scitex/fts/_tables/_latex/_stats_formatter.py,sha256=Mxf4OU-cCpDTXp8xdHyr44Tcpr8yBwNKISqfacjXGpw,7139
|
|
807
|
-
scitex/fts/_tables/_latex/_table_exporter.py,sha256=j4502-6gWDQDT6y7BAP0FvGkAN1u7lSLqOZeY3fKip0,10025
|
|
808
|
-
scitex/fts/_tables/_latex/_utils.py,sha256=W1KppVnnePG-0XO6M8W1iPxTsHEvHXj056HlJIaRyr4,8517
|
|
809
|
-
scitex/fts/_tables/_latex/_validator.py,sha256=-qFYTfhvjR3RJqHxzP9iCdnfzuD38FU43A4IL9YL5og,13860
|
|
810
|
-
scitex/fts/_tables/_latex/_editor/__init__.py,sha256=kPYs5u0RKvWAtoQPhv-9xXtk0kZqvWpGaVsWu5ldivY,246
|
|
811
|
-
scitex/fts/_tables/_latex/_editor/_app.py,sha256=AO_TH8gxDHF1thAtMsSolQ4eX1XNpY9jzw2cZwVq6vA,22975
|
|
812
602
|
scitex/gen/README.md,sha256=EGYlW0K3o8BVhUTRPMXiyHxAaIhk4BN8EXZCQrm1F98,2782
|
|
813
603
|
scitex/gen/_DimHandler.py,sha256=rQOprYZmpkZl_lrXnRsFh_Q6hFSyrFj4_sdC-qoPkRQ,6752
|
|
814
604
|
scitex/gen/_TimeStamper.py,sha256=td1N0Jah6oSckjxcMix39EltC7_F4Ffx58Q46AcyXc8,6927
|
|
@@ -869,12 +659,12 @@ scitex/git/_validation.py,sha256=Hobe4BGXRpvHIk_E71O_KtbZyVnqgSy7ow5fEAvcW_E,260
|
|
|
869
659
|
scitex/git/_workflow.py,sha256=Cdi3Hh8Br1OAP6Yl9ikABp_4V2_pbX91truMgcY0200,2235
|
|
870
660
|
scitex/io/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
871
661
|
scitex/io/README.md,sha256=kB10P6YkqqgiyT_cL6Z2kHLbEUKDwQPxsXRYh-ENcmQ,10727
|
|
872
|
-
scitex/io/__init__.py,sha256=
|
|
662
|
+
scitex/io/__init__.py,sha256=FWQkvUB-nDY5XHNYm8jI868VYOeUWibuSjAC9FrOegQ,2777
|
|
873
663
|
scitex/io/_cache.py,sha256=2T10CGtFaxwTGICtFvWWEAhpENlgCMJ1cEqIm2nyTSo,2931
|
|
874
664
|
scitex/io/_flush.py,sha256=jwrMub6mKqvFPcwAN_fm0fYG6EbVbtl69iYTItG8_eE,562
|
|
875
665
|
scitex/io/_glob.py,sha256=HS95I9UhxELzhGtawqhgSForIekNBDYdy3335mr46mQ,3541
|
|
876
666
|
scitex/io/_json2md.py,sha256=zk4fPWbFqZTp8jd62zctR0ci9ZVeR2hMeyhAQcQr1HY,3259
|
|
877
|
-
scitex/io/_load.py,sha256=
|
|
667
|
+
scitex/io/_load.py,sha256=fyu7GsPh1P2Jsrd80mzYvRQXKUcXrNQVMkARA9GrSfw,15014
|
|
878
668
|
scitex/io/_load_cache.py,sha256=P5MkAAOFzzG9e50XRV4DWdqvsLY1F9d4-512nFYFdd8,7432
|
|
879
669
|
scitex/io/_load_configs.py,sha256=BUwqz1ngk5FKszaC69nVaY1t2r4YDQlkK2GJfp6Pfpg,5714
|
|
880
670
|
scitex/io/_metadata.py,sha256=_Xw8YtDWc8T2tWBIwXB6j3fjpUQz2c3M8qM9UhSQXzk,1172
|
|
@@ -882,16 +672,16 @@ scitex/io/_mv_to_tmp.py,sha256=oNwVn4WliWX2dFsSnkrA6B7Yn-BNX6O5hHrCbjXWufg,421
|
|
|
882
672
|
scitex/io/_path.py,sha256=mqbs2Y2kJP-IHwvdtnJs8vyime9i0QY8bh3IyVEP3qA,7803
|
|
883
673
|
scitex/io/_qr_utils.py,sha256=4BcTQ97McNTAt5_3TsG5BQcWo6Cc-BTu9BxIy97ofoY,2047
|
|
884
674
|
scitex/io/_reload.py,sha256=k3FSMO-ts0sAqNVYroVAG5rxk7haIRtyDbPl1ZvLIfw,2780
|
|
885
|
-
scitex/io/_save.py,sha256
|
|
675
|
+
scitex/io/_save.py,sha256=KZzP83uiH4D1xIkSZf--BA3AuDr0PAGqvrhjf1FT8AA,15645
|
|
886
676
|
scitex/io/_load_modules/_H5Explorer.py,sha256=AkFpSMvAQFAuZ1FH6M4nHhH2TAsuxpvdsiihRUjmk54,10281
|
|
887
677
|
scitex/io/_load_modules/_ZarrExplorer.py,sha256=nh9WaxnVTSU5hK7fsZrj64pCiJBD8vkacBV3TaKpFW0,3320
|
|
888
678
|
scitex/io/_load_modules/__init__.py,sha256=4uPppcQMBc-7Yjy4k1MF7tvJcHiQyP-xS1L1SE9et80,1177
|
|
889
679
|
scitex/io/_load_modules/_bibtex.py,sha256=epfJANcpSzLJiWuPlYy-GxdKYwIX87f1bPxqUFbheQc,5472
|
|
890
|
-
scitex/io/_load_modules/_canvas.py,sha256=
|
|
680
|
+
scitex/io/_load_modules/_canvas.py,sha256=Bqe5nCWQZAggTDxQwJWNLvZB9dxvObVo9aPHgFvfbbs,4975
|
|
891
681
|
scitex/io/_load_modules/_catboost.py,sha256=mj5B3eyUaemMap_dGxeawh-5gnhXniGXij_eP2hHUcA,1678
|
|
892
|
-
scitex/io/_load_modules/_con.py,sha256=
|
|
682
|
+
scitex/io/_load_modules/_con.py,sha256=XUfoa7H6VLQbCejEMFfOV0c6C7IsUsi4mcvGM1joLLs,474
|
|
893
683
|
scitex/io/_load_modules/_docx.py,sha256=UKboIkZLQfzUk1xQqA5taJb15NjePL6oJAKTganFqk4,933
|
|
894
|
-
scitex/io/_load_modules/_eeg.py,sha256=
|
|
684
|
+
scitex/io/_load_modules/_eeg.py,sha256=HKFJxZceujbBd0_lRBY4_bKbsBdh4B-w0SAfauEfAdM,3682
|
|
895
685
|
scitex/io/_load_modules/_hdf5.py,sha256=XRFDa31URMws_-4KXWKzNKPd4cIGwZDfHf1ruOZq2fk,1922
|
|
896
686
|
scitex/io/_load_modules/_image.py,sha256=ooQRQZWcE05sgq_7MpfW2XX2sLhHxIWX4cYPwLspU4U,1910
|
|
897
687
|
scitex/io/_load_modules/_joblib.py,sha256=yiw0FlBp1EYdvIZt1OG45Wvzi4MZvMt7cTy4H81J4S4,452
|
|
@@ -921,9 +711,9 @@ scitex/io/_metadata_modules/read_metadata_jpeg.py,sha256=D_MtPoyF6PTUyTWKdkpwom0
|
|
|
921
711
|
scitex/io/_metadata_modules/read_metadata_pdf.py,sha256=44g-FRmEPNGUnI8ca5hGTWjgbs0rp88wjcDDHe5VqgY,1531
|
|
922
712
|
scitex/io/_metadata_modules/read_metadata_png.py,sha256=LWNgv6I3wqDYR7I0gAtRpz8TWX5Ny6ql7AJPp63S7Us,984
|
|
923
713
|
scitex/io/_metadata_modules/read_metadata_svg.py,sha256=GLE6cW431zkugdvPKU0mwBTl6B8mFaOFawbHWKLPV94,1078
|
|
924
|
-
scitex/io/_save_modules/__init__.py,sha256=
|
|
714
|
+
scitex/io/_save_modules/__init__.py,sha256=nTqK68ijKanAHqPUxAoWybSYzAQDQEEq4rh9WSJt4wM,3568
|
|
925
715
|
scitex/io/_save_modules/_bibtex.py,sha256=m96wkWvuQtI4wEV0lUzu90HLca23p3BjPI8qj1bmEVE,5889
|
|
926
|
-
scitex/io/_save_modules/_canvas.py,sha256
|
|
716
|
+
scitex/io/_save_modules/_canvas.py,sha256=-XhT7e77iKwlLaymQHwCNXOvXluAfKWnoH_XylOULbo,11618
|
|
927
717
|
scitex/io/_save_modules/_catboost.py,sha256=TItHfm-HEG7HlbUb4Qtl46pJm_0deWZlgmNxeyKG2KY,501
|
|
928
718
|
scitex/io/_save_modules/_csv.py,sha256=8YcALFvHZETQDL9KzAu1kgU64Kxyaj5Fc2fzDP__2I4,3256
|
|
929
719
|
scitex/io/_save_modules/_excel.py,sha256=iR2R2bCDhYLxN0nDAi0f-Lm_g5QrbAJAXbLgkoh0TEQ,6309
|
|
@@ -942,22 +732,109 @@ scitex/io/_save_modules/_mp4.py,sha256=VuUL1Uf3V_kxp2BWQ_4fl6RtZa2t3Ift0eIO5ez10
|
|
|
942
732
|
scitex/io/_save_modules/_numpy.py,sha256=SCa7ND6M5SSC8hvubvgM1W1fs6Xb_C3lfAncl_9b1lQ,1327
|
|
943
733
|
scitex/io/_save_modules/_optuna_study_as_csv_and_pngs.py,sha256=MRL0MQjFfpKPKyE0Y9fgcF2ifyMM-ftkpvu6oW7kjQI,1225
|
|
944
734
|
scitex/io/_save_modules/_pickle.py,sha256=LD6W8VqpVSQ8SXbgUgdYn7MrEU3ylHoViW_NepBioSk,939
|
|
735
|
+
scitex/io/_save_modules/_plot_bundle.py,sha256=MHM714rocxQA8FBiSdA_8H92HpOcQycSztSJaCmE4ds,3330
|
|
736
|
+
scitex/io/_save_modules/_plot_scitex.py,sha256=ye-FY_ojbFX4tj3hwivaCmf-BFUtNPg8AEWxMbIBGro,17404
|
|
945
737
|
scitex/io/_save_modules/_plotly.py,sha256=l4TuewsVZIMxd9-nX_88u306VtpS6X4BDC_nrSGGqo0,666
|
|
946
|
-
scitex/io/_save_modules/
|
|
947
|
-
scitex/io/_save_modules/_pltz_stx.py,sha256=YhPq6EShwibbMsWxkK1Cemhf-6azihp5HFS5G7Lc9JM,17378
|
|
948
|
-
scitex/io/_save_modules/_stx_bundle.py,sha256=9cQx5D4vA6Hjnnj4XlUy6_ahURF9hK6k3jW5I1qWbCk,3474
|
|
738
|
+
scitex/io/_save_modules/_stx_bundle.py,sha256=Cwjk-8MGmMtM8VXjpgb0daGD0YxsTj2i2KSsJLc5Zq8,3487
|
|
949
739
|
scitex/io/_save_modules/_symlink.py,sha256=Uc149jM5Y4EMq49hZUGesaLGPLXgNTIcqkPxssCPJHw,3445
|
|
950
740
|
scitex/io/_save_modules/_tex.py,sha256=OVI0LEtpHQhDykAaOPtoH_9jwtiVYk1zZtj46U88ftA,6990
|
|
951
741
|
scitex/io/_save_modules/_text.py,sha256=bsuHOiZ_36WDFwQEaPYKQcVysHjQ4_HHd5K4L-o4MRg,506
|
|
952
742
|
scitex/io/_save_modules/_torch.py,sha256=iSeWP1cq0HgNzJ06X-B8Htj5zzMYKobiyTARivqXIno,689
|
|
953
743
|
scitex/io/_save_modules/_yaml.py,sha256=hLsixxB28CDS8dp7txr0EgIgGT4NRC-Jlb9sJJwoBkA,2236
|
|
954
744
|
scitex/io/_save_modules/_zarr.py,sha256=EfCDvKYFzlb2puExrhgUCxACXdMduLfBkEtnqo0eTsM,6521
|
|
955
|
-
scitex/io/bundle/README.md,sha256=
|
|
956
|
-
scitex/io/bundle/
|
|
957
|
-
scitex/io/bundle/
|
|
958
|
-
scitex/io/bundle/
|
|
959
|
-
scitex/io/bundle/
|
|
960
|
-
scitex/io/bundle/
|
|
745
|
+
scitex/io/bundle/README.md,sha256=CMuuI1_mkYiWsyURYIcpF1jxhW5UYex0HFMUFh4YHf4,6738
|
|
746
|
+
scitex/io/bundle/_Bundle.py,sha256=OdnXJqIHblJUPG3IB_m0j_rWkkityDsoRoAKdi9J8T0,25602
|
|
747
|
+
scitex/io/bundle/__init__.py,sha256=2NUehGjTdKmASWlRpN7XQT51rPx8PsgulwLbTH_w9WA,3203
|
|
748
|
+
scitex/io/bundle/_children.py,sha256=DimlzqjYJTrzGSLHVtlUcX6SVWSCEP5u_kf1tfvAHkg,6794
|
|
749
|
+
scitex/io/bundle/_core.py,sha256=pZTHHQbCRRZyWqWnJlOsv6H5uleLnr3BvoQJVKfiFik,19050
|
|
750
|
+
scitex/io/bundle/_loader.py,sha256=L_OMf3d6pfZyzFwn9ImJFOUyzKpexW4rS_aIpOc17CM,3845
|
|
751
|
+
scitex/io/bundle/_manifest.py,sha256=Nn-yd5LLh2tD0Y5YXE9VAkgBfeCbvpLtaa6_P-LTzAA,2426
|
|
752
|
+
scitex/io/bundle/_mpl_helpers.py,sha256=a6FNEE_65mK4BomZ6_tdAtZuzqqp8cXCoRzYtRt_vNQ,16197
|
|
753
|
+
scitex/io/bundle/_nested.py,sha256=mQJtbkUluLkJXP7Bn1UFd7KYzTQKXpd75CPCTPWPRiA,24075
|
|
754
|
+
scitex/io/bundle/_saver.py,sha256=d-nP_m6LpAfFYK5WDyrhmcGvefjpvWBecEz992ABh4g,8802
|
|
755
|
+
scitex/io/bundle/_storage.py,sha256=Hn6HcW8q6K5DkYyleEDCPJ8qzGOuWe7ZZe5duS7NSwE,6151
|
|
756
|
+
scitex/io/bundle/_types.py,sha256=44gIPPvT6s1hMRzae8Ujv_kmFiRE3fVs1TSyz2EII20,2324
|
|
757
|
+
scitex/io/bundle/_validation.py,sha256=7qjXBBQ-s5nSjfpN5ybiR-9RcpllJKjl-IywQQP6BzA,13188
|
|
758
|
+
scitex/io/bundle/_zip.py,sha256=iZcU6m3CmTfQIH7kD0An4S6U-rCwo_gJrcLG2pl-PUk,15229
|
|
759
|
+
scitex/io/bundle/_conversion/__init__.py,sha256=WH9KoCKSJmP7BsQhg68pYzJmj9BBVJTWyOALEzwkAlY,307
|
|
760
|
+
scitex/io/bundle/_conversion/_bundle2dict.py,sha256=Xwe7cMWjTjkMx3ieBgtDBFtb_jyFdhgFFsvcCWIu9zs,1077
|
|
761
|
+
scitex/io/bundle/_conversion/_dict2bundle.py,sha256=tPYDH2eV_ZtYCYpniBJUFxC8UXN7nCOnY7jjSK3iS8A,1214
|
|
762
|
+
scitex/io/bundle/_dataclasses/_Axes.py,sha256=FhHFUh7epHCiGibjbj7EDL2IYrZGZE_PjqaDQoYuRJU,1615
|
|
763
|
+
scitex/io/bundle/_dataclasses/_BBox.py,sha256=TtgcaPscnbBx4yh_XnIFiuS7Il2PHlJcLAfMhc8w7yI,1320
|
|
764
|
+
scitex/io/bundle/_dataclasses/_ColumnDef.py,sha256=7InhNo4DQPvlmMh4MbnpvIs6s_6wBV3Aoi-SHfsMs3Y,2217
|
|
765
|
+
scitex/io/bundle/_dataclasses/_DataFormat.py,sha256=zB1OCM3L4h-YTjVSMvQQmOMQ7um2aMslNThedJa7qtg,1007
|
|
766
|
+
scitex/io/bundle/_dataclasses/_DataInfo.py,sha256=GdovBGfMzGTiXh5nUeF6YyFZordSoPMfWL254LQyvlc,4150
|
|
767
|
+
scitex/io/bundle/_dataclasses/_DataSource.py,sha256=ytRsjmFgBznQle10YMzRFwdMmooaJNGHBbENnEu-7Pk,1160
|
|
768
|
+
scitex/io/bundle/_dataclasses/_SizeMM.py,sha256=X5EvivQsA4wb1hCQJlp2TYwsClkA6U-sIKO2Zzxok-k,921
|
|
769
|
+
scitex/io/bundle/_dataclasses/_Spec.py,sha256=O0IzZjeg7D72nLgKJLs_uwxDzCLTB0d2VzG5bzB9JWo,11791
|
|
770
|
+
scitex/io/bundle/_dataclasses/_SpecRefs.py,sha256=zesJyNPRIXB1X4YudJBHuMqJYWvK7pQ03ALB9WHVKPE,1191
|
|
771
|
+
scitex/io/bundle/_dataclasses/__init__.py,sha256=T2_k4ZGAV2gpGwmrVOzMGwGcx4V1DetMKK5cJxHEcWk,813
|
|
772
|
+
scitex/io/bundle/_extractors/__init__.py,sha256=2OdqonQMmRYhwgm2uLDdrNL_ib8zLKIxrArJdhXfkNg,810
|
|
773
|
+
scitex/io/bundle/_extractors/_extract_bar.py,sha256=gKHsJntyV7-K5YY4a5UH_SXH838-8rZ92lBiz7BFQ5A,3567
|
|
774
|
+
scitex/io/bundle/_extractors/_extract_line.py,sha256=9W_iZ9ZFNi4rqpAd9wE8-wImeqDjc3zTLm1fRqPwvXI,1970
|
|
775
|
+
scitex/io/bundle/_extractors/_extract_scatter.py,sha256=03lQJJzgIyWNXo1DAvx47xB3HLER1IkvDeFc1_DxhPE,2250
|
|
776
|
+
scitex/io/bundle/kinds/__init__.py,sha256=LdnypJTNv7VdOVEIt4PllEow9uTr7JPqfUnc3lUtUo0,1065
|
|
777
|
+
scitex/io/bundle/kinds/_figure/__init__.py,sha256=81tReIA2ZZ8fuIOmF0F88p_wzf_hey3xSAhUKhEav9k,519
|
|
778
|
+
scitex/io/bundle/kinds/_figure/_composite.py,sha256=Pk-rcOdaNVzr2EskTr2ikLGi7bTA7AjZcKOV5Hq9uYI,10047
|
|
779
|
+
scitex/io/bundle/kinds/_plot/__init__.py,sha256=bgqhoe0ymnoiaoF5adrtcLgGE7VbsFrxTNVfTfiOLSg,616
|
|
780
|
+
scitex/io/bundle/kinds/_plot/_backend/__init__.py,sha256=AqgjdE6tUJkJ5WkOMJ1bJeOLs6_1Nv70hrM8hz6cVM8,1087
|
|
781
|
+
scitex/io/bundle/kinds/_plot/_backend/_export.py,sha256=4pfma3kpba1SnODGRZLlMBgybRTAH0DnUv2ITjwukUw,3888
|
|
782
|
+
scitex/io/bundle/kinds/_plot/_backend/_parser.py,sha256=eQi4uaP2ov11BX-wC0pBPBnYOGpimJktwNS9tSpJx8c,4472
|
|
783
|
+
scitex/io/bundle/kinds/_plot/_backend/_render.py,sha256=9xKjbeHWZgZVOziOKuonT4ZOuGAUo4PHzsmY7lk_6MI,15186
|
|
784
|
+
scitex/io/bundle/kinds/_plot/_dataclasses/_ChannelEncoding.py,sha256=6mL_YMhBWmnqESYj0875m1axQJsDYWyrkUTNfNDriXA,1385
|
|
785
|
+
scitex/io/bundle/kinds/_plot/_dataclasses/_Encoding.py,sha256=WvAaCkkrw-upC9WoIyfmgceQxHfjNARnHl3iYbKbgQw,2258
|
|
786
|
+
scitex/io/bundle/kinds/_plot/_dataclasses/_Theme.py,sha256=vcAwbR_ZyXOxL3MudyyoExZvqWgdKNLNOc94ICv3e8w,13267
|
|
787
|
+
scitex/io/bundle/kinds/_plot/_dataclasses/_TraceEncoding.py,sha256=EOe3D08tqMgF7GvbADUSq2q8seA5JSXhvRNroFvuK5U,1876
|
|
788
|
+
scitex/io/bundle/kinds/_plot/_dataclasses/__init__.py,sha256=CyWdQy_Q8Y1lpo0McdUn29TS6kepLOn1mT7PEBFjYnM,881
|
|
789
|
+
scitex/io/bundle/kinds/_plot/_models/_Annotations.py,sha256=4HVNgvZ2G2EdUe09vySYUb1UPlEuBmFQzg8Da7L0FII,3675
|
|
790
|
+
scitex/io/bundle/kinds/_plot/_models/_Axes.py,sha256=o0zQND8a1iMbtD6rkaNc84AGozWpAdGBQGJq4gQECLQ,4566
|
|
791
|
+
scitex/io/bundle/kinds/_plot/_models/_Figure.py,sha256=xa3KNtMQK2EZFwjOExib2mflJkdr3HeQ-t1qQgsKkSU,3765
|
|
792
|
+
scitex/io/bundle/kinds/_plot/_models/_Guides.py,sha256=XFChkKm8UZzJU45MS695WTh__kF3cbvtCoWgZHhxAec,3395
|
|
793
|
+
scitex/io/bundle/kinds/_plot/_models/_Plot.py,sha256=Is7I85ZWGKaWeYt3htOAx67W5gebtkvJSy7oxiey_kg,3933
|
|
794
|
+
scitex/io/bundle/kinds/_plot/_models/_Styles.py,sha256=1IgH4fzVG8ZgXPh2RrG1t73cLiUlfuYCRgroMMjEOiY,6452
|
|
795
|
+
scitex/io/bundle/kinds/_plot/_models/__init__.py,sha256=BqBMOn7wrIz1AAuh86Yi2eJ9oHFy3DCTjtJPKPYR1gs,1686
|
|
796
|
+
scitex/io/bundle/kinds/_plot/_models/_plot_types/__init__.py,sha256=t7vrsrJ9Y87a20TwR7x8raqJkrXBRCxmKRArUVIpkds,3879
|
|
797
|
+
scitex/io/bundle/kinds/_plot/_models/_plot_types/_bar.py,sha256=nboN7tCpkTgTIVrzkLv7kp2VFgJjrQe1DvhCL7nOBGw,1055
|
|
798
|
+
scitex/io/bundle/kinds/_plot/_models/_plot_types/_box.py,sha256=rwZ0npSKDP_M4lusFOfqYAQH8lK710YireIFyxYxftY,900
|
|
799
|
+
scitex/io/bundle/kinds/_plot/_models/_plot_types/_distribution.py,sha256=rhYkiosC6YFwjTb-4zB5-yxieiaXWmYFjVxy3W9MHm4,833
|
|
800
|
+
scitex/io/bundle/kinds/_plot/_models/_plot_types/_errorbar.py,sha256=WfkVq_HP1ERnuWfbn9Y02pfdo8KZc9U4KXpe8Dv2X9g,1527
|
|
801
|
+
scitex/io/bundle/kinds/_plot/_models/_plot_types/_histogram.py,sha256=Hlh_ztf0pEOdKjCAcrw832W9NSmb6LyUTT-FfpV0V9E,696
|
|
802
|
+
scitex/io/bundle/kinds/_plot/_models/_plot_types/_image.py,sha256=etFoQpRVTh5ii5KYzVoUUDPi-wvHZVdVVcLnXzgXx2I,1483
|
|
803
|
+
scitex/io/bundle/kinds/_plot/_models/_plot_types/_line.py,sha256=YE0FiccyJZRqLxvlsWKpPwaQQ3aEhUZfjtdrtSW0z-U,1385
|
|
804
|
+
scitex/io/bundle/kinds/_plot/_models/_plot_types/_scatter.py,sha256=KuU6AHybncoMYc86D0v88xSBp6pru6O9Q8-pqYcL3qU,712
|
|
805
|
+
scitex/io/bundle/kinds/_plot/_models/_plot_types/_seaborn.py,sha256=bPdy6yc2YH6XPJpTUznmX-8HEB0sdVSUZZ4aCOdR_KU,2720
|
|
806
|
+
scitex/io/bundle/kinds/_plot/_models/_plot_types/_violin.py,sha256=8MbXK-klYo2q6VWp-vvj--oGEMzgSmSlTb-zJJTypRA,829
|
|
807
|
+
scitex/io/bundle/kinds/_plot/_utils/__init__.py,sha256=i3XJ0gNFodkYz1dNKtNyfj23Tf0JTOM4jY24eSh-vDw,2851
|
|
808
|
+
scitex/io/bundle/kinds/_plot/_utils/_auto_layout.py,sha256=KxDQRpXqB1FfbKZXQUZHKGIfqiRDPJq5B58ABtgQE9k,3861
|
|
809
|
+
scitex/io/bundle/kinds/_plot/_utils/_calc_bounds.py,sha256=Kyd5Nx9_lOezA4XTFWfN5Bp8ycAd8mgbsUADS2nNx9w,3089
|
|
810
|
+
scitex/io/bundle/kinds/_plot/_utils/_const_sizes.py,sha256=jU6naytIR8v6_RM30bPIddcvhPuqc6qF_UinCo3GVMM,976
|
|
811
|
+
scitex/io/bundle/kinds/_plot/_utils/_convert_coords.py,sha256=X0rSEOCe29k_CNofzxpEzDONpD9N2cHSNI-hv6MR3Hk,1958
|
|
812
|
+
scitex/io/bundle/kinds/_plot/_utils/_get_template.py,sha256=YfNjrXfLX5XuQkyfFqxIEThJz5SLMW4_0ECM3GSkzh4,5146
|
|
813
|
+
scitex/io/bundle/kinds/_plot/_utils/_normalize.py,sha256=DKYZaf02VahivH7jTakpTqrh17LGf5iYGTuhRR36uRI,1954
|
|
814
|
+
scitex/io/bundle/kinds/_plot/_utils/_plot_layout.py,sha256=o7XtMbx_d4Ty8HDfdUIHlaT712bjNcEk1uYRxZ0VCKE,10510
|
|
815
|
+
scitex/io/bundle/kinds/_plot/_utils/_validate.py,sha256=DeSiFBSyiGT_19jWu8tVoppm1SLMwADYQQw8D6Ny11A,5249
|
|
816
|
+
scitex/io/bundle/kinds/_shape/__init__.py,sha256=AN4ek5W48pXRtX1eP40QQloIW_Qc1xEjM5wDlEmGN_s,3610
|
|
817
|
+
scitex/io/bundle/kinds/_stats/__init__.py,sha256=sod-ZsKOkcO2YxMQaYzgBjq3w_l8XLy3k8ZPbgTz7cg,1094
|
|
818
|
+
scitex/io/bundle/kinds/_stats/_dataclasses/_Stats.py,sha256=69fDS2944puQY8UzG2sXqo7x3j32bXRoffYihp_0R7s,13051
|
|
819
|
+
scitex/io/bundle/kinds/_stats/_dataclasses/__init__.py,sha256=-CtLEMmmWtFR_SpFZ1zSkaerw0EUxTc8jeVt89ojtnQ,847
|
|
820
|
+
scitex/io/bundle/kinds/_table/__init__.py,sha256=O6dtGct-b7T1Hka33f2P7aBsAr4k1lelnHFzZdejrrQ,1636
|
|
821
|
+
scitex/io/bundle/kinds/_table/_latex/__init__.py,sha256=k4arLDITGXcvBDy82i66nRY5TtYApT_OuylA86fEnvY,2275
|
|
822
|
+
scitex/io/bundle/kinds/_table/_latex/_export.py,sha256=kagWKTOjXXB4JNnTiztckUF_N3jGthr0V239vaRwySs,7742
|
|
823
|
+
scitex/io/bundle/kinds/_table/_latex/_figure_exporter.py,sha256=iXtBETnbZm_gJddO4GENO6xnB_dp8rsJVQ7faZ7KMgA,4132
|
|
824
|
+
scitex/io/bundle/kinds/_table/_latex/_stats_formatter.py,sha256=Mxf4OU-cCpDTXp8xdHyr44Tcpr8yBwNKISqfacjXGpw,7139
|
|
825
|
+
scitex/io/bundle/kinds/_table/_latex/_table_exporter.py,sha256=vZGgxJbikDAdWi_crU7ZWM6gMKCDMZ50a8jnPldS0D4,10031
|
|
826
|
+
scitex/io/bundle/kinds/_table/_latex/_utils.py,sha256=W1KppVnnePG-0XO6M8W1iPxTsHEvHXj056HlJIaRyr4,8517
|
|
827
|
+
scitex/io/bundle/kinds/_table/_latex/_validator.py,sha256=-qFYTfhvjR3RJqHxzP9iCdnfzuD38FU43A4IL9YL5og,13860
|
|
828
|
+
scitex/io/bundle/kinds/_table/_latex/_editor/__init__.py,sha256=kPYs5u0RKvWAtoQPhv-9xXtk0kZqvWpGaVsWu5ldivY,246
|
|
829
|
+
scitex/io/bundle/kinds/_table/_latex/_editor/_app.py,sha256=mr17zbnACqChAOL7JeY92nla5duNxcNI63hz2GKifXA,22981
|
|
830
|
+
scitex/io/bundle/kinds/_text/__init__.py,sha256=QTSjHfNEJBbCW5kJ32O5_ujUO-PPIDmPze1M-xjjIg0,1875
|
|
831
|
+
scitex/io/bundle/schemas/__init__.py,sha256=KCN7ClvVa_Tc6tvk_9Ta6d_7VLiG0YhIjRyy9BKmzJY,751
|
|
832
|
+
scitex/io/bundle/schemas/data_info.schema.json,sha256=NcC6HIvxJyEEPQeN8v3gcfqXIpcT1_PlSj3WQiUlaVc,2468
|
|
833
|
+
scitex/io/bundle/schemas/encoding.schema.json,sha256=CCc-qTrcezctpaLrpzQ8MQqLW8bKfgGtuaaSjfuuZZA,2414
|
|
834
|
+
scitex/io/bundle/schemas/node.schema.json,sha256=W7cE5jJnG4YqciQmKwrPaSV-Kbpjh58RyacF_yElX4g,4500
|
|
835
|
+
scitex/io/bundle/schemas/render_manifest.schema.json,sha256=zVa0HIwkMF1Dmr4vg0Idfn-rnucjloa364DaXy154Xc,1730
|
|
836
|
+
scitex/io/bundle/schemas/stats.schema.json,sha256=M1MMSRkK3kyET2chzPeyCl2-Blfn2mbNxnvVF0X5HMU,4860
|
|
837
|
+
scitex/io/bundle/schemas/theme.schema.json,sha256=WwCQ69cMwvq32XAE3hKz-CbTTIY0ltH5j1tJoLzTzPI,5399
|
|
961
838
|
scitex/io/utils/__init__.py,sha256=4iCK8HZJAR3luRXWChroFljlam_59rX6T5z1ro94zFg,513
|
|
962
839
|
scitex/io/utils/h5_to_zarr.py,sha256=GX2YAIXsdA_CBwNbFLuB_oF9PkHEdP9EIQb3M4Ii61I,20811
|
|
963
840
|
scitex/linalg/__init__.py,sha256=7E0KoYsj4oNn2_fmgx5VqKClfMDIdlD8WMKcx1d-nmw,433
|
|
@@ -1005,20 +882,20 @@ scitex/nn/__init__.py,sha256=M4Wh4wie1STdCuBtF9zZHQaD_urzjH-vYaj9gb6jyvA,1924
|
|
|
1005
882
|
scitex/os/__init__.py,sha256=53a6fR-C_hGHi9edmKm_aJRv-wKZk2JQ4o8kPVUQ0nk,93
|
|
1006
883
|
scitex/os/_mv.py,sha256=40xUJ5xYH34gumMSfLgZX6N4UCn_Do_Iwy06gQPyVRA,1379
|
|
1007
884
|
scitex/parallel/__init__.py,sha256=MRfWzesJlZpe7KourRwk_Uohnml6WKjXBeO6-MbyyuY,102
|
|
1008
|
-
scitex/parallel/_run.py,sha256=
|
|
885
|
+
scitex/parallel/_run.py,sha256=wg1shvXFdcGxW6VePA0Ls-3z412hAziZ1_1J4zbc2ag,4597
|
|
1009
886
|
scitex/path/README.md,sha256=-VFFwjq0VloXgBMesm9dGf0pU3qnOsm__b0ydT7YjWQ,3104
|
|
1010
887
|
scitex/path/__init__.py,sha256=DW0LkCFl7PkVAzCyOU-JI0W695DShtXGjwCYUn4MPnE,1189
|
|
1011
888
|
scitex/path/_clean.py,sha256=EUnkXWgyqy3k5IUBsB-3vYd4z0m1MpDvVnSZynakFDM,1472
|
|
1012
|
-
scitex/path/_find.py,sha256=
|
|
1013
|
-
scitex/path/_get_module_path.py,sha256=
|
|
1014
|
-
scitex/path/_get_spath.py,sha256
|
|
1015
|
-
scitex/path/_getsize.py,sha256=
|
|
1016
|
-
scitex/path/_increment_version.py,sha256=
|
|
1017
|
-
scitex/path/_mk_spath.py,sha256=
|
|
1018
|
-
scitex/path/_path.py,sha256=
|
|
1019
|
-
scitex/path/_split.py,sha256=
|
|
889
|
+
scitex/path/_find.py,sha256=X8NkBPrhjJOUNyytAvYKZ-pdNF6SjGyPFDkFVz3q198,2164
|
|
890
|
+
scitex/path/_get_module_path.py,sha256=ewiyEsr2ry7U1iKEdSYz8Mna0GP4oU72N0WVZzSIOMc,1393
|
|
891
|
+
scitex/path/_get_spath.py,sha256=5Vj6iRNUxJlwTvyxkFrXZyhaL0ozncqI7pCpWKaoBYw,306
|
|
892
|
+
scitex/path/_getsize.py,sha256=eVbwL7j5Y0KVliHOq47ysBW6WaiSkoigEq71WF_1--s,621
|
|
893
|
+
scitex/path/_increment_version.py,sha256=TXTo_UMRBMD_CZIgDcCk5dryemEkw48g8WWJ0GO2xC4,2283
|
|
894
|
+
scitex/path/_mk_spath.py,sha256=gxWT7NVqv0bCd-ERYVux7hpEjeGV8MImQdBnS8EQebA,1170
|
|
895
|
+
scitex/path/_path.py,sha256=q-cuCGZslub_Ra4XtMed3aLrNBmI_2YFBdmZUBkb8sk,299
|
|
896
|
+
scitex/path/_split.py,sha256=Ktc-sqRSPExL0As_zKplH1f_MEx_5Tz5VpY-8URQZ7I,847
|
|
1020
897
|
scitex/path/_symlink.py,sha256=JLq7hI_sqAIwFreK-RDEdzYfo9TTHLNB3t_GCmYjnps,10390
|
|
1021
|
-
scitex/path/_this_path.py,sha256=
|
|
898
|
+
scitex/path/_this_path.py,sha256=zybHwJXVRnMdEP-fDrMDRDXgZsQtA1KrkGcN7Ckxbe8,712
|
|
1022
899
|
scitex/path/_version.py,sha256=-_JjDGaMpMPDlZwsaKCS089ylk16lMuXYK72OSctxYQ,2904
|
|
1023
900
|
scitex/pd/__init__.py,sha256=guhcnPJYmES5MMv16vF1nkY7PU73H4Rx1wLkoNkGvi8,1081
|
|
1024
901
|
scitex/pd/_find_indi.py,sha256=hguxPI3eiYvL8f0csDhXqfy4cj6aui1wjHZ7qWtWgWY,3864
|
|
@@ -1053,12 +930,12 @@ scitex/plt/_subplots/_mm_layout.py,sha256=Bfi9tR4nw3L0xKeZQR1CArr1CRInYbWlseabkQ
|
|
|
1053
930
|
scitex/plt/_subplots/_AxisWrapperMixins/_RawMatplotlibMixin.py,sha256=m6BU8FrRiaVts5xGUJkpJM4IACfqD_Z1Q57RwKRpWC8,13676
|
|
1054
931
|
scitex/plt/_subplots/_AxisWrapperMixins/_TrackingMixin.py,sha256=fjw71qIR7ya6-Rc29SfgpxzhmS8hAFqWhE9gPXHSAwQ,6405
|
|
1055
932
|
scitex/plt/_subplots/_AxisWrapperMixins/_UnitAwareMixin.py,sha256=LUj5ZoFf6Mc1R1JcFWzIGjMegzp2oRxoN0XzaGUbFxs,14283
|
|
1056
|
-
scitex/plt/_subplots/_AxisWrapperMixins/__init__.py,sha256=
|
|
933
|
+
scitex/plt/_subplots/_AxisWrapperMixins/__init__.py,sha256=9hVAkjOjXGPKnaf1IyehG9eTGkCOnFawPt36ZnbNgsQ,2499
|
|
1057
934
|
scitex/plt/_subplots/_AxisWrapperMixins/_AdjustmentMixin/__init__.py,sha256=NNFpmO_ST2-lRuOgv8YHeKDh4JAKrVPLbCbJ7SDypQo,1016
|
|
1058
935
|
scitex/plt/_subplots/_AxisWrapperMixins/_AdjustmentMixin/_labels.py,sha256=V_8BgENk4c_NnhFYI-OVN6eB8GfBnu2O6LrD5xMZWDM,9472
|
|
1059
936
|
scitex/plt/_subplots/_AxisWrapperMixins/_AdjustmentMixin/_metadata.py,sha256=PUXtKWN1oeVD6-y2FL2G7JOyxs7p0DCsEhFjkWaG1vM,6126
|
|
1060
937
|
scitex/plt/_subplots/_AxisWrapperMixins/_AdjustmentMixin/_visual.py,sha256=ktVcuqzi1uJe1Q6W1ixUulnKdZx2C4sWoyz_BVXcULM,3825
|
|
1061
|
-
scitex/plt/_subplots/_AxisWrapperMixins/_MatplotlibPlotMixin/__init__.py,sha256=
|
|
938
|
+
scitex/plt/_subplots/_AxisWrapperMixins/_MatplotlibPlotMixin/__init__.py,sha256=IddF4EawghTMzYBQcYC_f7_3_2-wiwtEbaX0GSsfnGg,1843
|
|
1062
939
|
scitex/plt/_subplots/_AxisWrapperMixins/_MatplotlibPlotMixin/_base.py,sha256=aO-3nYbEzQE0pjfsXs-BjT5WtMYuUYekZltcfjH9WRQ,1015
|
|
1063
940
|
scitex/plt/_subplots/_AxisWrapperMixins/_MatplotlibPlotMixin/_scientific.py,sha256=SXyGPui6phqJo3OyFBRHtpfVqDTIOG91LaG_zMxGCaE,18868
|
|
1064
941
|
scitex/plt/_subplots/_AxisWrapperMixins/_MatplotlibPlotMixin/_statistical.py,sha256=WDm3Hs20m8HZyNoFhMS3I30WYfFYznpX5Xs5QpbKcWo,20155
|
|
@@ -1190,12 +1067,12 @@ scitex/plt/color/_vizualize_colors.py,sha256=e30Q6d9hqtBxGD7RCgYpZcq1n0nG66fAwnz
|
|
|
1190
1067
|
scitex/plt/docs/FIGURE_ARCHITECTURE.md,sha256=bIxyg6EHlXtPo7BQu_vzfpAPfwF6brpjgM89X-Y666U,8487
|
|
1191
1068
|
scitex/plt/gallery/README.md,sha256=hBc9TNdvQ18E4CQCpA45g8hU3SiX-gNfxWOGG_OQgAk,3608
|
|
1192
1069
|
scitex/plt/gallery/__init__.py,sha256=UrbUyi_Pv4-vHxuhZVhz82Zmnlezd3gjOV8NpmcWOqM,3503
|
|
1193
|
-
scitex/plt/gallery/_generate.py,sha256=
|
|
1070
|
+
scitex/plt/gallery/_generate.py,sha256=nOazliqUvIy0PMIHgNoDhZehSEmST_g196kOTGH-kso,20300
|
|
1194
1071
|
scitex/plt/gallery/_plots.py,sha256=lccHRoyVsMDIlCtBmjmsUHJLQdi6jTN_Wt6CyHHmKOA,20285
|
|
1195
1072
|
scitex/plt/gallery/_registry.py,sha256=PvjSUWt1-6OITKc3HsdZ_VBle_Izjtz07m-6ZM4MB7U,3733
|
|
1196
|
-
scitex/plt/io/__init__.py,sha256=
|
|
1197
|
-
scitex/plt/io/_bundle.py,sha256=
|
|
1198
|
-
scitex/plt/io/_layered_bundle.py,sha256=
|
|
1073
|
+
scitex/plt/io/__init__.py,sha256=qE57oFDOpqgV64fyw8tK3Vj_7bvyKqbE40or1bTuN-U,1291
|
|
1074
|
+
scitex/plt/io/_bundle.py,sha256=eM6bgTZR9XhiVghJWyIMi3p8GQw89AqIaPcfVk9nDvE,16850
|
|
1075
|
+
scitex/plt/io/_layered_bundle.py,sha256=j2kDeHMF4wL_cf04eFJX2SGOm_m_K_6Qx0fPm0U5C-c,50534
|
|
1199
1076
|
scitex/plt/styles/SCITEX_STYLE.yaml,sha256=epODIzEsitPymzJg4xAw5i705hqvIbxGS_46y_Xi4qs,5692
|
|
1200
1077
|
scitex/plt/styles/__init__.py,sha256=UlEifmLmoGg39dciXmbXVbBeAgLtJA0ZMJuMkDAMDVs,1774
|
|
1201
1078
|
scitex/plt/styles/_plot_defaults.py,sha256=cx-J4-j4HSfVZ6mGM01xQobzl6H3IdvmbfqtpZvbZlo,7963
|
|
@@ -1210,7 +1087,7 @@ scitex/plt/utils/_collect_figure_metadata.py,sha256=Vx3NA86pN1p_2KtAgS23uAsO9GDY
|
|
|
1210
1087
|
scitex/plt/utils/_colorbar.py,sha256=YGgp8B2HJmZPrzP3STfO9v1LZYwgZ8BzpJsEwEvOUU8,4647
|
|
1211
1088
|
scitex/plt/utils/_configure_mpl.py,sha256=e3e64b_OjuTLzQB705-XydT6d_LjPUz3WyYYxJVuoqA,15135
|
|
1212
1089
|
scitex/plt/utils/_crop.py,sha256=pUcQGwXD9NWeFDLgicNZW5ktZ9MuLQEyg8XSFQU3tPQ,10530
|
|
1213
|
-
scitex/plt/utils/_csv_column_naming.py,sha256=
|
|
1090
|
+
scitex/plt/utils/_csv_column_naming.py,sha256=fP-nA32K48y0uV560f4vhWBqXgs0tuznrvKUhNUaD68,12961
|
|
1214
1091
|
scitex/plt/utils/_dimension_viewer.py,sha256=Q3oyol5w_JUEFh-oXRr9N86C3OBxpwiXmeeIl0Uz9Cw,12457
|
|
1215
1092
|
scitex/plt/utils/_figure_from_axes_mm.py,sha256=PTo3DAvT4FxPQdikNkaiieRx-Ky5xmWn7k5Yhc8cGr4,13692
|
|
1216
1093
|
scitex/plt/utils/_figure_mm.py,sha256=e8YwmiG9aiMQTn3MkLQFQYI8sODtxfFFh5PrLSPx0Yc,17073
|
|
@@ -1269,12 +1146,12 @@ scitex/resource/_utils/__init__.py,sha256=96h3EiHpNFvqKiWoIlR5_uB7KYceKjyLRlbryU
|
|
|
1269
1146
|
scitex/resource/_utils/_get_env_info.py,sha256=xjGmOPKcmkoONNeAXTgQMvT9PXz0BO1aELpXCEti3nc,15324
|
|
1270
1147
|
scitex/rng/__init__.py,sha256=2F8UUzGrn2vFfirLTU0QCKAaoQp663ZtwjtvyHird0g,824
|
|
1271
1148
|
scitex/schema/README.md,sha256=j87jhsw33Yn-UbSjo0xJRdfbtYnH7V9kv975Lsy4x3E,5092
|
|
1272
|
-
scitex/schema/__init__.py,sha256=
|
|
1273
|
-
scitex/schema/_canvas.py,sha256=
|
|
1149
|
+
scitex/schema/__init__.py,sha256=y7vM0y40HTRTfULLD2y_veee4igvIjWXtUurbb6Jn8U,4925
|
|
1150
|
+
scitex/schema/_canvas.py,sha256=F77vD1CVKjVbvI_UjqdT92Um8XLIvSMC0XYL2q49IMU,13154
|
|
1274
1151
|
scitex/schema/_encoding.py,sha256=0Enqx5EGX98p1MK5EZADTIt-w1B_5QTzhLiosTnS6YE,8177
|
|
1275
1152
|
scitex/schema/_figure_elements.py,sha256=N3OhCtCXqdXU5o6qyYm8Fchvx19tSU6E_n47AHVvu6o,10964
|
|
1276
1153
|
scitex/schema/_plot.py,sha256=AeMLPxCvLr9bSKNfAZ6h9E3kGqg1YjmbycEmAD0-PHo,30849
|
|
1277
|
-
scitex/schema/_stats.py,sha256=
|
|
1154
|
+
scitex/schema/_stats.py,sha256=zSw5hfQE16473gYgjWx9jHmpAbVV2TmWmKwzSTsczs0,23109
|
|
1278
1155
|
scitex/schema/_theme.py,sha256=1AWmJy7vim2lmIJlbjv4BCLxKmNeqw0WGEGr2z_U9Kw,10192
|
|
1279
1156
|
scitex/schema/_validation.py,sha256=8u4dVVfAhCzdRtcpqFxChumRMyHJQfBQgnyf1TpsQ_s,13747
|
|
1280
1157
|
scitex/scholar/.gitignore,sha256=oYROO1p7Mia9ftRowaRu3BVNm7jdMY9O4Ro1RSgSC80,381
|
|
@@ -3336,8 +3213,8 @@ scitex/sh/_types.py,sha256=ydWw3i82K3XmSow3ldAgG40Og-vZ75fPy7NzR2cwBx4,605
|
|
|
3336
3213
|
scitex/sh/test_sh.py,sha256=qHJdUXvTSY5FXrgNXz1gzdhzDK6TH-oTbgjZRkW7D6w,1968
|
|
3337
3214
|
scitex/sh/test_sh_simple.py,sha256=G-EukceD5gbxCY_K0x2LBJL8FT2Gkzd5XPrZrGoIyck,1661
|
|
3338
3215
|
scitex/stats/README.md,sha256=v6PMJRE-NI9bnHXfEnzES4dYHLOyTWpSSDLAzsp161I,33416
|
|
3339
|
-
scitex/stats/__init__.py,sha256=
|
|
3340
|
-
scitex/stats/_schema.py,sha256=
|
|
3216
|
+
scitex/stats/__init__.py,sha256=KodQ3tRV6NytksDJ7tC1TimFP0wbNlo5blUVbqEqKR4,9661
|
|
3217
|
+
scitex/stats/_schema.py,sha256=d12piS129kDRnHAD3XJ96d3G8ZLeYm1tK4CAlBfdtbg,1105
|
|
3341
3218
|
scitex/stats/run_all.sh,sha256=Q_fw3q_10mlQAUBRggSNrl0gILFvTFUlFztH2Aicfhs,1381
|
|
3342
3219
|
scitex/stats/auto/__init__.py,sha256=5Wb55Sq-1w1F6riYO_gKbJ80dtOon6Va9cYTF7QNzKc,4785
|
|
3343
3220
|
scitex/stats/auto/_context.py,sha256=ROHQYzfPTjqafidGufwymiyqXeK84WnpG0Apt3trgio,10090
|
|
@@ -3362,8 +3239,8 @@ scitex/stats/effect_sizes/_cohens_d.py,sha256=9T3ceXgxNj8_xZfQUgBtjQDuV5XiSCst7w
|
|
|
3362
3239
|
scitex/stats/effect_sizes/_epsilon_squared.py,sha256=gElBl-hNXd1NYvXgtNIG5eRF61Qu34vAlCXtrHerHLA,8390
|
|
3363
3240
|
scitex/stats/effect_sizes/_eta_squared.py,sha256=Tg08fXlQtTRNZ4YWeDnwiMKWXlZv5bukLbN_9NXd_dg,7743
|
|
3364
3241
|
scitex/stats/effect_sizes/_prob_superiority.py,sha256=g_eOl-so7Uj6Jayh4MuV3TwEimgQTBSpG1gkgJNKm3U,7548
|
|
3365
|
-
scitex/stats/io/__init__.py,sha256=
|
|
3366
|
-
scitex/stats/io/_bundle.py,sha256=
|
|
3242
|
+
scitex/stats/io/__init__.py,sha256=tfLQMUZSZ88Drlbgcsu6wUkCNdfbtfqL1N_v-e1pBEc,601
|
|
3243
|
+
scitex/stats/io/_bundle.py,sha256=ssQvLAJTpqX54X1TWYGFqMaGAyRjkZUrWlXQ49e1FAA,4720
|
|
3367
3244
|
scitex/stats/posthoc/__init__.py,sha256=8JOHiur5e7JDF4MVqGxUMgzvIVypZA-R1iBNRSzPGJo,447
|
|
3368
3245
|
scitex/stats/posthoc/_dunnett.py,sha256=7uNznE_LIO9GCUBdX50zT9fArN1KRfAaaBD8X8XEQqE,15411
|
|
3369
3246
|
scitex/stats/posthoc/_games_howell.py,sha256=T-qpzgqPS0zFoav6VUVxIA8OAG4gmMctRNe0UvLBde4,12481
|
|
@@ -3489,8 +3366,8 @@ scitex/writer/utils/__init__.py,sha256=wizvQZbOWHsNnkdDsB8J4-lPInRM3gDdwOCRg1fLI
|
|
|
3489
3366
|
scitex/writer/utils/_parse_latex_logs.py,sha256=Ox52kSK7fCh6tyefRTwkcCvfEMarhMcqM0rsJuJ7UeA,3147
|
|
3490
3367
|
scitex/writer/utils/_parse_script_args.py,sha256=Fkx1ze_jlKYIpviLuT7z0hpqE4cdtXXA_7sK3sKpVs4,4593
|
|
3491
3368
|
scitex/writer/utils/_watch.py,sha256=nYzPQ-iPAOzbwzAPBtSrrVBLLPMl08e0qxw0mtv0Y8I,2577
|
|
3492
|
-
scitex-2.
|
|
3493
|
-
scitex-2.
|
|
3494
|
-
scitex-2.
|
|
3495
|
-
scitex-2.
|
|
3496
|
-
scitex-2.
|
|
3369
|
+
scitex-2.11.0.dist-info/METADATA,sha256=0I9AXgskLEz33CH6MopyIBHIi-A7WPeuzPYH6gu0zW8,45325
|
|
3370
|
+
scitex-2.11.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
3371
|
+
scitex-2.11.0.dist-info/entry_points.txt,sha256=jmgM0XEEIfCoMvwDSUNwRHBHaX_cfcJWQgi-lFc-BNU,48
|
|
3372
|
+
scitex-2.11.0.dist-info/licenses/LICENSE,sha256=TfPDBt3ar0uv_f9cqCDMZ5rIzW3CY8anRRd4PkL6ejs,34522
|
|
3373
|
+
scitex-2.11.0.dist-info/RECORD,,
|