scitex 2.5.0__py3-none-any.whl → 2.7.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 +19 -8
- scitex/__main__.py +2 -1
- scitex/__version__.py +1 -1
- scitex/_optional_deps.py +13 -20
- scitex/ai/__init__.py +5 -0
- scitex/ai/_gen_ai/_Anthropic.py +3 -1
- scitex/ai/_gen_ai/_BaseGenAI.py +3 -2
- scitex/ai/_gen_ai/_DeepSeek.py +1 -1
- scitex/ai/_gen_ai/_Google.py +3 -2
- scitex/ai/_gen_ai/_Llama.py +4 -2
- scitex/ai/_gen_ai/_OpenAI.py +3 -1
- scitex/ai/_gen_ai/_PARAMS.py +1 -0
- scitex/ai/_gen_ai/_Perplexity.py +3 -1
- scitex/ai/_gen_ai/__init__.py +1 -0
- scitex/ai/_gen_ai/_format_output_func.py +3 -1
- scitex/ai/classification/CrossValidationExperiment.py +8 -14
- scitex/ai/classification/examples/timeseries_cv_demo.py +128 -112
- scitex/ai/classification/reporters/_BaseClassificationReporter.py +2 -0
- scitex/ai/classification/reporters/_ClassificationReporter.py +30 -45
- scitex/ai/classification/reporters/_MultiClassificationReporter.py +8 -11
- scitex/ai/classification/reporters/_SingleClassificationReporter.py +126 -182
- scitex/ai/classification/reporters/__init__.py +1 -1
- scitex/ai/classification/reporters/reporter_utils/_Plotter.py +213 -119
- scitex/ai/classification/reporters/reporter_utils/__init__.py +28 -36
- scitex/ai/classification/reporters/reporter_utils/aggregation.py +125 -143
- scitex/ai/classification/reporters/reporter_utils/data_models.py +128 -120
- scitex/ai/classification/reporters/reporter_utils/reporting.py +507 -340
- scitex/ai/classification/reporters/reporter_utils/storage.py +4 -1
- scitex/ai/classification/reporters/reporter_utils/validation.py +141 -154
- scitex/ai/classification/timeseries/_TimeSeriesBlockingSplit.py +204 -129
- scitex/ai/classification/timeseries/_TimeSeriesCalendarSplit.py +215 -171
- scitex/ai/classification/timeseries/_TimeSeriesMetadata.py +17 -17
- scitex/ai/classification/timeseries/_TimeSeriesSlidingWindowSplit.py +67 -143
- scitex/ai/classification/timeseries/_TimeSeriesSlidingWindowSplit_v01-not-using-n_splits.py +67 -143
- scitex/ai/classification/timeseries/_TimeSeriesStrategy.py +12 -13
- scitex/ai/classification/timeseries/_TimeSeriesStratifiedSplit.py +231 -144
- scitex/ai/classification/timeseries/__init__.py +2 -4
- scitex/ai/classification/timeseries/_normalize_timestamp.py +3 -0
- scitex/ai/clustering/_pca.py +0 -1
- scitex/ai/clustering/_umap.py +1 -2
- scitex/ai/feature_extraction/__init__.py +10 -8
- scitex/ai/feature_extraction/vit.py +0 -1
- scitex/ai/feature_selection/feature_selection.py +3 -8
- scitex/ai/metrics/_calc_conf_mat.py +2 -0
- scitex/ai/metrics/_calc_feature_importance.py +3 -7
- scitex/ai/metrics/_calc_pre_rec_auc.py +5 -5
- scitex/ai/metrics/_calc_roc_auc.py +4 -2
- scitex/ai/metrics/_calc_seizure_prediction_metrics.py +35 -20
- scitex/ai/metrics/_calc_silhouette_score.py +1 -3
- scitex/ai/optim/Ranger_Deep_Learning_Optimizer/ranger/ranger.py +0 -3
- scitex/ai/optim/Ranger_Deep_Learning_Optimizer/ranger/ranger2020.py +0 -3
- scitex/ai/optim/Ranger_Deep_Learning_Optimizer/ranger/ranger913A.py +0 -3
- scitex/ai/optim/_optimizers.py +1 -1
- scitex/ai/plt/__init__.py +6 -1
- scitex/ai/plt/_plot_feature_importance.py +1 -3
- scitex/ai/plt/_plot_learning_curve.py +9 -24
- scitex/ai/plt/_plot_optuna_study.py +4 -3
- scitex/ai/plt/_plot_pre_rec_curve.py +9 -15
- scitex/ai/plt/_plot_roc_curve.py +6 -8
- scitex/ai/plt/_stx_conf_mat.py +121 -122
- scitex/ai/sampling/undersample.py +3 -2
- scitex/ai/sklearn/__init__.py +2 -2
- scitex/ai/training/_LearningCurveLogger.py +23 -10
- scitex/ai/utils/_check_params.py +0 -1
- scitex/benchmark/__init__.py +15 -25
- scitex/benchmark/benchmark.py +124 -117
- scitex/benchmark/monitor.py +117 -107
- scitex/benchmark/profiler.py +61 -58
- scitex/bridge/__init__.py +110 -0
- scitex/bridge/_helpers.py +149 -0
- scitex/bridge/_plt_vis.py +529 -0
- scitex/bridge/_protocol.py +283 -0
- scitex/bridge/_stats_plt.py +261 -0
- scitex/bridge/_stats_vis.py +265 -0
- scitex/browser/__init__.py +0 -2
- scitex/browser/auth/__init__.py +0 -0
- scitex/browser/auth/google.py +16 -11
- scitex/browser/automation/CookieHandler.py +2 -3
- scitex/browser/collaboration/__init__.py +3 -0
- scitex/browser/collaboration/auth_helpers.py +3 -1
- scitex/browser/collaboration/collaborative_agent.py +2 -0
- scitex/browser/collaboration/interactive_panel.py +2 -2
- scitex/browser/collaboration/shared_session.py +20 -11
- scitex/browser/collaboration/standard_interactions.py +1 -0
- scitex/browser/core/BrowserMixin.py +12 -30
- scitex/browser/core/ChromeProfileManager.py +9 -24
- scitex/browser/debugging/_browser_logger.py +15 -25
- scitex/browser/debugging/_failure_capture.py +9 -2
- scitex/browser/debugging/_highlight_element.py +15 -6
- scitex/browser/debugging/_show_grid.py +5 -6
- scitex/browser/debugging/_sync_session.py +4 -3
- scitex/browser/debugging/_test_monitor.py +14 -5
- scitex/browser/debugging/_visual_cursor.py +46 -35
- scitex/browser/interaction/click_center.py +4 -3
- scitex/browser/interaction/click_with_fallbacks.py +7 -10
- scitex/browser/interaction/close_popups.py +79 -66
- scitex/browser/interaction/fill_with_fallbacks.py +8 -8
- scitex/browser/pdf/__init__.py +3 -1
- scitex/browser/pdf/click_download_for_chrome_pdf_viewer.py +11 -10
- scitex/browser/pdf/detect_chrome_pdf_viewer.py +3 -6
- scitex/browser/remote/CaptchaHandler.py +109 -96
- scitex/browser/remote/ZenRowsAPIClient.py +91 -97
- scitex/browser/remote/ZenRowsBrowserManager.py +138 -112
- scitex/browser/stealth/HumanBehavior.py +4 -9
- scitex/browser/stealth/StealthManager.py +11 -26
- scitex/capture/__init__.py +17 -17
- scitex/capture/__main__.py +2 -3
- scitex/capture/capture.py +23 -51
- scitex/capture/cli.py +14 -39
- scitex/capture/gif.py +5 -9
- scitex/capture/mcp_server.py +7 -20
- scitex/capture/session.py +4 -3
- scitex/capture/utils.py +18 -53
- scitex/cli/__init__.py +1 -1
- scitex/cli/cloud.py +158 -116
- scitex/cli/config.py +224 -0
- scitex/cli/main.py +41 -40
- scitex/cli/scholar.py +60 -27
- scitex/cli/security.py +14 -20
- scitex/cli/web.py +87 -90
- scitex/cli/writer.py +51 -45
- scitex/cloud/__init__.py +14 -11
- scitex/cloud/_matplotlib_hook.py +6 -6
- scitex/config/README.md +313 -0
- scitex/config/{PriorityConfig.py → _PriorityConfig.py} +114 -17
- scitex/config/_ScitexConfig.py +319 -0
- scitex/config/__init__.py +41 -9
- scitex/config/_paths.py +325 -0
- scitex/config/default.yaml +81 -0
- scitex/context/_suppress_output.py +2 -3
- scitex/db/_BaseMixins/_BaseBackupMixin.py +3 -1
- scitex/db/_BaseMixins/_BaseBatchMixin.py +3 -1
- scitex/db/_BaseMixins/_BaseBlobMixin.py +3 -1
- scitex/db/_BaseMixins/_BaseImportExportMixin.py +1 -3
- scitex/db/_BaseMixins/_BaseIndexMixin.py +3 -1
- scitex/db/_BaseMixins/_BaseMaintenanceMixin.py +1 -3
- scitex/db/_BaseMixins/_BaseQueryMixin.py +3 -1
- scitex/db/_BaseMixins/_BaseRowMixin.py +3 -1
- scitex/db/_BaseMixins/_BaseTableMixin.py +3 -1
- scitex/db/_BaseMixins/_BaseTransactionMixin.py +1 -3
- scitex/db/_BaseMixins/__init__.py +1 -1
- scitex/db/__init__.py +9 -1
- scitex/db/__main__.py +8 -21
- scitex/db/_check_health.py +15 -31
- scitex/db/_delete_duplicates.py +7 -4
- scitex/db/_inspect.py +22 -38
- scitex/db/_inspect_optimized.py +89 -85
- scitex/db/_postgresql/_PostgreSQL.py +0 -1
- scitex/db/_postgresql/_PostgreSQLMixins/_BlobMixin.py +3 -1
- scitex/db/_postgresql/_PostgreSQLMixins/_ConnectionMixin.py +1 -3
- scitex/db/_postgresql/_PostgreSQLMixins/_ImportExportMixin.py +1 -3
- scitex/db/_postgresql/_PostgreSQLMixins/_MaintenanceMixin.py +1 -4
- scitex/db/_postgresql/_PostgreSQLMixins/_QueryMixin.py +3 -3
- scitex/db/_postgresql/_PostgreSQLMixins/_RowMixin.py +3 -1
- scitex/db/_postgresql/_PostgreSQLMixins/_TransactionMixin.py +1 -3
- scitex/db/_postgresql/__init__.py +1 -1
- scitex/db/_sqlite3/_SQLite3.py +2 -4
- scitex/db/_sqlite3/_SQLite3Mixins/_ArrayMixin.py +11 -12
- scitex/db/_sqlite3/_SQLite3Mixins/_ArrayMixin_v01-need-_hash-col.py +19 -14
- scitex/db/_sqlite3/_SQLite3Mixins/_BatchMixin.py +3 -1
- scitex/db/_sqlite3/_SQLite3Mixins/_BlobMixin.py +7 -7
- scitex/db/_sqlite3/_SQLite3Mixins/_ColumnMixin.py +118 -111
- scitex/db/_sqlite3/_SQLite3Mixins/_ConnectionMixin.py +8 -10
- scitex/db/_sqlite3/_SQLite3Mixins/_GitMixin.py +17 -45
- scitex/db/_sqlite3/_SQLite3Mixins/_ImportExportMixin.py +1 -3
- scitex/db/_sqlite3/_SQLite3Mixins/_IndexMixin.py +3 -1
- scitex/db/_sqlite3/_SQLite3Mixins/_QueryMixin.py +3 -4
- scitex/db/_sqlite3/_SQLite3Mixins/_RowMixin.py +9 -9
- scitex/db/_sqlite3/_SQLite3Mixins/_TableMixin.py +18 -11
- scitex/db/_sqlite3/_SQLite3Mixins/__init__.py +1 -0
- scitex/db/_sqlite3/__init__.py +1 -1
- scitex/db/_sqlite3/_delete_duplicates.py +13 -11
- scitex/decorators/__init__.py +29 -4
- scitex/decorators/_auto_order.py +43 -43
- scitex/decorators/_batch_fn.py +12 -6
- scitex/decorators/_cache_disk.py +8 -9
- scitex/decorators/_cache_disk_async.py +8 -7
- scitex/decorators/_combined.py +19 -13
- scitex/decorators/_converters.py +16 -3
- scitex/decorators/_deprecated.py +32 -22
- scitex/decorators/_numpy_fn.py +18 -4
- scitex/decorators/_pandas_fn.py +17 -5
- scitex/decorators/_signal_fn.py +17 -3
- scitex/decorators/_torch_fn.py +32 -15
- scitex/decorators/_xarray_fn.py +23 -9
- scitex/dev/_analyze_code_flow.py +0 -2
- scitex/dict/_DotDict.py +15 -19
- scitex/dict/_flatten.py +1 -0
- scitex/dict/_listed_dict.py +1 -0
- scitex/dict/_pop_keys.py +1 -0
- scitex/dict/_replace.py +1 -0
- scitex/dict/_safe_merge.py +1 -0
- scitex/dict/_to_str.py +2 -3
- scitex/dsp/__init__.py +13 -4
- scitex/dsp/_crop.py +3 -1
- scitex/dsp/_detect_ripples.py +3 -1
- scitex/dsp/_modulation_index.py +3 -1
- scitex/dsp/_time.py +3 -1
- scitex/dsp/_wavelet.py +0 -1
- scitex/dsp/example.py +0 -5
- scitex/dsp/filt.py +4 -0
- scitex/dsp/utils/__init__.py +4 -1
- scitex/dsp/utils/pac.py +3 -3
- scitex/dt/_normalize_timestamp.py +4 -1
- scitex/errors.py +3 -6
- scitex/etc/__init__.py +1 -1
- scitex/gen/_DimHandler.py +6 -6
- scitex/gen/__init__.py +5 -1
- scitex/gen/_deprecated_close.py +1 -0
- scitex/gen/_deprecated_start.py +5 -3
- scitex/gen/_detect_environment.py +44 -41
- scitex/gen/_detect_notebook_path.py +51 -47
- scitex/gen/_embed.py +1 -1
- scitex/gen/_get_notebook_path.py +81 -62
- scitex/gen/_inspect_module.py +0 -1
- scitex/gen/_norm.py +16 -7
- scitex/gen/_norm_cache.py +78 -65
- scitex/gen/_print_config.py +0 -3
- scitex/gen/_src.py +2 -3
- scitex/gen/_title_case.py +3 -2
- scitex/gen/_to_even.py +8 -8
- scitex/gen/_transpose.py +3 -3
- scitex/gen/misc.py +0 -3
- scitex/gists/_SigMacro_processFigure_S.py +2 -2
- scitex/gists/_SigMacro_toBlue.py +2 -2
- scitex/gists/__init__.py +4 -1
- scitex/git/_branch.py +19 -11
- scitex/git/_clone.py +23 -15
- scitex/git/_commit.py +10 -12
- scitex/git/_init.py +15 -38
- scitex/git/_remote.py +9 -3
- scitex/git/_result.py +3 -0
- scitex/git/_retry.py +2 -5
- scitex/git/_types.py +4 -0
- scitex/git/_validation.py +8 -8
- scitex/git/_workflow.py +4 -4
- scitex/io/__init__.py +2 -1
- scitex/io/_glob.py +2 -2
- scitex/io/_json2md.py +3 -3
- scitex/io/_load.py +6 -8
- scitex/io/_load_cache.py +71 -71
- scitex/io/_load_configs.py +2 -3
- scitex/io/_load_modules/_H5Explorer.py +6 -12
- scitex/io/_load_modules/_ZarrExplorer.py +3 -3
- scitex/io/_load_modules/_bibtex.py +62 -63
- scitex/io/_load_modules/_canvas.py +4 -9
- scitex/io/_load_modules/_catboost.py +7 -2
- scitex/io/_load_modules/_hdf5.py +2 -0
- scitex/io/_load_modules/_image.py +5 -1
- scitex/io/_load_modules/_matlab.py +3 -1
- scitex/io/_load_modules/_optuna.py +0 -1
- scitex/io/_load_modules/_pdf.py +38 -29
- scitex/io/_load_modules/_sqlite3.py +1 -0
- scitex/io/_load_modules/_txt.py +2 -0
- scitex/io/_load_modules/_xml.py +9 -9
- scitex/io/_load_modules/_zarr.py +12 -10
- scitex/io/_metadata.py +76 -37
- scitex/io/_qr_utils.py +18 -13
- scitex/io/_save.py +220 -63
- scitex/io/_save_modules/__init__.py +7 -2
- scitex/io/_save_modules/_bibtex.py +66 -61
- scitex/io/_save_modules/_canvas.py +5 -6
- scitex/io/_save_modules/_catboost.py +2 -2
- scitex/io/_save_modules/_csv.py +4 -4
- scitex/io/_save_modules/_excel.py +5 -9
- scitex/io/_save_modules/_hdf5.py +9 -21
- scitex/io/_save_modules/_html.py +5 -5
- scitex/io/_save_modules/_image.py +105 -8
- scitex/io/_save_modules/_joblib.py +2 -2
- scitex/io/_save_modules/_json.py +51 -6
- scitex/io/_save_modules/_listed_dfs_as_csv.py +2 -1
- scitex/io/_save_modules/_listed_scalars_as_csv.py +2 -1
- scitex/io/_save_modules/_matlab.py +2 -2
- scitex/io/_save_modules/_numpy.py +6 -8
- scitex/io/_save_modules/_pickle.py +4 -4
- scitex/io/_save_modules/_plotly.py +3 -3
- scitex/io/_save_modules/_tex.py +23 -25
- scitex/io/_save_modules/_text.py +2 -2
- scitex/io/_save_modules/_yaml.py +9 -9
- scitex/io/_save_modules/_zarr.py +15 -15
- scitex/io/utils/__init__.py +2 -1
- scitex/io/utils/h5_to_zarr.py +173 -155
- scitex/linalg/__init__.py +1 -1
- scitex/linalg/_geometric_median.py +4 -3
- scitex/logging/_Tee.py +5 -7
- scitex/logging/__init__.py +18 -19
- scitex/logging/_config.py +4 -1
- scitex/logging/_context.py +6 -5
- scitex/logging/_formatters.py +2 -3
- scitex/logging/_handlers.py +19 -20
- scitex/logging/_levels.py +9 -17
- scitex/logging/_logger.py +74 -15
- scitex/logging/_print_capture.py +17 -17
- scitex/nn/_BNet.py +1 -3
- scitex/nn/_Filters.py +6 -2
- scitex/nn/_ModulationIndex.py +3 -1
- scitex/nn/_PAC.py +3 -2
- scitex/nn/_PSD.py +0 -1
- scitex/nn/__init__.py +16 -3
- scitex/path/_clean.py +10 -8
- scitex/path/_find.py +1 -1
- scitex/path/_get_spath.py +1 -2
- scitex/path/_mk_spath.py +1 -1
- scitex/path/_symlink.py +5 -10
- scitex/pd/__init__.py +4 -1
- scitex/pd/_force_df.py +24 -24
- scitex/pd/_get_unique.py +1 -0
- scitex/pd/_merge_columns.py +1 -1
- scitex/pd/_round.py +11 -7
- scitex/pd/_to_xy.py +0 -1
- scitex/plt/REQUESTS.md +191 -0
- scitex/plt/__init__.py +185 -87
- scitex/plt/_subplots/_AxesWrapper.py +22 -6
- scitex/plt/_subplots/_AxisWrapper.py +100 -39
- scitex/plt/_subplots/_AxisWrapperMixins/_AdjustmentMixin.py +74 -52
- scitex/plt/_subplots/_AxisWrapperMixins/_MatplotlibPlotMixin.py +183 -73
- scitex/plt/_subplots/_AxisWrapperMixins/_SeabornMixin.py +61 -45
- scitex/plt/_subplots/_AxisWrapperMixins/_TrackingMixin.py +26 -14
- scitex/plt/_subplots/_AxisWrapperMixins/_UnitAwareMixin.py +80 -73
- scitex/plt/_subplots/_FigWrapper.py +93 -60
- scitex/plt/_subplots/_SubplotsWrapper.py +135 -68
- scitex/plt/_subplots/__init__.py +10 -0
- scitex/plt/_subplots/_export_as_csv.py +89 -47
- scitex/plt/_subplots/_export_as_csv_formatters/__init__.py +1 -0
- scitex/plt/_subplots/_export_as_csv_formatters/_format_annotate.py +6 -4
- scitex/plt/_subplots/_export_as_csv_formatters/_format_bar.py +88 -38
- scitex/plt/_subplots/_export_as_csv_formatters/_format_barh.py +25 -31
- scitex/plt/_subplots/_export_as_csv_formatters/_format_boxplot.py +53 -23
- scitex/plt/_subplots/_export_as_csv_formatters/_format_contour.py +38 -25
- scitex/plt/_subplots/_export_as_csv_formatters/_format_contourf.py +17 -9
- scitex/plt/_subplots/_export_as_csv_formatters/_format_errorbar.py +70 -124
- scitex/plt/_subplots/_export_as_csv_formatters/_format_eventplot.py +12 -10
- scitex/plt/_subplots/_export_as_csv_formatters/_format_fill.py +31 -17
- scitex/plt/_subplots/_export_as_csv_formatters/_format_fill_between.py +33 -21
- scitex/plt/_subplots/_export_as_csv_formatters/_format_hexbin.py +14 -4
- scitex/plt/_subplots/_export_as_csv_formatters/_format_hist.py +43 -29
- scitex/plt/_subplots/_export_as_csv_formatters/_format_hist2d.py +14 -4
- scitex/plt/_subplots/_export_as_csv_formatters/_format_imshow.py +27 -11
- scitex/plt/_subplots/_export_as_csv_formatters/_format_imshow2d.py +7 -5
- scitex/plt/_subplots/_export_as_csv_formatters/_format_matshow.py +9 -7
- scitex/plt/_subplots/_export_as_csv_formatters/_format_pie.py +15 -6
- scitex/plt/_subplots/_export_as_csv_formatters/_format_plot.py +85 -46
- scitex/plt/_subplots/_export_as_csv_formatters/_format_plot_box.py +52 -27
- scitex/plt/_subplots/_export_as_csv_formatters/_format_plot_imshow.py +1 -0
- scitex/plt/_subplots/_export_as_csv_formatters/_format_plot_kde.py +16 -17
- scitex/plt/_subplots/_export_as_csv_formatters/_format_plot_scatter.py +7 -5
- scitex/plt/_subplots/_export_as_csv_formatters/_format_quiver.py +10 -8
- scitex/plt/_subplots/_export_as_csv_formatters/_format_scatter.py +17 -6
- scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_barplot.py +43 -26
- scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_boxplot.py +68 -47
- scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_heatmap.py +52 -64
- scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_histplot.py +55 -50
- scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_jointplot.py +9 -11
- scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_kdeplot.py +63 -29
- scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_lineplot.py +4 -4
- scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_pairplot.py +6 -4
- scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_scatterplot.py +44 -40
- scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_stripplot.py +46 -39
- scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_swarmplot.py +46 -39
- scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_violinplot.py +75 -94
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stem.py +12 -3
- scitex/plt/_subplots/_export_as_csv_formatters/_format_step.py +12 -3
- scitex/plt/_subplots/_export_as_csv_formatters/_format_streamplot.py +10 -8
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_conf_mat.py +17 -15
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_ecdf.py +10 -9
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_fillv.py +35 -31
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_heatmap.py +18 -18
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_image.py +24 -18
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_joyplot.py +9 -7
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_line.py +34 -23
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_mean_ci.py +15 -13
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_mean_std.py +12 -10
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_median_iqr.py +15 -13
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_raster.py +11 -9
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_rectangle.py +84 -56
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_scatter_hist.py +35 -32
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_shaded_line.py +46 -30
- scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_violin.py +51 -51
- scitex/plt/_subplots/_export_as_csv_formatters/_format_text.py +32 -31
- scitex/plt/_subplots/_export_as_csv_formatters/_format_violin.py +34 -31
- scitex/plt/_subplots/_export_as_csv_formatters/_format_violinplot.py +44 -37
- scitex/plt/_subplots/_export_as_csv_formatters/verify_formatters.py +91 -74
- scitex/plt/_tpl.py +6 -5
- scitex/plt/ax/_plot/__init__.py +24 -0
- scitex/plt/ax/_plot/_add_fitted_line.py +12 -11
- scitex/plt/ax/_plot/_plot_circular_hist.py +3 -1
- scitex/plt/ax/_plot/_plot_statistical_shaded_line.py +25 -19
- scitex/plt/ax/_plot/_stx_conf_mat.py +6 -3
- scitex/plt/ax/_plot/_stx_ecdf.py +5 -3
- scitex/plt/ax/_plot/_stx_fillv.py +4 -2
- scitex/plt/ax/_plot/_stx_heatmap.py +7 -4
- scitex/plt/ax/_plot/_stx_image.py +7 -5
- scitex/plt/ax/_plot/_stx_joyplot.py +32 -10
- scitex/plt/ax/_plot/_stx_raster.py +26 -11
- scitex/plt/ax/_plot/_stx_rectangle.py +2 -2
- scitex/plt/ax/_plot/_stx_shaded_line.py +15 -11
- scitex/plt/ax/_plot/_stx_violin.py +3 -1
- scitex/plt/ax/_style/_add_marginal_ax.py +6 -4
- scitex/plt/ax/_style/_auto_scale_axis.py +14 -10
- scitex/plt/ax/_style/_extend.py +3 -1
- scitex/plt/ax/_style/_force_aspect.py +5 -3
- scitex/plt/ax/_style/_format_units.py +2 -2
- scitex/plt/ax/_style/_hide_spines.py +5 -1
- scitex/plt/ax/_style/_map_ticks.py +5 -3
- scitex/plt/ax/_style/_rotate_labels.py +5 -4
- scitex/plt/ax/_style/_rotate_labels_v01.py +73 -63
- scitex/plt/ax/_style/_set_log_scale.py +120 -85
- scitex/plt/ax/_style/_set_meta.py +99 -76
- scitex/plt/ax/_style/_set_supxyt.py +33 -16
- scitex/plt/ax/_style/_set_xyt.py +27 -18
- scitex/plt/ax/_style/_share_axes.py +15 -5
- scitex/plt/ax/_style/_show_spines.py +58 -57
- scitex/plt/ax/_style/_style_barplot.py +1 -1
- scitex/plt/ax/_style/_style_boxplot.py +25 -14
- scitex/plt/ax/_style/_style_errorbar.py +0 -0
- scitex/plt/ax/_style/_style_scatter.py +1 -1
- scitex/plt/ax/_style/_style_suptitles.py +3 -3
- scitex/plt/ax/_style/_style_violinplot.py +8 -2
- scitex/plt/color/__init__.py +34 -2
- scitex/plt/color/_add_hue_col.py +1 -0
- scitex/plt/color/_colors.py +0 -1
- scitex/plt/color/_get_colors_from_conf_matap.py +3 -1
- scitex/plt/color/_vizualize_colors.py +0 -1
- scitex/plt/docs/FIGURE_ARCHITECTURE.md +155 -97
- scitex/plt/gallery/README.md +75 -0
- scitex/plt/gallery/__init__.py +29 -0
- scitex/plt/gallery/_generate.py +153 -0
- scitex/plt/gallery/_plots.py +594 -0
- scitex/plt/gallery/_registry.py +153 -0
- scitex/plt/styles/__init__.py +9 -9
- scitex/plt/styles/_plot_defaults.py +62 -61
- scitex/plt/styles/_plot_postprocess.py +126 -77
- scitex/plt/styles/_style_loader.py +0 -0
- scitex/plt/styles/presets.py +43 -18
- scitex/plt/templates/research-master/scitex/vis/gallery/area/fill_between.json +110 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/area/fill_betweenx.json +88 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/area/stx_fill_between.json +103 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/area/stx_fillv.json +106 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/categorical/bar.json +92 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/categorical/barh.json +92 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/categorical/boxplot.json +92 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/categorical/stx_bar.json +84 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/categorical/stx_barh.json +84 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/categorical/stx_box.json +83 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/categorical/stx_boxplot.json +93 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/categorical/stx_violin.json +91 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/categorical/stx_violinplot.json +91 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/categorical/violinplot.json +91 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/contour/contour.json +97 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/contour/contourf.json +98 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/contour/stx_contour.json +84 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/distribution/hist.json +101 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/distribution/hist2d.json +96 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/distribution/stx_ecdf.json +95 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/distribution/stx_joyplot.json +95 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/distribution/stx_kde.json +93 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/grid/imshow.json +95 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/grid/matshow.json +95 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/grid/stx_conf_mat.json +83 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/grid/stx_heatmap.json +92 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/grid/stx_image.json +121 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/grid/stx_imshow.json +84 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/line/plot.json +110 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/line/step.json +92 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/line/stx_line.json +95 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/line/stx_shaded_line.json +96 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/scatter/hexbin.json +95 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/scatter/scatter.json +95 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/scatter/stem.json +92 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/scatter/stx_scatter.json +84 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/special/pie.json +94 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/special/stx_raster.json +109 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/special/stx_rectangle.json +108 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/statistical/errorbar.json +93 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/statistical/stx_errorbar.json +84 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/statistical/stx_mean_ci.json +96 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/statistical/stx_mean_std.json +96 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/statistical/stx_median_iqr.json +96 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/vector/quiver.json +99 -0
- scitex/plt/templates/research-master/scitex/vis/gallery/vector/streamplot.json +100 -0
- scitex/plt/utils/__init__.py +29 -2
- scitex/plt/utils/_close.py +8 -3
- scitex/plt/utils/_collect_figure_metadata.py +3031 -265
- scitex/plt/utils/_colorbar.py +15 -17
- scitex/plt/utils/_configure_mpl.py +22 -14
- scitex/plt/utils/_crop.py +60 -27
- scitex/plt/utils/_csv_column_naming.py +123 -72
- scitex/plt/utils/_dimension_viewer.py +7 -19
- scitex/plt/utils/_figure_from_axes_mm.py +70 -16
- scitex/plt/utils/_figure_mm.py +3 -2
- scitex/plt/utils/_get_actual_font.py +5 -4
- scitex/plt/utils/_histogram_utils.py +52 -48
- scitex/plt/utils/_is_valid_axis.py +19 -13
- scitex/plt/utils/_mk_colorbar.py +3 -3
- scitex/plt/utils/_scientific_captions.py +202 -139
- scitex/plt/utils/_scitex_config.py +98 -98
- scitex/plt/utils/_units.py +0 -0
- scitex/plt/utils/metadata/__init__.py +36 -0
- scitex/plt/utils/metadata/_artist_extraction.py +119 -0
- scitex/plt/utils/metadata/_axes_metadata.py +93 -0
- scitex/plt/utils/metadata/_collection_artists.py +292 -0
- scitex/plt/utils/metadata/_core.py +208 -0
- scitex/plt/utils/metadata/_csv_column_extraction.py +186 -0
- scitex/plt/utils/metadata/_csv_hash.py +115 -0
- scitex/plt/utils/metadata/_csv_verification.py +95 -0
- scitex/plt/utils/metadata/_data_linkage.py +263 -0
- scitex/plt/utils/metadata/_dimensions.py +239 -0
- scitex/plt/utils/metadata/_figure_metadata.py +58 -0
- scitex/plt/utils/metadata/_image_text_artists.py +168 -0
- scitex/plt/utils/metadata/_label_parsing.py +82 -0
- scitex/plt/utils/metadata/_legend_extraction.py +120 -0
- scitex/plt/utils/metadata/_line_artists.py +367 -0
- scitex/plt/utils/metadata/_line_semantic_handling.py +173 -0
- scitex/plt/utils/metadata/_patch_artists.py +211 -0
- scitex/plt/utils/metadata/_plot_content.py +26 -0
- scitex/plt/utils/metadata/_plot_type_detection.py +184 -0
- scitex/plt/utils/metadata/_precision.py +134 -0
- scitex/plt/utils/metadata/_precision_config.py +68 -0
- scitex/plt/utils/metadata/_precision_sections.py +211 -0
- scitex/plt/utils/metadata/_recipe_extraction.py +267 -0
- scitex/plt/utils/metadata/_style_parsing.py +174 -0
- scitex/repro/_RandomStateManager.py +33 -38
- scitex/repro/__init__.py +16 -7
- scitex/repro/_gen_ID.py +7 -9
- scitex/repro/_gen_timestamp.py +7 -6
- scitex/repro/_hash_array.py +8 -12
- scitex/reproduce/__init__.py +1 -1
- scitex/resource/_get_processor_usages.py +3 -1
- scitex/resource/_log_processor_usages.py +3 -1
- scitex/rng/__init__.py +1 -1
- scitex/schema/README.md +178 -0
- scitex/schema/__init__.py +144 -0
- scitex/schema/_canvas.py +444 -0
- scitex/schema/_stats.py +762 -0
- scitex/schema/_validation.py +590 -0
- scitex/scholar/.legacy/Scholar.py +5 -12
- scitex/scholar/.legacy/_Scholar.py +66 -99
- scitex/scholar/.legacy/_ScholarAPI.py +75 -66
- scitex/scholar/.legacy/_tmp/search_engine/_BaseSearchEngine.py +3 -3
- scitex/scholar/.legacy/_tmp/search_engine/_UnifiedSearcher.py +4 -9
- scitex/scholar/.legacy/_tmp/search_engine/__init__.py +14 -21
- scitex/scholar/.legacy/_tmp/search_engine/local/_LocalSearchEngine.py +40 -37
- scitex/scholar/.legacy/_tmp/search_engine/local/_VectorSearchEngine.py +31 -28
- scitex/scholar/.legacy/_tmp/search_engine/web/_ArxivSearchEngine.py +74 -65
- scitex/scholar/.legacy/_tmp/search_engine/web/_CrossRefSearchEngine.py +122 -116
- scitex/scholar/.legacy/_tmp/search_engine/web/_GoogleScholarSearchEngine.py +65 -59
- scitex/scholar/.legacy/_tmp/search_engine/web/_PubMedSearchEngine.py +121 -107
- scitex/scholar/.legacy/_tmp/search_engine/web/_SemanticScholarSearchEngine.py +5 -12
- scitex/scholar/.legacy/database/_DatabaseEntry.py +49 -45
- scitex/scholar/.legacy/database/_DatabaseIndex.py +131 -94
- scitex/scholar/.legacy/database/_LibraryManager.py +65 -63
- scitex/scholar/.legacy/database/_PaperDatabase.py +138 -124
- scitex/scholar/.legacy/database/_ScholarDatabaseIntegration.py +14 -36
- scitex/scholar/.legacy/database/_StorageIntegratedDB.py +192 -156
- scitex/scholar/.legacy/database/_ZoteroCompatibleDB.py +300 -237
- scitex/scholar/.legacy/database/__init__.py +2 -1
- scitex/scholar/.legacy/database/manage.py +92 -84
- scitex/scholar/.legacy/lookup/_LookupIndex.py +157 -101
- scitex/scholar/.legacy/lookup/__init__.py +2 -1
- scitex/scholar/.legacy/metadata/doi/batch/_MetadataHandlerForBatchDOIResolution.py +4 -9
- scitex/scholar/.legacy/metadata/doi/batch/_ProgressManagerForBatchDOIResolution.py +10 -23
- scitex/scholar/.legacy/metadata/doi/batch/_SourceStatsManagerForBatchDOIResolution.py +4 -9
- scitex/scholar/.legacy/metadata/doi/batch/__init__.py +3 -1
- scitex/scholar/.legacy/metadata/doi/resolvers/_BatchDOIResolver.py +10 -25
- scitex/scholar/.legacy/metadata/doi/resolvers/_BibTeXDOIResolver.py +19 -49
- scitex/scholar/.legacy/metadata/doi/resolvers/_DOIResolver.py +1 -0
- scitex/scholar/.legacy/metadata/doi/resolvers/_SingleDOIResolver.py +8 -20
- scitex/scholar/.legacy/metadata/doi/sources/.combined-SemanticScholarSource/_SemanticScholarSource.py +37 -35
- scitex/scholar/.legacy/metadata/doi/sources/.combined-SemanticScholarSource/_SemanticScholarSourceEnhanced.py +49 -37
- scitex/scholar/.legacy/metadata/doi/sources/_ArXivSource.py +11 -30
- scitex/scholar/.legacy/metadata/doi/sources/_BaseDOISource.py +19 -47
- scitex/scholar/.legacy/metadata/doi/sources/_CrossRefLocalSource.py +1 -0
- scitex/scholar/.legacy/metadata/doi/sources/_CrossRefSource.py +12 -33
- scitex/scholar/.legacy/metadata/doi/sources/_OpenAlexSource.py +8 -20
- scitex/scholar/.legacy/metadata/doi/sources/_PubMedSource.py +10 -27
- scitex/scholar/.legacy/metadata/doi/sources/_SemanticScholarSource.py +11 -29
- scitex/scholar/.legacy/metadata/doi/sources/_SourceManager.py +8 -21
- scitex/scholar/.legacy/metadata/doi/sources/_SourceResolutionStrategy.py +24 -55
- scitex/scholar/.legacy/metadata/doi/sources/_SourceRotationManager.py +8 -21
- scitex/scholar/.legacy/metadata/doi/sources/_URLDOISource.py +9 -16
- scitex/scholar/.legacy/metadata/doi/sources/_UnifiedSource.py +8 -22
- scitex/scholar/.legacy/metadata/doi/sources/__init__.py +1 -0
- scitex/scholar/.legacy/metadata/doi/utils/_PubMedConverter.py +4 -8
- scitex/scholar/.legacy/metadata/doi/utils/_RateLimitHandler.py +17 -43
- scitex/scholar/.legacy/metadata/doi/utils/_TextNormalizer.py +8 -18
- scitex/scholar/.legacy/metadata/doi/utils/_URLDOIExtractor.py +4 -8
- scitex/scholar/.legacy/metadata/doi/utils/__init__.py +1 -0
- scitex/scholar/.legacy/metadata/doi/utils/_to_complete_metadata_structure.py +1 -0
- scitex/scholar/.legacy/metadata/enrichment/_LibraryEnricher.py +2 -3
- scitex/scholar/.legacy/metadata/enrichment/enrichers/_ImpactFactorEnricher.py +6 -12
- scitex/scholar/.legacy/metadata/enrichment/enrichers/_SmartEnricher.py +5 -10
- scitex/scholar/.legacy/metadata/enrichment/sources/_UnifiedMetadataSource.py +4 -5
- scitex/scholar/.legacy/metadata/query_to_full_meta_json.py +8 -12
- scitex/scholar/.legacy/metadata/urls/_URLMetadataHandler.py +3 -3
- scitex/scholar/.legacy/metadata/urls/_ZoteroTranslatorRunner.py +15 -21
- scitex/scholar/.legacy/metadata/urls/__init__.py +3 -3
- scitex/scholar/.legacy/metadata/urls/_finder.py +4 -6
- scitex/scholar/.legacy/metadata/urls/_handler.py +7 -15
- scitex/scholar/.legacy/metadata/urls/_resolver.py +6 -12
- scitex/scholar/.legacy/search/_Embedder.py +74 -69
- scitex/scholar/.legacy/search/_SemanticSearch.py +91 -90
- scitex/scholar/.legacy/search/_SemanticSearchEngine.py +104 -109
- scitex/scholar/.legacy/search/_UnifiedSearcher.py +530 -471
- scitex/scholar/.legacy/search/_VectorDatabase.py +111 -92
- scitex/scholar/.legacy/search/__init__.py +1 -0
- scitex/scholar/.legacy/storage/_EnhancedStorageManager.py +182 -154
- scitex/scholar/.legacy/storage/__init__.py +2 -1
- scitex/scholar/__init__.py +0 -2
- scitex/scholar/__main__.py +1 -3
- scitex/scholar/auth/ScholarAuthManager.py +13 -36
- scitex/scholar/auth/core/AuthenticationGateway.py +15 -29
- scitex/scholar/auth/core/BrowserAuthenticator.py +22 -57
- scitex/scholar/auth/core/StrategyResolver.py +10 -27
- scitex/scholar/auth/core/__init__.py +5 -1
- scitex/scholar/auth/gateway/_OpenURLLinkFinder.py +11 -21
- scitex/scholar/auth/gateway/_OpenURLResolver.py +10 -18
- scitex/scholar/auth/gateway/_resolve_functions.py +3 -3
- scitex/scholar/auth/providers/BaseAuthenticator.py +1 -0
- scitex/scholar/auth/providers/EZProxyAuthenticator.py +7 -14
- scitex/scholar/auth/providers/OpenAthensAuthenticator.py +29 -57
- scitex/scholar/auth/providers/ShibbolethAuthenticator.py +87 -73
- scitex/scholar/auth/session/AuthCacheManager.py +12 -22
- scitex/scholar/auth/session/SessionManager.py +4 -6
- scitex/scholar/auth/sso/BaseSSOAutomator.py +13 -19
- scitex/scholar/auth/sso/OpenAthensSSOAutomator.py +16 -45
- scitex/scholar/auth/sso/SSOAutomator.py +8 -15
- scitex/scholar/auth/sso/UniversityOfMelbourneSSOAutomator.py +13 -23
- scitex/scholar/browser/ScholarBrowserManager.py +31 -56
- scitex/scholar/browser/__init__.py +1 -0
- scitex/scholar/browser/utils/click_and_wait.py +3 -4
- scitex/scholar/browser/utils/close_unwanted_pages.py +4 -7
- scitex/scholar/browser/utils/wait_redirects.py +15 -40
- scitex/scholar/citation_graph/__init__.py +0 -0
- scitex/scholar/citation_graph/builder.py +3 -7
- scitex/scholar/citation_graph/database.py +4 -11
- scitex/scholar/citation_graph/example.py +5 -10
- scitex/scholar/citation_graph/models.py +0 -0
- scitex/scholar/cli/_url_utils.py +1 -1
- scitex/scholar/cli/chrome.py +5 -3
- scitex/scholar/cli/download_pdf.py +13 -14
- scitex/scholar/cli/handlers/bibtex_handler.py +4 -12
- scitex/scholar/cli/handlers/doi_handler.py +1 -3
- scitex/scholar/cli/handlers/project_handler.py +6 -20
- scitex/scholar/cli/open_browser.py +41 -39
- scitex/scholar/cli/open_browser_auto.py +31 -39
- scitex/scholar/cli/open_browser_monitored.py +27 -24
- scitex/scholar/config/ScholarConfig.py +5 -8
- scitex/scholar/config/__init__.py +1 -0
- scitex/scholar/config/core/_CascadeConfig.py +3 -3
- scitex/scholar/config/core/_PathManager.py +16 -28
- scitex/scholar/core/Paper.py +79 -78
- scitex/scholar/core/Papers.py +16 -27
- scitex/scholar/core/Scholar.py +98 -229
- scitex/scholar/core/journal_normalizer.py +52 -49
- scitex/scholar/core/oa_cache.py +27 -23
- scitex/scholar/core/open_access.py +17 -8
- scitex/scholar/docs/template.py +4 -3
- scitex/scholar/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/clf_svm.py +0 -0
- scitex/scholar/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/download.py +0 -0
- scitex/scholar/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/plot_conf_mat.py +0 -0
- scitex/scholar/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/plot_digits.py +0 -0
- scitex/scholar/docs/to_claude/examples/example-python-project-scitex/scripts/mnist/plot_umap_space.py +0 -0
- scitex/scholar/examples/00_config.py +10 -9
- scitex/scholar/examples/01_auth.py +3 -0
- scitex/scholar/examples/02_browser.py +14 -10
- scitex/scholar/examples/03_01-engine.py +3 -0
- scitex/scholar/examples/03_02-engine-for-bibtex.py +4 -3
- scitex/scholar/examples/04_01-url.py +9 -9
- scitex/scholar/examples/04_02-url-for-bibtex.py +7 -3
- scitex/scholar/examples/04_02-url-for-dois.py +87 -97
- scitex/scholar/examples/05_download_pdf.py +10 -4
- scitex/scholar/examples/06_find_and_download.py +6 -6
- scitex/scholar/examples/06_parse_bibtex.py +17 -17
- scitex/scholar/examples/07_storage_integration.py +6 -9
- scitex/scholar/examples/99_fullpipeline-for-bibtex.py +14 -15
- scitex/scholar/examples/99_fullpipeline-for-one-entry.py +31 -23
- scitex/scholar/examples/99_maintenance.py +3 -0
- scitex/scholar/examples/dev.py +2 -3
- scitex/scholar/examples/zotero_integration.py +11 -18
- scitex/scholar/impact_factor/ImpactFactorEngine.py +7 -9
- scitex/scholar/impact_factor/estimation/__init__.py +4 -4
- scitex/scholar/impact_factor/estimation/core/__init__.py +3 -7
- scitex/scholar/impact_factor/estimation/core/cache_manager.py +223 -211
- scitex/scholar/impact_factor/estimation/core/calculator.py +165 -131
- scitex/scholar/impact_factor/estimation/core/journal_matcher.py +217 -172
- scitex/scholar/impact_factor/jcr/ImpactFactorJCREngine.py +6 -14
- scitex/scholar/impact_factor/jcr/build_database.py +4 -3
- scitex/scholar/integration/base.py +9 -17
- scitex/scholar/integration/mendeley/exporter.py +2 -4
- scitex/scholar/integration/mendeley/importer.py +3 -3
- scitex/scholar/integration/mendeley/linker.py +3 -3
- scitex/scholar/integration/mendeley/mapper.py +9 -6
- scitex/scholar/integration/zotero/__main__.py +26 -43
- scitex/scholar/integration/zotero/exporter.py +15 -11
- scitex/scholar/integration/zotero/importer.py +12 -10
- scitex/scholar/integration/zotero/linker.py +8 -12
- scitex/scholar/integration/zotero/mapper.py +17 -12
- scitex/scholar/metadata_engines/.combined-SemanticScholarSource/_SemanticScholarSource.py +37 -35
- scitex/scholar/metadata_engines/.combined-SemanticScholarSource/_SemanticScholarSourceEnhanced.py +47 -35
- scitex/scholar/metadata_engines/ScholarEngine.py +21 -43
- scitex/scholar/metadata_engines/__init__.py +1 -0
- scitex/scholar/metadata_engines/individual/ArXivEngine.py +15 -37
- scitex/scholar/metadata_engines/individual/CrossRefEngine.py +15 -42
- scitex/scholar/metadata_engines/individual/CrossRefLocalEngine.py +24 -45
- scitex/scholar/metadata_engines/individual/OpenAlexEngine.py +11 -21
- scitex/scholar/metadata_engines/individual/PubMedEngine.py +10 -27
- scitex/scholar/metadata_engines/individual/SemanticScholarEngine.py +28 -35
- scitex/scholar/metadata_engines/individual/URLDOIEngine.py +11 -22
- scitex/scholar/metadata_engines/individual/_BaseDOIEngine.py +20 -49
- scitex/scholar/metadata_engines/utils/_PubMedConverter.py +4 -8
- scitex/scholar/metadata_engines/utils/_URLDOIExtractor.py +5 -10
- scitex/scholar/metadata_engines/utils/__init__.py +2 -0
- scitex/scholar/metadata_engines/utils/_metadata2bibtex.py +3 -0
- scitex/scholar/metadata_engines/utils/_standardize_metadata.py +2 -3
- scitex/scholar/pdf_download/ScholarPDFDownloader.py +25 -37
- scitex/scholar/pdf_download/strategies/chrome_pdf_viewer.py +11 -19
- scitex/scholar/pdf_download/strategies/direct_download.py +5 -9
- scitex/scholar/pdf_download/strategies/manual_download_fallback.py +3 -3
- scitex/scholar/pdf_download/strategies/manual_download_utils.py +6 -13
- scitex/scholar/pdf_download/strategies/open_access_download.py +49 -31
- scitex/scholar/pdf_download/strategies/response_body.py +8 -19
- scitex/scholar/pipelines/ScholarPipelineBibTeX.py +9 -18
- scitex/scholar/pipelines/ScholarPipelineMetadataParallel.py +25 -26
- scitex/scholar/pipelines/ScholarPipelineMetadataSingle.py +62 -23
- scitex/scholar/pipelines/ScholarPipelineParallel.py +13 -30
- scitex/scholar/pipelines/ScholarPipelineSearchParallel.py +299 -220
- scitex/scholar/pipelines/ScholarPipelineSearchSingle.py +202 -165
- scitex/scholar/pipelines/ScholarPipelineSingle.py +25 -51
- scitex/scholar/pipelines/SearchQueryParser.py +55 -55
- scitex/scholar/search_engines/ScholarSearchEngine.py +31 -27
- scitex/scholar/search_engines/_BaseSearchEngine.py +20 -23
- scitex/scholar/search_engines/individual/ArXivSearchEngine.py +53 -35
- scitex/scholar/search_engines/individual/CrossRefSearchEngine.py +47 -40
- scitex/scholar/search_engines/individual/OpenAlexSearchEngine.py +55 -50
- scitex/scholar/search_engines/individual/PubMedSearchEngine.py +8 -10
- scitex/scholar/search_engines/individual/SemanticScholarSearchEngine.py +55 -49
- scitex/scholar/storage/BibTeXHandler.py +150 -95
- scitex/scholar/storage/PaperIO.py +3 -6
- scitex/scholar/storage/ScholarLibrary.py +70 -49
- scitex/scholar/storage/_DeduplicationManager.py +52 -25
- scitex/scholar/storage/_LibraryCacheManager.py +19 -46
- scitex/scholar/storage/_LibraryManager.py +65 -175
- scitex/scholar/url_finder/ScholarURLFinder.py +9 -25
- scitex/scholar/url_finder/strategies/find_pdf_urls_by_direct_links.py +1 -1
- scitex/scholar/url_finder/strategies/find_pdf_urls_by_href.py +6 -10
- scitex/scholar/url_finder/strategies/find_pdf_urls_by_navigation.py +4 -6
- scitex/scholar/url_finder/strategies/find_pdf_urls_by_publisher_patterns.py +8 -15
- scitex/scholar/url_finder/strategies/find_pdf_urls_by_zotero_translators.py +3 -3
- scitex/scholar/url_finder/strategies/find_supplementary_urls_by_href.py +3 -3
- scitex/scholar/url_finder/translators/core/patterns.py +6 -4
- scitex/scholar/url_finder/translators/core/registry.py +6 -9
- scitex/scholar/url_finder/translators/individual/BOFiP_Impots.py +60 -52
- scitex/scholar/url_finder/translators/individual/Baidu_Scholar.py +54 -62
- scitex/scholar/url_finder/translators/individual/Bangkok_Post.py +38 -44
- scitex/scholar/url_finder/translators/individual/Baruch_Foundation.py +43 -47
- scitex/scholar/url_finder/translators/individual/Beobachter.py +46 -50
- scitex/scholar/url_finder/translators/individual/Bezneng_Gajit.py +37 -41
- scitex/scholar/url_finder/translators/individual/BibLaTeX.py +59 -52
- scitex/scholar/url_finder/translators/individual/BibTeX.py +83 -79
- scitex/scholar/url_finder/translators/individual/Biblio_com.py +48 -51
- scitex/scholar/url_finder/translators/individual/Bibliontology_RDF.py +58 -56
- scitex/scholar/url_finder/translators/individual/Camara_Brasileira_do_Livro_ISBN.py +102 -99
- scitex/scholar/url_finder/translators/individual/CanLII.py +49 -43
- scitex/scholar/url_finder/translators/individual/Canada_com.py +36 -40
- scitex/scholar/url_finder/translators/individual/Canadian_Letters_and_Images.py +43 -43
- scitex/scholar/url_finder/translators/individual/Canadiana_ca.py +77 -66
- scitex/scholar/url_finder/translators/individual/Cascadilla_Proceedings_Project.py +68 -62
- scitex/scholar/url_finder/translators/individual/Central_and_Eastern_European_Online_Library_Journals.py +60 -60
- scitex/scholar/url_finder/translators/individual/Champlain_Society_Collection.py +63 -61
- scitex/scholar/url_finder/translators/individual/Chicago_Journal_of_Theoretical_Computer_Science.py +74 -58
- scitex/scholar/url_finder/translators/individual/Christian_Science_Monitor.py +32 -38
- scitex/scholar/url_finder/translators/individual/Columbia_University_Press.py +51 -47
- scitex/scholar/url_finder/translators/individual/Common_Place.py +66 -57
- scitex/scholar/url_finder/translators/individual/Cornell_LII.py +66 -62
- scitex/scholar/url_finder/translators/individual/Cornell_University_Press.py +38 -45
- scitex/scholar/url_finder/translators/individual/CourtListener.py +52 -56
- scitex/scholar/url_finder/translators/individual/DAI_Zenon.py +53 -54
- scitex/scholar/url_finder/translators/individual/access_medicine.py +27 -33
- scitex/scholar/url_finder/translators/individual/acm.py +1 -1
- scitex/scholar/url_finder/translators/individual/acm_digital_library.py +93 -63
- scitex/scholar/url_finder/translators/individual/airiti.py +3 -1
- scitex/scholar/url_finder/translators/individual/aosic.py +3 -1
- scitex/scholar/url_finder/translators/individual/archive_ouverte_aosic.py +3 -1
- scitex/scholar/url_finder/translators/individual/archive_ouverte_en_sciences_de_l_information_et_de_la_communication___aosic_.py +6 -2
- scitex/scholar/url_finder/translators/individual/artforum.py +35 -27
- scitex/scholar/url_finder/translators/individual/arxiv.py +1 -1
- scitex/scholar/url_finder/translators/individual/arxiv_org.py +8 -4
- scitex/scholar/url_finder/translators/individual/atlanta_journal_constitution.py +22 -18
- scitex/scholar/url_finder/translators/individual/atypon_journals.py +19 -11
- scitex/scholar/url_finder/translators/individual/austlii_and_nzlii.py +48 -44
- scitex/scholar/url_finder/translators/individual/australian_dictionary_of_biography.py +21 -17
- scitex/scholar/url_finder/translators/individual/bailii.py +22 -19
- scitex/scholar/url_finder/translators/individual/bbc.py +46 -42
- scitex/scholar/url_finder/translators/individual/bbc_genome.py +37 -25
- scitex/scholar/url_finder/translators/individual/biblioteca_nacional_de_maestros.py +24 -20
- scitex/scholar/url_finder/translators/individual/bibliotheque_archives_nationale_quebec_pistard.py +42 -43
- scitex/scholar/url_finder/translators/individual/bibliotheque_archives_nationales_quebec.py +87 -81
- scitex/scholar/url_finder/translators/individual/bibliotheque_nationale_france.py +39 -37
- scitex/scholar/url_finder/translators/individual/bibsys.py +32 -28
- scitex/scholar/url_finder/translators/individual/bioconductor.py +58 -52
- scitex/scholar/url_finder/translators/individual/biomed_central.py +23 -15
- scitex/scholar/url_finder/translators/individual/biorxiv.py +26 -13
- scitex/scholar/url_finder/translators/individual/blogger.py +39 -43
- scitex/scholar/url_finder/translators/individual/bloomberg.py +48 -52
- scitex/scholar/url_finder/translators/individual/bloomsbury_food_library.py +37 -37
- scitex/scholar/url_finder/translators/individual/bluesky.py +30 -28
- scitex/scholar/url_finder/translators/individual/bnf_isbn.py +1 -1
- scitex/scholar/url_finder/translators/individual/bocc.py +66 -60
- scitex/scholar/url_finder/translators/individual/boe.py +52 -52
- scitex/scholar/url_finder/translators/individual/brill.py +3 -1
- scitex/scholar/url_finder/translators/individual/business_standard.py +36 -38
- scitex/scholar/url_finder/translators/individual/cabi_cab_abstracts.py +39 -41
- scitex/scholar/url_finder/translators/individual/cambridge.py +3 -1
- scitex/scholar/url_finder/translators/individual/cambridge_core.py +30 -24
- scitex/scholar/url_finder/translators/individual/caod.py +50 -46
- scitex/scholar/url_finder/translators/individual/cbc.py +91 -67
- scitex/scholar/url_finder/translators/individual/ccfr_bnf.py +49 -53
- scitex/scholar/url_finder/translators/individual/cia_world_factbook.py +43 -33
- scitex/scholar/url_finder/translators/individual/crossref_rest.py +208 -174
- scitex/scholar/url_finder/translators/individual/current_affairs.py +29 -35
- scitex/scholar/url_finder/translators/individual/dabi.py +70 -66
- scitex/scholar/url_finder/translators/individual/dagens_nyheter.py +3 -1
- scitex/scholar/url_finder/translators/individual/dagstuhl.py +10 -15
- scitex/scholar/url_finder/translators/individual/dar_almandumah.py +13 -9
- scitex/scholar/url_finder/translators/individual/dart_europe.py +19 -22
- scitex/scholar/url_finder/translators/individual/data_gov.py +2 -2
- scitex/scholar/url_finder/translators/individual/databrary.py +27 -28
- scitex/scholar/url_finder/translators/individual/datacite_json.py +152 -137
- scitex/scholar/url_finder/translators/individual/dataverse.py +68 -64
- scitex/scholar/url_finder/translators/individual/daum_news.py +38 -38
- scitex/scholar/url_finder/translators/individual/dblp.py +4 -8
- scitex/scholar/url_finder/translators/individual/dblp_computer_science_bibliography.py +8 -3
- scitex/scholar/url_finder/translators/individual/dbpia.py +5 -3
- scitex/scholar/url_finder/translators/individual/defense_technical_information_center.py +30 -28
- scitex/scholar/url_finder/translators/individual/delpher.py +102 -79
- scitex/scholar/url_finder/translators/individual/demographic_research.py +35 -31
- scitex/scholar/url_finder/translators/individual/denik_cz.py +58 -54
- scitex/scholar/url_finder/translators/individual/depatisnet.py +7 -10
- scitex/scholar/url_finder/translators/individual/der_freitag.py +81 -66
- scitex/scholar/url_finder/translators/individual/der_spiegel.py +56 -54
- scitex/scholar/url_finder/translators/individual/digibib_net.py +3 -1
- scitex/scholar/url_finder/translators/individual/digizeitschriften.py +3 -1
- scitex/scholar/url_finder/translators/individual/dpla.py +13 -14
- scitex/scholar/url_finder/translators/individual/dspace.py +2 -2
- scitex/scholar/url_finder/translators/individual/ebrary.py +3 -1
- scitex/scholar/url_finder/translators/individual/ebscohost.py +3 -1
- scitex/scholar/url_finder/translators/individual/electronic_colloquium_on_computational_complexity.py +3 -1
- scitex/scholar/url_finder/translators/individual/elife.py +3 -1
- scitex/scholar/url_finder/translators/individual/elsevier_health_journals.py +3 -1
- scitex/scholar/url_finder/translators/individual/emerald.py +3 -1
- scitex/scholar/url_finder/translators/individual/emerald_insight.py +3 -1
- scitex/scholar/url_finder/translators/individual/epicurious.py +3 -1
- scitex/scholar/url_finder/translators/individual/eurogamerusgamer.py +3 -1
- scitex/scholar/url_finder/translators/individual/fachportal_padagogik.py +3 -1
- scitex/scholar/url_finder/translators/individual/frontiers.py +1 -1
- scitex/scholar/url_finder/translators/individual/gale_databases.py +3 -1
- scitex/scholar/url_finder/translators/individual/gms_german_medical_science.py +6 -2
- scitex/scholar/url_finder/translators/individual/ieee_computer_society.py +6 -2
- scitex/scholar/url_finder/translators/individual/ieee_xplore.py +41 -35
- scitex/scholar/url_finder/translators/individual/inter_research_science_center.py +6 -2
- scitex/scholar/url_finder/translators/individual/jisc_historical_texts.py +3 -1
- scitex/scholar/url_finder/translators/individual/jstor.py +14 -12
- scitex/scholar/url_finder/translators/individual/korean_national_library.py +3 -1
- scitex/scholar/url_finder/translators/individual/la_times.py +3 -1
- scitex/scholar/url_finder/translators/individual/landesbibliographie_baden_wurttemberg.py +3 -1
- scitex/scholar/url_finder/translators/individual/legislative_insight.py +3 -1
- scitex/scholar/url_finder/translators/individual/libraries_tasmania.py +3 -1
- scitex/scholar/url_finder/translators/individual/library_catalog__koha_.py +3 -1
- scitex/scholar/url_finder/translators/individual/lingbuzz.py +2 -2
- scitex/scholar/url_finder/translators/individual/max_planck_institute_for_the_history_of_science_virtual_laboratory_library.py +3 -1
- scitex/scholar/url_finder/translators/individual/mdpi.py +12 -6
- scitex/scholar/url_finder/translators/individual/microbiology_society_journals.py +3 -1
- scitex/scholar/url_finder/translators/individual/midas_journals.py +3 -1
- scitex/scholar/url_finder/translators/individual/nagoya_university_opac.py +3 -1
- scitex/scholar/url_finder/translators/individual/nature_publishing_group.py +32 -19
- scitex/scholar/url_finder/translators/individual/ntsb_accident_reports.py +3 -1
- scitex/scholar/url_finder/translators/individual/openedition_journals.py +8 -4
- scitex/scholar/url_finder/translators/individual/orcid.py +16 -15
- scitex/scholar/url_finder/translators/individual/oxford.py +25 -19
- scitex/scholar/url_finder/translators/individual/oxford_dictionaries_premium.py +3 -1
- scitex/scholar/url_finder/translators/individual/ozon_ru.py +3 -1
- scitex/scholar/url_finder/translators/individual/plos.py +9 -12
- scitex/scholar/url_finder/translators/individual/polygon.py +3 -1
- scitex/scholar/url_finder/translators/individual/primo.py +3 -1
- scitex/scholar/url_finder/translators/individual/project_muse.py +3 -1
- scitex/scholar/url_finder/translators/individual/pubfactory_journals.py +3 -1
- scitex/scholar/url_finder/translators/individual/pubmed.py +71 -65
- scitex/scholar/url_finder/translators/individual/pubmed_central.py +8 -6
- scitex/scholar/url_finder/translators/individual/rechtspraak_nl.py +3 -1
- scitex/scholar/url_finder/translators/individual/sage_journals.py +25 -17
- scitex/scholar/url_finder/translators/individual/sciencedirect.py +36 -17
- scitex/scholar/url_finder/translators/individual/semantics_visual_library.py +3 -1
- scitex/scholar/url_finder/translators/individual/silverchair.py +70 -52
- scitex/scholar/url_finder/translators/individual/sora.py +3 -1
- scitex/scholar/url_finder/translators/individual/springer.py +15 -11
- scitex/scholar/url_finder/translators/individual/ssrn.py +3 -3
- scitex/scholar/url_finder/translators/individual/stanford_encyclopedia_of_philosophy.py +3 -1
- scitex/scholar/url_finder/translators/individual/superlib.py +3 -1
- scitex/scholar/url_finder/translators/individual/treesearch.py +3 -1
- scitex/scholar/url_finder/translators/individual/university_of_chicago_press_books.py +3 -1
- scitex/scholar/url_finder/translators/individual/vlex.py +3 -1
- scitex/scholar/url_finder/translators/individual/web_of_science.py +3 -1
- scitex/scholar/url_finder/translators/individual/web_of_science_nextgen.py +3 -1
- scitex/scholar/url_finder/translators/individual/wiley.py +31 -25
- scitex/scholar/url_finder/translators/individual/wilson_center_digital_archive.py +3 -1
- scitex/scholar/utils/bibtex/_parse_bibtex.py +3 -3
- scitex/scholar/utils/cleanup/_cleanup_scholar_processes.py +5 -9
- scitex/scholar/utils/text/_TextNormalizer.py +249 -176
- scitex/scholar/utils/validation/DOIValidator.py +31 -28
- scitex/scholar/utils/validation/__init__.py +0 -0
- scitex/scholar/utils/validation/validate_library_dois.py +61 -57
- scitex/scholar/zotero/__init__.py +1 -1
- scitex/security/cli.py +7 -20
- scitex/security/github.py +45 -32
- scitex/session/__init__.py +8 -9
- scitex/session/_decorator.py +49 -42
- scitex/session/_lifecycle.py +39 -39
- scitex/session/_manager.py +24 -20
- scitex/sh/__init__.py +4 -3
- scitex/sh/_execute.py +10 -7
- scitex/sh/_security.py +3 -3
- scitex/sh/_types.py +2 -3
- scitex/stats/__init__.py +57 -6
- scitex/stats/_schema.py +42 -569
- scitex/stats/auto/__init__.py +188 -0
- scitex/stats/auto/_context.py +331 -0
- scitex/stats/auto/_formatting.py +679 -0
- scitex/stats/auto/_rules.py +901 -0
- scitex/stats/auto/_selector.py +554 -0
- scitex/stats/auto/_styles.py +721 -0
- scitex/stats/correct/__init__.py +4 -4
- scitex/stats/correct/_correct_bonferroni.py +43 -34
- scitex/stats/correct/_correct_fdr.py +14 -40
- scitex/stats/correct/_correct_fdr_.py +39 -46
- scitex/stats/correct/_correct_holm.py +14 -32
- scitex/stats/correct/_correct_sidak.py +36 -21
- scitex/stats/descriptive/_circular.py +20 -21
- scitex/stats/descriptive/_describe.py +19 -5
- scitex/stats/descriptive/_nan.py +5 -7
- scitex/stats/descriptive/_real.py +4 -3
- scitex/stats/effect_sizes/__init__.py +10 -11
- scitex/stats/effect_sizes/_cliffs_delta.py +35 -32
- scitex/stats/effect_sizes/_cohens_d.py +30 -31
- scitex/stats/effect_sizes/_epsilon_squared.py +19 -22
- scitex/stats/effect_sizes/_eta_squared.py +23 -27
- scitex/stats/effect_sizes/_prob_superiority.py +18 -21
- scitex/stats/posthoc/__init__.py +3 -3
- scitex/stats/posthoc/_dunnett.py +75 -55
- scitex/stats/posthoc/_games_howell.py +61 -43
- scitex/stats/posthoc/_tukey_hsd.py +42 -34
- scitex/stats/power/__init__.py +2 -2
- scitex/stats/power/_power.py +56 -56
- scitex/stats/tests/__init__.py +1 -1
- scitex/stats/tests/correlation/__init__.py +1 -1
- scitex/stats/tests/correlation/_test_pearson.py +28 -38
- scitex/stats/utils/__init__.py +14 -17
- scitex/stats/utils/_effect_size.py +85 -78
- scitex/stats/utils/_formatters.py +49 -43
- scitex/stats/utils/_normalizers.py +7 -14
- scitex/stats/utils/_power.py +56 -56
- scitex/str/__init__.py +1 -0
- scitex/str/_clean_path.py +3 -3
- scitex/str/_factor_out_digits.py +86 -58
- scitex/str/_format_plot_text.py +180 -111
- scitex/str/_latex.py +19 -19
- scitex/str/_latex_fallback.py +9 -10
- scitex/str/_parse.py +3 -6
- scitex/str/_print_debug.py +13 -13
- scitex/str/_printc.py +2 -0
- scitex/str/_search.py +3 -3
- scitex/template/.legacy/_clone_project.py +9 -13
- scitex/template/__init__.py +10 -2
- scitex/template/_clone_project.py +7 -2
- scitex/template/_copy.py +1 -0
- scitex/template/_customize.py +3 -6
- scitex/template/_git_strategy.py +2 -3
- scitex/template/_rename.py +1 -0
- scitex/template/clone_pip_project.py +6 -7
- scitex/template/clone_research.py +7 -10
- scitex/template/clone_singularity.py +6 -7
- scitex/template/clone_writer_directory.py +6 -7
- scitex/tex/_preview.py +26 -11
- scitex/tex/_to_vec.py +10 -7
- scitex/torch/__init__.py +11 -1
- scitex/types/_ArrayLike.py +2 -0
- scitex/types/_is_listed_X.py +3 -3
- scitex/units.py +110 -77
- scitex/utils/_compress_hdf5.py +3 -3
- scitex/utils/_email.py +8 -4
- scitex/utils/_notify.py +14 -8
- scitex/utils/_search.py +6 -6
- scitex/utils/_verify_scitex_format.py +17 -42
- scitex/utils/_verify_scitex_format_v01.py +12 -34
- scitex/utils/template.py +4 -3
- scitex/vis/__init__.py +0 -0
- scitex/vis/backend/__init__.py +3 -3
- scitex/vis/backend/{export.py → _export.py} +1 -1
- scitex/vis/backend/{parser.py → _parser.py} +1 -3
- scitex/vis/backend/{render.py → _render.py} +1 -1
- scitex/vis/canvas.py +15 -3
- scitex/vis/editor/__init__.py +0 -0
- scitex/vis/editor/_dearpygui_editor.py +450 -304
- scitex/vis/editor/_defaults.py +114 -123
- scitex/vis/editor/_edit.py +38 -26
- scitex/vis/editor/_flask_editor.py +8 -8
- scitex/vis/editor/_mpl_editor.py +63 -48
- scitex/vis/editor/_qt_editor.py +210 -159
- scitex/vis/editor/_tkinter_editor.py +146 -89
- scitex/vis/editor/flask_editor/__init__.py +10 -10
- scitex/vis/editor/flask_editor/_bbox.py +529 -0
- scitex/vis/editor/flask_editor/{core.py → _core.py} +45 -29
- scitex/vis/editor/flask_editor/_plotter.py +567 -0
- scitex/vis/editor/flask_editor/_renderer.py +393 -0
- scitex/vis/editor/flask_editor/{utils.py → _utils.py} +13 -14
- scitex/vis/editor/flask_editor/templates/__init__.py +5 -5
- scitex/vis/editor/flask_editor/templates/{html.py → _html.py} +234 -16
- scitex/vis/editor/flask_editor/templates/_scripts.py +1261 -0
- scitex/vis/editor/flask_editor/templates/{styles.py → _styles.py} +192 -2
- scitex/vis/io/__init__.py +5 -5
- scitex/vis/io/{canvas.py → _canvas.py} +8 -4
- scitex/vis/io/{data.py → _data.py} +13 -9
- scitex/vis/io/{directory.py → _directory.py} +7 -4
- scitex/vis/io/{export.py → _export.py} +15 -12
- scitex/vis/io/{load.py → _load.py} +1 -1
- scitex/vis/io/{panel.py → _panel.py} +21 -13
- scitex/vis/io/{save.py → _save.py} +0 -0
- scitex/vis/model/__init__.py +7 -7
- scitex/vis/model/{annotations.py → _annotations.py} +2 -4
- scitex/vis/model/{axes.py → _axes.py} +1 -1
- scitex/vis/model/{figure.py → _figure.py} +0 -0
- scitex/vis/model/{guides.py → _guides.py} +1 -1
- scitex/vis/model/{plot.py → _plot.py} +2 -4
- scitex/vis/model/{plot_types.py → _plot_types.py} +0 -0
- scitex/vis/model/{styles.py → _styles.py} +0 -0
- scitex/vis/utils/__init__.py +2 -2
- scitex/vis/utils/{defaults.py → _defaults.py} +1 -2
- scitex/vis/utils/{validate.py → _validate.py} +3 -9
- scitex/web/__init__.py +7 -1
- scitex/web/_scraping.py +54 -38
- scitex/web/_search_pubmed.py +30 -14
- scitex/writer/.legacy/Writer_v01-refactored.py +4 -4
- scitex/writer/.legacy/_compile.py +18 -28
- scitex/writer/Writer.py +8 -21
- scitex/writer/__init__.py +11 -11
- scitex/writer/_clone_writer_project.py +2 -6
- scitex/writer/_compile/__init__.py +1 -0
- scitex/writer/_compile/_parser.py +1 -0
- scitex/writer/_compile/_runner.py +35 -38
- scitex/writer/_compile/_validator.py +1 -0
- scitex/writer/_compile/manuscript.py +1 -0
- scitex/writer/_compile/revision.py +1 -0
- scitex/writer/_compile/supplementary.py +1 -0
- scitex/writer/_compile_async.py +5 -12
- scitex/writer/_project/__init__.py +1 -0
- scitex/writer/_project/_create.py +10 -25
- scitex/writer/_project/_trees.py +4 -9
- scitex/writer/_project/_validate.py +2 -3
- scitex/writer/_validate_tree_structures.py +7 -18
- scitex/writer/dataclasses/__init__.py +8 -10
- scitex/writer/dataclasses/config/_CONSTANTS.py +2 -3
- scitex/writer/dataclasses/config/_WriterConfig.py +4 -9
- scitex/writer/dataclasses/contents/_ManuscriptContents.py +14 -25
- scitex/writer/dataclasses/contents/_RevisionContents.py +21 -16
- scitex/writer/dataclasses/contents/_SupplementaryContents.py +21 -24
- scitex/writer/dataclasses/core/_Document.py +2 -3
- scitex/writer/dataclasses/core/_DocumentSection.py +8 -23
- scitex/writer/dataclasses/results/_CompilationResult.py +2 -3
- scitex/writer/dataclasses/results/_LaTeXIssue.py +3 -6
- scitex/writer/dataclasses/results/_SaveSectionsResponse.py +20 -9
- scitex/writer/dataclasses/results/_SectionReadResponse.py +24 -10
- scitex/writer/dataclasses/tree/_ConfigTree.py +7 -4
- scitex/writer/dataclasses/tree/_ManuscriptTree.py +10 -13
- scitex/writer/dataclasses/tree/_RevisionTree.py +16 -17
- scitex/writer/dataclasses/tree/_ScriptsTree.py +10 -5
- scitex/writer/dataclasses/tree/_SharedTree.py +10 -13
- scitex/writer/dataclasses/tree/_SupplementaryTree.py +15 -14
- scitex/writer/utils/.legacy_git_retry.py +3 -8
- scitex/writer/utils/_parse_latex_logs.py +2 -3
- scitex/writer/utils/_parse_script_args.py +20 -23
- scitex/writer/utils/_watch.py +5 -5
- {scitex-2.5.0.dist-info → scitex-2.7.0.dist-info}/METADATA +4 -10
- {scitex-2.5.0.dist-info → scitex-2.7.0.dist-info}/RECORD +1071 -975
- scitex/db/_sqlite3/_SQLite3Mixins/_ColumnMixin_v01-indentation-issues.py +0 -583
- scitex/plt/_subplots/_export_as_csv_formatters.py +0 -112
- scitex/vis/editor/flask_editor/bbox.py +0 -216
- scitex/vis/editor/flask_editor/plotter.py +0 -130
- scitex/vis/editor/flask_editor/renderer.py +0 -184
- scitex/vis/editor/flask_editor/templates/scripts.py +0 -614
- {scitex-2.5.0.dist-info → scitex-2.7.0.dist-info}/WHEEL +0 -0
- {scitex-2.5.0.dist-info → scitex-2.7.0.dist-info}/entry_points.txt +0 -0
- {scitex-2.5.0.dist-info → scitex-2.7.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
scitex/.mcp.json,sha256=ge1NDrBZkRIxJgx_tCS9QvcEa_P_ay8AAAafraZVRP4,1259
|
|
2
|
-
scitex/__init__.py,sha256=
|
|
3
|
-
scitex/__main__.py,sha256=
|
|
4
|
-
scitex/__version__.py,sha256
|
|
5
|
-
scitex/_optional_deps.py,sha256=
|
|
6
|
-
scitex/errors.py,sha256=
|
|
7
|
-
scitex/units.py,sha256=
|
|
2
|
+
scitex/__init__.py,sha256=8VnaCPWr7UG6qzusJepd8-4PCoJVMinzz-FAK9nllxY,5996
|
|
3
|
+
scitex/__main__.py,sha256=_7OnKtETkmRU1QhAGIUJaT2WrCdsYar0ggzgMJ-HyEI,489
|
|
4
|
+
scitex/__version__.py,sha256=-QF5tRWQANPQE4XiWS5DaRgz4Uwyt51Hg6tgbsxtKCg,400
|
|
5
|
+
scitex/_optional_deps.py,sha256=dRLke1qnkOQ0RJBlKQ45ErfAphxjRcohpIjzYhnyylA,3607
|
|
6
|
+
scitex/errors.py,sha256=R317_uneFtBWA8yYPOHq6CRi0menDk0NCooMLbCMBQs,15228
|
|
7
|
+
scitex/units.py,sha256=lm2SH4PGXz-22tjUoBQhvKJDKmPD01ykSFWoCaFC384,10356
|
|
8
8
|
scitex/ai/README.md,sha256=EdRrmZRt2ARgVKQgKO2YqMktb9MIqZK35RHAu7NskmY,7060
|
|
9
|
-
scitex/ai/__init__.py,sha256=
|
|
10
|
-
scitex/ai/_gen_ai/_Anthropic.py,sha256=
|
|
11
|
-
scitex/ai/_gen_ai/_BaseGenAI.py,sha256=
|
|
12
|
-
scitex/ai/_gen_ai/_DeepSeek.py,sha256=
|
|
13
|
-
scitex/ai/_gen_ai/_Google.py,sha256=
|
|
9
|
+
scitex/ai/__init__.py,sha256=hHNbcIXyMAjaLqCoLhyKKc6uWc5dz8jVxrfcy6bTS6A,1822
|
|
10
|
+
scitex/ai/_gen_ai/_Anthropic.py,sha256=R3ZnYL5uwctrQ7jQ_bNuDbTihZu0KhPekCwl_Sl7EHo,5125
|
|
11
|
+
scitex/ai/_gen_ai/_BaseGenAI.py,sha256=ToNeaJzhFfeLbcagECDLAjrvu5-jfNxslp1ISuKcXTs,10947
|
|
12
|
+
scitex/ai/_gen_ai/_DeepSeek.py,sha256=IKHFjML4-AxXbfFHJ18qlJkj7h3enTnr_RtLl70BPcg,4883
|
|
13
|
+
scitex/ai/_gen_ai/_Google.py,sha256=Hqxau29FqEWBuNYL7W-xwTOLfUkhSDLfc_Uq_Q5QHS4,4586
|
|
14
14
|
scitex/ai/_gen_ai/_Groq.py,sha256=_KFYJU56d60UzAm2jQFB6m_udJZmNSVexfrsVescbmc,2695
|
|
15
|
-
scitex/ai/_gen_ai/_Llama.py,sha256=
|
|
16
|
-
scitex/ai/_gen_ai/_OpenAI.py,sha256=
|
|
17
|
-
scitex/ai/_gen_ai/_PARAMS.py,sha256=
|
|
18
|
-
scitex/ai/_gen_ai/_Perplexity.py,sha256=
|
|
19
|
-
scitex/ai/_gen_ai/__init__.py,sha256=
|
|
15
|
+
scitex/ai/_gen_ai/_Llama.py,sha256=SBOHhTKh5k_wt9jnO7lx-O2fDX_Z1j5LBGBwTBflW14,3896
|
|
16
|
+
scitex/ai/_gen_ai/_OpenAI.py,sha256=wUWqXmXHkudt6vDX68X-iuJgkziDsN4M3mdYKbprvug,6827
|
|
17
|
+
scitex/ai/_gen_ai/_PARAMS.py,sha256=loyGq4udin4IIlBDxme8WNI9jghDVHat_CXkzwpiA_o,14017
|
|
18
|
+
scitex/ai/_gen_ai/_Perplexity.py,sha256=pO_z-ntFMLctltRLSTcQYvBFzZJx_-dmTf82z7Z0PhQ,5765
|
|
19
|
+
scitex/ai/_gen_ai/__init__.py,sha256=7sYp0-lZhrK8aYmk1b4JDu4k-cWJTJ4ZARuvLL-sZ5k,1127
|
|
20
20
|
scitex/ai/_gen_ai/_calc_cost.py,sha256=_Y-9WGQcJiZqZ2_Lfdvj8JOFukPYwzPGB3WPCLCgDXI,1848
|
|
21
|
-
scitex/ai/_gen_ai/_format_output_func.py,sha256=
|
|
21
|
+
scitex/ai/_gen_ai/_format_output_func.py,sha256=qjC7OzwpDPERf9Vq7-CJdxl6rqFO2RRctXqImnkwt-8,4986
|
|
22
22
|
scitex/ai/_gen_ai/_genai_factory.py,sha256=jFjyfpzN5KtseCxU8lHUYOh4XUfx4iQiW9dOzC1ILqc,1790
|
|
23
23
|
scitex/ai/activation/__init__.py,sha256=URPkRP6Qvb4S71xozzcXbtnBEl15cZ3f8Y-l3tkh3Vo,106
|
|
24
24
|
scitex/ai/activation/_define.py,sha256=LSoTyJEyPE6G6GuG0FqoHku35_GHvZrgv72r4ay9VrE,217
|
|
25
25
|
scitex/ai/classification/Classifier.py,sha256=Xrp-pKjTBvQrmS1lNNjHb-u1_-DcYFUsareZM7NsPKk,4598
|
|
26
|
-
scitex/ai/classification/CrossValidationExperiment.py,sha256=
|
|
26
|
+
scitex/ai/classification/CrossValidationExperiment.py,sha256=1jdmD1f0GLinBNE9Uzjdswu7mtrNHe6IzOJk5v2Bw30,11030
|
|
27
27
|
scitex/ai/classification/README.md,sha256=naEqv2faftVJAa4zTO4bbVIg3fowjb6NyUctDGSJ9Mw,7112
|
|
28
28
|
scitex/ai/classification/__init__.py,sha256=ej6sJKHHYpOUw18OXzDMfdpGcXQQgNuX4hr8p53E19s,1249
|
|
29
|
-
scitex/ai/classification/examples/timeseries_cv_demo.py,sha256=
|
|
29
|
+
scitex/ai/classification/examples/timeseries_cv_demo.py,sha256=2hySasSDvrjrKGZZvLRQ33LxW999x0vA5WS7mxQi9RU,13829
|
|
30
30
|
scitex/ai/classification/examples/verify_multi/config.json,sha256=TruvfN52tdYzO2VewAr0Rsdr9JqRRb4-kDPKpzaTuwQ,205
|
|
31
31
|
scitex/ai/classification/examples/verify_multi/multi_task_comparison.md,sha256=fKU9qz3zxFRkl9LBz2RG-H5KfKVOnQJlF0mKCXHix_I,365
|
|
32
32
|
scitex/ai/classification/examples/verify_multi/multi_task_validation.json,sha256=DQkR39mAX83eL2__lw7PJaQeN42LqPNt1Gw56P1PL_s,2048
|
|
@@ -50,36 +50,36 @@ scitex/ai/classification/examples/verify_test/validation_report.json,sha256=YASJ
|
|
|
50
50
|
scitex/ai/classification/examples/verify_test/paper_export/README.md,sha256=i-DjouNqlCV8hAvvfDhzG0nL_ol2kvkLLqcVVRYdE7g,349
|
|
51
51
|
scitex/ai/classification/examples/verify_test/paper_export/raw_results.json,sha256=8otG7H61ArJsRUNP6ZAZt4PJWHQfaQ6ixOENm-nNlOg,2570
|
|
52
52
|
scitex/ai/classification/examples/verify_test/paper_export/summary_table.tex,sha256=vSIKiJ86j5OLpIN-BfrVvStaFcxrR-xkhq6EKAvrXJM,373
|
|
53
|
-
scitex/ai/classification/reporters/_BaseClassificationReporter.py,sha256
|
|
54
|
-
scitex/ai/classification/reporters/_ClassificationReporter.py,sha256=
|
|
55
|
-
scitex/ai/classification/reporters/_MultiClassificationReporter.py,sha256=
|
|
56
|
-
scitex/ai/classification/reporters/_SingleClassificationReporter.py,sha256=
|
|
57
|
-
scitex/ai/classification/reporters/__init__.py,sha256=
|
|
58
|
-
scitex/ai/classification/reporters/reporter_utils/_Plotter.py,sha256=
|
|
59
|
-
scitex/ai/classification/reporters/reporter_utils/__init__.py,sha256=
|
|
60
|
-
scitex/ai/classification/reporters/reporter_utils/aggregation.py,sha256=
|
|
61
|
-
scitex/ai/classification/reporters/reporter_utils/data_models.py,sha256=
|
|
62
|
-
scitex/ai/classification/reporters/reporter_utils/reporting.py,sha256
|
|
63
|
-
scitex/ai/classification/reporters/reporter_utils/storage.py,sha256=
|
|
64
|
-
scitex/ai/classification/reporters/reporter_utils/validation.py,sha256=
|
|
53
|
+
scitex/ai/classification/reporters/_BaseClassificationReporter.py,sha256=XlNrNI1IgbHGqsdl51CnFfVsi7WeApR-GTlnNNAzAkU,8909
|
|
54
|
+
scitex/ai/classification/reporters/_ClassificationReporter.py,sha256=mGhQpgGC8dSIWvc4g864KunF9N1x2kbjglDWzR6Ru-U,25257
|
|
55
|
+
scitex/ai/classification/reporters/_MultiClassificationReporter.py,sha256=wTmYiLI5AZhFnRKsssInv1YywqbagEexnL3B1U-qerE,13099
|
|
56
|
+
scitex/ai/classification/reporters/_SingleClassificationReporter.py,sha256=hGMSQ2BYg6GOJd0V6z5SjKhC83u_vYsgs3q_xiWSpgM,70595
|
|
57
|
+
scitex/ai/classification/reporters/__init__.py,sha256=0aVtPNaMZe-H9nO25Xylsp8rdJQqcaKhr3LlcnruhPk,351
|
|
58
|
+
scitex/ai/classification/reporters/reporter_utils/_Plotter.py,sha256=eNLb8HacLIJQwPVJT1Up3xem28XK1VO0ysnrsGlfgpA,39296
|
|
59
|
+
scitex/ai/classification/reporters/reporter_utils/__init__.py,sha256=cOFhcWTzIEB-xQJ7qFUaECABC9gIUNYgBhJ7C-gFO-o,1554
|
|
60
|
+
scitex/ai/classification/reporters/reporter_utils/aggregation.py,sha256=N6e1xz4Ul_9bMi7qb_VmpKY1aNjcu5lnVLqT6JRqBUU,13593
|
|
61
|
+
scitex/ai/classification/reporters/reporter_utils/data_models.py,sha256=pUK4CHkF5tptuo1FU_IAuxNVNt6Wew94oDdL-Ury_ts,11541
|
|
62
|
+
scitex/ai/classification/reporters/reporter_utils/reporting.py,sha256=aP-JKsVzaD-G-adadBWkB2QeSUw9mP9xkap0QxIwvLI,47657
|
|
63
|
+
scitex/ai/classification/reporters/reporter_utils/storage.py,sha256=3Sk5-asIsW3fsrbKKfw9OK128GMOuO79JS9XjNhGJcc,6654
|
|
64
|
+
scitex/ai/classification/reporters/reporter_utils/validation.py,sha256=dSLq_d8hV1nfvdHraK7XYLXV6t2o6kEbws87YQPQIlk,11389
|
|
65
65
|
scitex/ai/classification/timeseries/README.md,sha256=5cTiRJXCQO6IC0tAQGdRhFLqDgkJxozbR-YPuMoqLi0,10134
|
|
66
|
-
scitex/ai/classification/timeseries/_TimeSeriesBlockingSplit.py,sha256=
|
|
67
|
-
scitex/ai/classification/timeseries/_TimeSeriesCalendarSplit.py,sha256=
|
|
68
|
-
scitex/ai/classification/timeseries/_TimeSeriesMetadata.py,sha256=
|
|
69
|
-
scitex/ai/classification/timeseries/_TimeSeriesSlidingWindowSplit.py,sha256=
|
|
70
|
-
scitex/ai/classification/timeseries/_TimeSeriesSlidingWindowSplit_v01-not-using-n_splits.py,sha256=
|
|
71
|
-
scitex/ai/classification/timeseries/_TimeSeriesStrategy.py,sha256=
|
|
72
|
-
scitex/ai/classification/timeseries/_TimeSeriesStratifiedSplit.py,sha256=
|
|
73
|
-
scitex/ai/classification/timeseries/__init__.py,sha256=
|
|
74
|
-
scitex/ai/classification/timeseries/_normalize_timestamp.py,sha256=
|
|
66
|
+
scitex/ai/classification/timeseries/_TimeSeriesBlockingSplit.py,sha256=Fvvpo5kT7_lyA-KBs9Dm7ZfUbJZ0Tj0lwJWMwIWjwqI,21826
|
|
67
|
+
scitex/ai/classification/timeseries/_TimeSeriesCalendarSplit.py,sha256=bw0Kp5zcnI-9bKsonjU9-QfM40C1NBAwjoCUM-em20Q,24051
|
|
68
|
+
scitex/ai/classification/timeseries/_TimeSeriesMetadata.py,sha256=6dloT5RHSIIMoxyZgg5S_Qaoc7bXiaCsGJncnPKGYdc,4445
|
|
69
|
+
scitex/ai/classification/timeseries/_TimeSeriesSlidingWindowSplit.py,sha256=9j31OswH5AXuDpnV--k1Uq88lg9Sjf4ZryJn2RPbbTI,64819
|
|
70
|
+
scitex/ai/classification/timeseries/_TimeSeriesSlidingWindowSplit_v01-not-using-n_splits.py,sha256=430ZZEP3eoeFmMoC0vQvwKrsqCh21parucnxzd7DNNg,63016
|
|
71
|
+
scitex/ai/classification/timeseries/_TimeSeriesStrategy.py,sha256=AE0J8fzFAoqKLFMMrOkJbzST_eiv3a9Uw5MQt48VE48,2453
|
|
72
|
+
scitex/ai/classification/timeseries/_TimeSeriesStratifiedSplit.py,sha256=zAh_j1kpuWthhrMRkduOjo36Vb9P77kpWxy1UX0-1LA,24895
|
|
73
|
+
scitex/ai/classification/timeseries/__init__.py,sha256=b42AdBGvX-GuMnEwgxRH-up9KfzKB6onqE4r3VHlemM,1153
|
|
74
|
+
scitex/ai/classification/timeseries/_normalize_timestamp.py,sha256=um4g138Mt9ghFWr8pt2BHQ6YQnwQYfR5ebwIUGEz32Q,11835
|
|
75
75
|
scitex/ai/classification/timeseries/run_all.sh,sha256=nQey9mtQuusaro6L7_JKNUEigmdELZ0b3AC2GIuZtPo,1044
|
|
76
76
|
scitex/ai/clustering/__init__.py,sha256=OvB98TrqIw22aWmCDyuJaggypOd6rNC7W3a6IsEIbmQ,158
|
|
77
|
-
scitex/ai/clustering/_pca.py,sha256=
|
|
78
|
-
scitex/ai/clustering/_umap.py,sha256=
|
|
79
|
-
scitex/ai/feature_extraction/__init__.py,sha256=
|
|
80
|
-
scitex/ai/feature_extraction/vit.py,sha256=
|
|
77
|
+
scitex/ai/clustering/_pca.py,sha256=aJVnvmDD6twTSEmkfJsr-BZUvZ4mKhdLO5eeKSQYq2Y,3221
|
|
78
|
+
scitex/ai/clustering/_umap.py,sha256=lgcSsTdkI2U6DKqViE-YSC9uKEfH4xc989OxbRL-WCE,10076
|
|
79
|
+
scitex/ai/feature_extraction/__init__.py,sha256=kIdQlLMjkX5arO4bPybVc3PjHRP1LbhozAImRKAWetU,1944
|
|
80
|
+
scitex/ai/feature_extraction/vit.py,sha256=EW3u19UUAlGkl61w4ACOvI2RbhJ74pfp8gDn3KKK-a8,4195
|
|
81
81
|
scitex/ai/feature_selection/__init__.py,sha256=eYoR_KStRYUQSbUeDxCL7lNs2-z1dV4YHkUwK9ip0MI,881
|
|
82
|
-
scitex/ai/feature_selection/feature_selection.py,sha256=
|
|
82
|
+
scitex/ai/feature_selection/feature_selection.py,sha256=iIgzlOZimvSmIcbMfNiZL7fvi8TFCJBG_Rq605RiIOU,11861
|
|
83
83
|
scitex/ai/loss/_L1L2Losses.py,sha256=xKUw8c6x6sjGMcZ1T4uzZ2yIY1tX0nrIl9SZRHt4D2s,782
|
|
84
84
|
scitex/ai/loss/__init__.py,sha256=UpcmSOhGXM0jYTWe0nroTkRp6AcQwv_FxqDw71ti5sc,205
|
|
85
85
|
scitex/ai/loss/multi_task_loss.py,sha256=E2cs0U_xMKcK5tfdcbD8jg613AZNKP0RNrPY42Nrde8,1506
|
|
@@ -87,18 +87,18 @@ scitex/ai/metrics/__init__.py,sha256=xJ_Gp6WzUyrCK4HgyeRwqMk9C0exAosLUNHL-gAU8pI
|
|
|
87
87
|
scitex/ai/metrics/_calc_bacc.py,sha256=BTqzrO2SBEXEkh51PWgfrks6y05B2KLvqRem218XANQ,1555
|
|
88
88
|
scitex/ai/metrics/_calc_bacc_from_conf_mat.py,sha256=INMSsUOEupRCwwnwOzjGAagPOR-no17xkfvdNfGrAm8,813
|
|
89
89
|
scitex/ai/metrics/_calc_clf_report.py,sha256=M2HxvJW_blCL7f20bYlJVOeN2SAhL9tKlb6CsE3wuoM,1901
|
|
90
|
-
scitex/ai/metrics/_calc_conf_mat.py,sha256=
|
|
91
|
-
scitex/ai/metrics/_calc_feature_importance.py,sha256=
|
|
90
|
+
scitex/ai/metrics/_calc_conf_mat.py,sha256=d-EOPpx9fRq7kcVy-cdfHL8NY3jlMR0DhpoRgXhxvzw,2488
|
|
91
|
+
scitex/ai/metrics/_calc_feature_importance.py,sha256=xlnSs_LZpkgBcJ0dZz4OLplaVYMaccbD6-RCoQjGkZI,5613
|
|
92
92
|
scitex/ai/metrics/_calc_mcc.py,sha256=1OsZ_V0gg3GcovpAdG_pmv3EwGLb0dwetaiPyL_pBsY,1522
|
|
93
|
-
scitex/ai/metrics/_calc_pre_rec_auc.py,sha256=
|
|
94
|
-
scitex/ai/metrics/_calc_roc_auc.py,sha256=
|
|
95
|
-
scitex/ai/metrics/_calc_seizure_prediction_metrics.py,sha256=
|
|
96
|
-
scitex/ai/metrics/_calc_silhouette_score.py,sha256=
|
|
93
|
+
scitex/ai/metrics/_calc_pre_rec_auc.py,sha256=oG_L98pZKfqmhGpj1f6kQGGKGXX9feYNAiaCEXid5xU,3747
|
|
94
|
+
scitex/ai/metrics/_calc_roc_auc.py,sha256=Jp8MUQMu4dddLJNzYkVBRx0PtvUPbJQTEkvQpPxsSD8,3466
|
|
95
|
+
scitex/ai/metrics/_calc_seizure_prediction_metrics.py,sha256=wriEAIqAbzz3Vn3e95V9yWo16J9POqZU4SaYRUaIXpo,19434
|
|
96
|
+
scitex/ai/metrics/_calc_silhouette_score.py,sha256=W8Zo8vwqCrrtftqrl2bLiCxP9HzZg-8g8x5WjjwUFRE,18034
|
|
97
97
|
scitex/ai/metrics/_normalize_labels.py,sha256=X3qlSs7qm0mcZcOlh8iBkc1WkjfhlHMWt-EGtbBpNg4,2569
|
|
98
98
|
scitex/ai/optim/MIGRATION.md,sha256=o117MFCOddGbQMnpYeP1V3cAFR-aZLPu_aFjKaXikEg,1089
|
|
99
99
|
scitex/ai/optim/__init__.py,sha256=md6BWruoblImewwGqfxBEHZEn1_-1ILYElXBfnFn9mc,257
|
|
100
100
|
scitex/ai/optim/_get_set.py,sha256=s7R3BSAvY-eoWF7VuT9vYCsumNdVXACrYLXwNH6VePw,813
|
|
101
|
-
scitex/ai/optim/_optimizers.py,sha256=
|
|
101
|
+
scitex/ai/optim/_optimizers.py,sha256=a0CczQNEZNBQyeS6ZHHuW367LH-VnsvoDbXgwsTsfCI,1849
|
|
102
102
|
scitex/ai/optim/Ranger_Deep_Learning_Optimizer/LICENSE,sha256=RyQ5mkQ_c4rg3r6j0vr2BXuy_oJ3T43XGSVnhCec_Gw,11349
|
|
103
103
|
scitex/ai/optim/Ranger_Deep_Learning_Optimizer/README.md,sha256=DZK8Lhvvi9_8FT4Di3WwR4E-E_AkVFsdEg7Ju1UXB_c,3919
|
|
104
104
|
scitex/ai/optim/Ranger_Deep_Learning_Optimizer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -106,29 +106,29 @@ scitex/ai/optim/Ranger_Deep_Learning_Optimizer/ranger-init.jpg,sha256=A0IZJDSVg_
|
|
|
106
106
|
scitex/ai/optim/Ranger_Deep_Learning_Optimizer/ranger-with-gc-options.jpg,sha256=IbBSpnzO1zTlLAUg9vsrRF8BFwg4AzRXTHP6tbifmDU,124095
|
|
107
107
|
scitex/ai/optim/Ranger_Deep_Learning_Optimizer/setup.py,sha256=3XOb_n6YP_YCmj3slxeDywXjEH2XEtm21Ra4wt8CsNM,671
|
|
108
108
|
scitex/ai/optim/Ranger_Deep_Learning_Optimizer/ranger/__init__.py,sha256=rzbk4cgDMaEG5zYLXizWFSzA4_HDYr2qHKCRCngPrDA,91
|
|
109
|
-
scitex/ai/optim/Ranger_Deep_Learning_Optimizer/ranger/ranger.py,sha256=
|
|
110
|
-
scitex/ai/optim/Ranger_Deep_Learning_Optimizer/ranger/ranger2020.py,sha256=
|
|
111
|
-
scitex/ai/optim/Ranger_Deep_Learning_Optimizer/ranger/ranger913A.py,sha256=
|
|
109
|
+
scitex/ai/optim/Ranger_Deep_Learning_Optimizer/ranger/ranger.py,sha256=EP6B728G-KB06MGVNeshk7PzoqwmAksqAAer1GfUv5o,8115
|
|
110
|
+
scitex/ai/optim/Ranger_Deep_Learning_Optimizer/ranger/ranger2020.py,sha256=BjjwdS7Twt8QjKyC2_bmIyHjQlSzKEVXZQUhJuS2w5Q,9429
|
|
111
|
+
scitex/ai/optim/Ranger_Deep_Learning_Optimizer/ranger/ranger913A.py,sha256=0YXQUqppd8jeRI2sakjfEOnGxV2RA4OwP_EkI30yTyo,8443
|
|
112
112
|
scitex/ai/optim/Ranger_Deep_Learning_Optimizer/ranger/rangerqh.py,sha256=LoaP_hb50mF90TEpPuCQCOAKl8GMqrEydUCNTAS7Yd8,6990
|
|
113
|
-
scitex/ai/plt/__init__.py,sha256=
|
|
114
|
-
scitex/ai/plt/_plot_feature_importance.py,sha256=
|
|
115
|
-
scitex/ai/plt/_plot_learning_curve.py,sha256=
|
|
116
|
-
scitex/ai/plt/_plot_optuna_study.py,sha256
|
|
117
|
-
scitex/ai/plt/_plot_pre_rec_curve.py,sha256=
|
|
118
|
-
scitex/ai/plt/_plot_roc_curve.py,sha256=
|
|
119
|
-
scitex/ai/plt/_stx_conf_mat.py,sha256=
|
|
120
|
-
scitex/ai/sampling/undersample.py,sha256=
|
|
113
|
+
scitex/ai/plt/__init__.py,sha256=pbU0FqEvbVGwPuXHVAzB04Yszwlh3zF6GCF0O5QHA4c,1835
|
|
114
|
+
scitex/ai/plt/_plot_feature_importance.py,sha256=f8W6VEqD7B-RIxA-jXsQ82LYD31yjfGYGxSTtZVrOr0,9150
|
|
115
|
+
scitex/ai/plt/_plot_learning_curve.py,sha256=f0YlnH8_2azn9qxheVXLohJ3a8ulys7FZVEnukYJxag,9164
|
|
116
|
+
scitex/ai/plt/_plot_optuna_study.py,sha256=-M1CXtnOe5YYHtS8qtKN6y261sJm4Mlbn3wBMYYRlsY,6755
|
|
117
|
+
scitex/ai/plt/_plot_pre_rec_curve.py,sha256=kV9RZIGoSRTJVGjJ472W5YP8vkNoWTYaoLs5pKh29Is,8472
|
|
118
|
+
scitex/ai/plt/_plot_roc_curve.py,sha256=f51nBEf_FnWJIiVMdHPxDGRZpVLV1Q-3kgFpuaTzo3I,7035
|
|
119
|
+
scitex/ai/plt/_stx_conf_mat.py,sha256=gs_IN0Y_d0PBX6gPtIglKUbsKgT8PkX0Vr0YTXOVjwQ,19925
|
|
120
|
+
scitex/ai/sampling/undersample.py,sha256=8yO0ssHA6QQoVymomKuIiJt4lfgHl89G8VmTrATCnjo,1221
|
|
121
121
|
scitex/ai/sk/__init__.py,sha256=6WtwEsIM6Ykh5jvk4yGzQvWMK3fTn5mmFmRSK9xE0d8,209
|
|
122
122
|
scitex/ai/sk/_clf.py,sha256=yW5fQEgQOtLyEjZj5dzh1gL6t3K9sEzeWsX0FTx6Ajc,1988
|
|
123
123
|
scitex/ai/sk/_to_sktime.py,sha256=8tIcx_0GGmHkUL7c6RFbeCau98kAI09oTOj5TFmhpYM,3027
|
|
124
|
-
scitex/ai/sklearn/__init__.py,sha256=
|
|
124
|
+
scitex/ai/sklearn/__init__.py,sha256=3YsVonL-Yc5yDcDbnqMnk1ctqcCL0PDL1jiXX0pkYD0,730
|
|
125
125
|
scitex/ai/sklearn/clf.py,sha256=yW5fQEgQOtLyEjZj5dzh1gL6t3K9sEzeWsX0FTx6Ajc,1988
|
|
126
126
|
scitex/ai/sklearn/to_sktime.py,sha256=SXwIdBRyLI1n9Ec4OW85m8o26kL_gZZwQOemRZ74AZw,3036
|
|
127
127
|
scitex/ai/training/_EarlyStopping.py,sha256=opudKQAIzFDlVZNjPns0BtYkMQKzn-34N3kjB8CxYIE,4921
|
|
128
|
-
scitex/ai/training/_LearningCurveLogger.py,sha256=
|
|
128
|
+
scitex/ai/training/_LearningCurveLogger.py,sha256=C2Ytx3Hoq0QRFrVHs0pydQRFbQrpNYw2bE4ZlY-L9RU,16135
|
|
129
129
|
scitex/ai/training/__init__.py,sha256=1fOxy3AJZpIny044q187c8eBj_GhtLX97yjePeHwjho,198
|
|
130
130
|
scitex/ai/utils/__init__.py,sha256=a_D6qDyA95gEJruniQ-svQUsdUl73IZg-e6Izw2J3yc,656
|
|
131
|
-
scitex/ai/utils/_check_params.py,sha256=
|
|
131
|
+
scitex/ai/utils/_check_params.py,sha256=8vOKLULXxTq3jySu5U9_qcvk18N5ZnBD7L1AEzP-_Fk,1461
|
|
132
132
|
scitex/ai/utils/_default_dataset.py,sha256=goU7EwvtAXLxQQeVhEI5nUa25eS75FIu5K75KZ_l0Ok,1290
|
|
133
133
|
scitex/ai/utils/_format_samples_for_sktime.py,sha256=5h-WPdPahqnzRnCttzMkctz6KRNOvGyOYfZiyZj7Tc8,582
|
|
134
134
|
scitex/ai/utils/_label_encoder.py,sha256=RA2V0VjRoGb5I9cvWEPPeih0TlTKl8d8oTXgm7ioaVM,4051
|
|
@@ -137,62 +137,68 @@ scitex/ai/utils/_sliding_window_data_augmentation.py,sha256=80uSbUnt8LDMmxzRmjPo
|
|
|
137
137
|
scitex/ai/utils/_under_sample.py,sha256=8BfDaou3MR890wNCV_spdrxerAjSHpBZVxxsF0t-t-0,1197
|
|
138
138
|
scitex/ai/utils/_verify_n_gpus.py,sha256=FEmnwsSNzNIdTPbftbFP68yqKtwpiPtwDlxIivhLICg,438
|
|
139
139
|
scitex/ai/utils/grid_search.py,sha256=XJ-cEsswH4B5BtmwQKQVZXc9kwFnK0Uo7FmzsEFvTMc,4646
|
|
140
|
-
scitex/benchmark/__init__.py,sha256=
|
|
141
|
-
scitex/benchmark/benchmark.py,sha256=
|
|
142
|
-
scitex/benchmark/monitor.py,sha256=
|
|
143
|
-
scitex/benchmark/profiler.py,sha256=
|
|
140
|
+
scitex/benchmark/__init__.py,sha256=OitmWTUUapff-_cfOQ5I8wlQ0ob6wayNQn9cFETuCeE,945
|
|
141
|
+
scitex/benchmark/benchmark.py,sha256=OHzg4-wFODzHwhPke1IRK-rESDcESi5HAN9YJqvWfnA,10619
|
|
142
|
+
scitex/benchmark/monitor.py,sha256=iKFFEiH8dK83gCwxj1_TEFeYDdghnreIcDgSDyoK4IE,11541
|
|
143
|
+
scitex/benchmark/profiler.py,sha256=ZOZrwsoIZcKIGDpUlWe2wwOb9Up6mUAV_s8VK3dHn5E,8365
|
|
144
|
+
scitex/bridge/__init__.py,sha256=P2MYVL33Ta4uO533sh0LVORHIJZjNK5fqgvxJR3idwo,2716
|
|
145
|
+
scitex/bridge/_helpers.py,sha256=OZhmylrVKhctXAmZ7veGts17-9Tnjhk4EeSEPY0ZzBg,4117
|
|
146
|
+
scitex/bridge/_plt_vis.py,sha256=mkLzCmUEbome57ZJPDJ1fH4Zb_in219uzdFrzkafY9M,14926
|
|
147
|
+
scitex/bridge/_protocol.py,sha256=Kc7d86GTbxFGs6viZazFfnWPa2FZN_lScMcI-gF2NHY,8133
|
|
148
|
+
scitex/bridge/_stats_plt.py,sha256=1VMgM_ig2HEcg7vsX61_lAMOFSvlBUHZIPGJ8AFR2sM,7329
|
|
149
|
+
scitex/bridge/_stats_vis.py,sha256=eGdFCkut3fvL9eC4vp2_G6uHcWEokQuHaF02pjSd3o4,7630
|
|
144
150
|
scitex/browser/README.md,sha256=xpYYwib632qOyLCeAIBNtwE2o8frDiLXTyacw2fAz6k,4436
|
|
145
|
-
scitex/browser/__init__.py,sha256=
|
|
151
|
+
scitex/browser/__init__.py,sha256=lccpOWogQ5WA81bCoZb--RV42dG62_-LRujpKe0Vc8I,2723
|
|
146
152
|
scitex/browser/auth/__init__.py,sha256=mSHD6yUmDsgADN9U4D2Hm5Pi7y4mWYBCsdRnTcB9BHY,910
|
|
147
|
-
scitex/browser/auth/google.py,sha256=
|
|
148
|
-
scitex/browser/automation/CookieHandler.py,sha256=
|
|
153
|
+
scitex/browser/auth/google.py,sha256=QuMXqeG0MYsN7xyDbWcrv8PPbBkMnP8J7oMHvN3uPm0,13166
|
|
154
|
+
scitex/browser/automation/CookieHandler.py,sha256=A6Mtq7RR1iKHUmAXw3BRfwMjpc1sD4-F-bEvwE_RZd4,6803
|
|
149
155
|
scitex/browser/automation/__init__.py,sha256=MWEvlQytFbMVnWRwleD0_2musFDwtKudO1NfVpMkQXo,124
|
|
150
|
-
scitex/browser/collaboration/__init__.py,sha256=
|
|
151
|
-
scitex/browser/collaboration/auth_helpers.py,sha256=
|
|
152
|
-
scitex/browser/collaboration/collaborative_agent.py,sha256=
|
|
156
|
+
scitex/browser/collaboration/__init__.py,sha256=adVLHQSkj_aZZqqhPLe317ycyc6ZWrFyVfMTFe19omM,1703
|
|
157
|
+
scitex/browser/collaboration/auth_helpers.py,sha256=C6JXN0tkTc2LcQvU-x_mj2InKAu_q1oL-8q5HkYQGPo,2764
|
|
158
|
+
scitex/browser/collaboration/collaborative_agent.py,sha256=TQK8L5S4umvtl9BXYXChtS2eTx-E7_LqmGGKMSJogw0,3763
|
|
153
159
|
scitex/browser/collaboration/credential_manager.py,sha256=XHFt0VMhAyvKl4WS4F9QntWPe7Ef0RwNYEE8PeDhAbY,5402
|
|
154
|
-
scitex/browser/collaboration/interactive_panel.py,sha256=
|
|
160
|
+
scitex/browser/collaboration/interactive_panel.py,sha256=FfAbTtihvwRE3rwZrpPk9yEcFSu-gPIO1bw_S69tv4A,15822
|
|
155
161
|
scitex/browser/collaboration/persistent_browser.py,sha256=b3jcexP36wMryrjKKltgbFdRWGnLvDv9e5NE9qex_yE,4886
|
|
156
|
-
scitex/browser/collaboration/shared_session.py,sha256=
|
|
157
|
-
scitex/browser/collaboration/standard_interactions.py,sha256=
|
|
162
|
+
scitex/browser/collaboration/shared_session.py,sha256=mfTQgQeihXuw18qqWCq4-u9ZybOJlIfzuEO-bd5iqwU,12635
|
|
163
|
+
scitex/browser/collaboration/standard_interactions.py,sha256=x6aF4Hup-Oz9eGfpneud7X3uasyc4V49ChHWNKuUqpg,9483
|
|
158
164
|
scitex/browser/collaboration/visual_feedback.py,sha256=0UOLczpMV408AU4zcToOKK3J0xGWaHadJgOGzn53glo,6737
|
|
159
|
-
scitex/browser/core/BrowserMixin.py,sha256=
|
|
160
|
-
scitex/browser/core/ChromeProfileManager.py,sha256=
|
|
165
|
+
scitex/browser/core/BrowserMixin.py,sha256=ZdMELCIpfRDdGSKnEACcmnpf9_ECbl-BhjU_x4ssHcs,10726
|
|
166
|
+
scitex/browser/core/ChromeProfileManager.py,sha256=E_lj5-Ppy0fFQmcLyxcTm0R4K_yZCs-j5CbL1rBKeCY,14381
|
|
161
167
|
scitex/browser/core/__init__.py,sha256=bl533RumUuDg4-zrzr5X8BbTn_wIMcc4wkuG5A0QN9U,200
|
|
162
168
|
scitex/browser/debugging/__init__.py,sha256=q7e1tYecO3nJflNHfur2JkLXZazJW4AZT-Dxz3vnc8k,1971
|
|
163
|
-
scitex/browser/debugging/_browser_logger.py,sha256=
|
|
164
|
-
scitex/browser/debugging/_failure_capture.py,sha256=
|
|
165
|
-
scitex/browser/debugging/_highlight_element.py,sha256=
|
|
166
|
-
scitex/browser/debugging/_show_grid.py,sha256=
|
|
167
|
-
scitex/browser/debugging/_sync_session.py,sha256=
|
|
168
|
-
scitex/browser/debugging/_test_monitor.py,sha256=
|
|
169
|
-
scitex/browser/debugging/_visual_cursor.py,sha256
|
|
169
|
+
scitex/browser/debugging/_browser_logger.py,sha256=RQQz65y1hEChFRbiZYpPFjB5E6ohVaGdj3Cjfz_yIcU,20182
|
|
170
|
+
scitex/browser/debugging/_failure_capture.py,sha256=c82GDWjsA2BcHMezpL-z1dbSYS8QfqR08jM4rMzgwTU,11735
|
|
171
|
+
scitex/browser/debugging/_highlight_element.py,sha256=9borF2FzoXG-mc_NQXx8svmkkK851PwiOmelVtARnwI,3963
|
|
172
|
+
scitex/browser/debugging/_show_grid.py,sha256=9ZfoNwcJpkiSVJhficwwpC-bVT_wsmYJcMXd-wZlrdQ,4023
|
|
173
|
+
scitex/browser/debugging/_sync_session.py,sha256=5VJpWlihX6PZ5a-GeQPreY_s8TtDlhTox4XLrBAFz9I,8045
|
|
174
|
+
scitex/browser/debugging/_test_monitor.py,sha256=aw1xYX2igGT4mpr_eBYmDDhuoP5uRI9T0cpr2LwyrW4,8294
|
|
175
|
+
scitex/browser/debugging/_visual_cursor.py,sha256=-Fa70HWO2-4PYRtBPVcycDeImJLQ6g-7u8QMiJ57HSs,13989
|
|
170
176
|
scitex/browser/docs/ABOUT_PLAYWRIGHT.md,sha256=3ovUznFqms50F1CuRr-3lNC2Xk86TR_ytItNO2mDNAQ,1418
|
|
171
177
|
scitex/browser/interaction/__init__.py,sha256=wT0bf6VlTuuyyazN3SDrKelIaIlUYjpD1aBM3HOcGqY,586
|
|
172
|
-
scitex/browser/interaction/click_center.py,sha256=
|
|
173
|
-
scitex/browser/interaction/click_with_fallbacks.py,sha256=
|
|
174
|
-
scitex/browser/interaction/close_popups.py,sha256=
|
|
175
|
-
scitex/browser/interaction/fill_with_fallbacks.py,sha256=
|
|
176
|
-
scitex/browser/pdf/__init__.py,sha256=
|
|
177
|
-
scitex/browser/pdf/click_download_for_chrome_pdf_viewer.py,sha256=
|
|
178
|
-
scitex/browser/pdf/detect_chrome_pdf_viewer.py,sha256=
|
|
179
|
-
scitex/browser/remote/CaptchaHandler.py,sha256=
|
|
180
|
-
scitex/browser/remote/ZenRowsAPIClient.py,sha256=
|
|
181
|
-
scitex/browser/remote/ZenRowsBrowserManager.py,sha256=
|
|
178
|
+
scitex/browser/interaction/click_center.py,sha256=qNDvCnK5zYKEJQH7GxC0TlCI1000M31d-aZsKc3xl8o,3509
|
|
179
|
+
scitex/browser/interaction/click_with_fallbacks.py,sha256=_eGFagBT1ztjv90Af5umMygHSCClRSLAcxZ3RjGP7bs,5533
|
|
180
|
+
scitex/browser/interaction/close_popups.py,sha256=n1XuXKNOo58I1tMNHekfz7DGvOeEoFABvGqbzcXA3DM,16854
|
|
181
|
+
scitex/browser/interaction/fill_with_fallbacks.py,sha256=7E6sbRThZMy-6hlTLQXwh3tS0gpnOHF4TQp9o2NwAqI,5914
|
|
182
|
+
scitex/browser/pdf/__init__.py,sha256=3W1g-VQwWfhkY8Y3woJp9cIOy04k0LrmhYwomh9l4MY,403
|
|
183
|
+
scitex/browser/pdf/click_download_for_chrome_pdf_viewer.py,sha256=7CjsimyL8Ro1k4ZgecXepmxiIiQotNJKJnGccREqDN4,5701
|
|
184
|
+
scitex/browser/pdf/detect_chrome_pdf_viewer.py,sha256=UPPZHqTtA913GVIAD9f_xSA2pYWREZHMF2VfbouMeJo,5820
|
|
185
|
+
scitex/browser/remote/CaptchaHandler.py,sha256=FCq_K_aXFxeZyUnqb1acFtcNRdmqnt01U9XzkM21vCs,15681
|
|
186
|
+
scitex/browser/remote/ZenRowsAPIClient.py,sha256=oMjkbqMh-5wVaARtxD3jwt0yyhtU5SlhPoumsB46vaY,12832
|
|
187
|
+
scitex/browser/remote/ZenRowsBrowserManager.py,sha256=AcDMPatdbsB-HyWJdW-Sc4MEKTBuqftg3FBUkpC_694,23366
|
|
182
188
|
scitex/browser/remote/__init__.py,sha256=Ua9vg68eIAsJVqm5pS8H3O-5JGt5qGXqjsD8m-AMM9o,327
|
|
183
|
-
scitex/browser/stealth/HumanBehavior.py,sha256=
|
|
184
|
-
scitex/browser/stealth/StealthManager.py,sha256=
|
|
189
|
+
scitex/browser/stealth/HumanBehavior.py,sha256=mWy2ZUFPlvMBMCqV7AiYJ3_2jaHbQCp7dOV1k-m4xKg,11089
|
|
190
|
+
scitex/browser/stealth/StealthManager.py,sha256=Wya1OLF4I16RZO7AfVS2O1PkGtzRUhh84R2EAYMuQnA,37452
|
|
185
191
|
scitex/browser/stealth/__init__.py,sha256=KVbyLjm8KnM5YwyB84A3pwLdUGkANNgwpA7YL2fyAxo,188
|
|
186
192
|
scitex/capture/README.md,sha256=SEpeXZedxklXMIpWWF2Ye_254hi0RGQAiSBmYvWfL3g,6850
|
|
187
193
|
scitex/capture/TODO.md,sha256=-G-IurfcKpnlPEPLIUKxts12Y3gvKJ6bAm-cQCzfaCM,1400
|
|
188
|
-
scitex/capture/__init__.py,sha256=
|
|
189
|
-
scitex/capture/__main__.py,sha256=
|
|
190
|
-
scitex/capture/capture.py,sha256=
|
|
191
|
-
scitex/capture/cli.py,sha256=
|
|
192
|
-
scitex/capture/gif.py,sha256=
|
|
193
|
-
scitex/capture/mcp_server.py,sha256=
|
|
194
|
-
scitex/capture/session.py,sha256=
|
|
195
|
-
scitex/capture/utils.py,sha256=
|
|
194
|
+
scitex/capture/__init__.py,sha256=X1x_kuP769-Q1NEiXlAbqWLSOIfRpQoL6Ng8Az8DiH8,2881
|
|
195
|
+
scitex/capture/__main__.py,sha256=SuSUonm0_sD1qGpnkG5FOr2F5gWFWcs-4taI1BXoIgg,521
|
|
196
|
+
scitex/capture/capture.py,sha256=vDVaY2mTNxTsWbg8he78jh0NPhVULLzanREkE9EtQHE,28735
|
|
197
|
+
scitex/capture/cli.py,sha256=bNal0BXlAM34q9OLv1ydV9lHq95pckY0XaaxsiQTkts,7201
|
|
198
|
+
scitex/capture/gif.py,sha256=Rbx-9u6zGAjImhFWp5yLm3MXCW1oaUq8OusWdPnzJAY,11278
|
|
199
|
+
scitex/capture/mcp_server.py,sha256=sZTncryHC6ixAZpHjVlP3kyaX-GZ8PRYtfXB7HI9wpk,36895
|
|
200
|
+
scitex/capture/session.py,sha256=N-8mY6A6QmJHRCJYW4dQhrK7iVmJhYBRDt8vYyeBNYE,1972
|
|
201
|
+
scitex/capture/utils.py,sha256=WyMr8aGmWqOneT4BFTvWNY-PrMPxmKLHtUEgSk59URY,21881
|
|
196
202
|
scitex/capture/powershell/capture_all_desktops.ps1,sha256=-sIgZLmaA-Pkc5MzlL5-SATfITsjNVAdT7HekLRYSG0,2445
|
|
197
203
|
scitex/capture/powershell/capture_all_monitors.ps1,sha256=fnX7WHhgHmZg1VUK6FN-P66xOhHqiPdw_Id3Mq8tiG0,2223
|
|
198
204
|
scitex/capture/powershell/capture_single_monitor.ps1,sha256=Q1cTxy1exAU7FJc6wZROKB7VmelwWcs9wNxF5viLN64,2541
|
|
@@ -200,598 +206,682 @@ scitex/capture/powershell/capture_url.ps1,sha256=tfPSZBMKtNW40AWsbUMA_pz-elJDeXE
|
|
|
200
206
|
scitex/capture/powershell/capture_window_by_handle.ps1,sha256=gkHBlpkp5unLCS55m69rF2XUc9OaUOEmpy6EK9_3qpo,3432
|
|
201
207
|
scitex/capture/powershell/detect_monitors_and_desktops.ps1,sha256=baNVdM_mF2eJUAia0dsTDnBBYE7z1yQ6igbvsDGcfig,4705
|
|
202
208
|
scitex/capture/powershell/enumerate_virtual_desktops.ps1,sha256=-KF39BUYjoZBL9mqHu2dxWJGIjI9awEX2pA6GVwuEV4,1676
|
|
203
|
-
scitex/cli/__init__.py,sha256=
|
|
204
|
-
scitex/cli/cloud.py,sha256=
|
|
205
|
-
scitex/cli/
|
|
206
|
-
scitex/cli/
|
|
207
|
-
scitex/cli/
|
|
208
|
-
scitex/cli/
|
|
209
|
-
scitex/cli/
|
|
210
|
-
scitex/
|
|
211
|
-
scitex/cloud/
|
|
212
|
-
scitex/
|
|
213
|
-
scitex/config/
|
|
209
|
+
scitex/cli/__init__.py,sha256=LShYon_C7H5yVbLYHSdyoNgwYxXdzUFEVGZkMG211dU,399
|
|
210
|
+
scitex/cli/cloud.py,sha256=ZghVxWaHHNz0zhTz3BnZPguGwuZjslaj-Xxerg6-_6E,21398
|
|
211
|
+
scitex/cli/config.py,sha256=J-oJL9MJ8Ef0mKxlctlvRDbS7eHeOyb6BImZq_PTVbc,6216
|
|
212
|
+
scitex/cli/main.py,sha256=oKGD2Uj9QUs5C1sUBXAIr-i55adGG1s7LRZpgmMQ4Dk,5346
|
|
213
|
+
scitex/cli/scholar.py,sha256=4uAq9u5Y_XIWqnm0PKiwzq-iiW1HkmF-gm0xBBeJjnI,9944
|
|
214
|
+
scitex/cli/security.py,sha256=6f_3TO5E0jzWvDmIDcF1ZKWmLxsn6iTJCHVlYyPE6os,2785
|
|
215
|
+
scitex/cli/web.py,sha256=JDBCzK0-udvUG7zzDgkuP1FVpppxVc331mwVePkm_Cs,13522
|
|
216
|
+
scitex/cli/writer.py,sha256=Gx2b1GNkiPvPc0nOKhEHZHOT1ZXuYUNO2WG4_uFmcxA,8199
|
|
217
|
+
scitex/cloud/__init__.py,sha256=WKtdINhyW2Qyl0icwHZQCGQUBsEJ4rULWV1RRVfX76U,3933
|
|
218
|
+
scitex/cloud/_matplotlib_hook.py,sha256=B5IEctAF1Rb7jvkZa5Xl8T1FuBcGiRjFxEtW_mmRz2I,3731
|
|
219
|
+
scitex/config/README.md,sha256=J9Uv4vTaDKWSNkL3p_eYsqRNdZw0Xb-Q9hG7D8Rk8RU,8979
|
|
220
|
+
scitex/config/_PriorityConfig.py,sha256=PZhpvraX1K9ExvVeUKe508q374wiOJe3Cbi5fRyZahA,9175
|
|
221
|
+
scitex/config/_ScitexConfig.py,sha256=1Kfv7M6p58YUbHtOB8sgC3_purHKP4BzmErnEtmZuLc,9110
|
|
222
|
+
scitex/config/__init__.py,sha256=xVOV7bekFd5iIVMRgt-GV-xmlZjpqQMoIniJNvREcX0,1488
|
|
223
|
+
scitex/config/_paths.py,sha256=LAvtg2IlGwqpitM4fdcjTDonlsauEnuxIHd_pj-klmc,9861
|
|
224
|
+
scitex/config/default.yaml,sha256=Dbbd-70KYTYMESDrDQFxXzwbcPD4oSJ66ryEL2vavLA,2675
|
|
214
225
|
scitex/context/__init__.py,sha256=9d7EwdUc9GmW-ELATjK9KeHJsSdlW1fUYApoZMa07_4,157
|
|
215
|
-
scitex/context/_suppress_output.py,sha256=
|
|
226
|
+
scitex/context/_suppress_output.py,sha256=mWx676apgn7sNKoNqJJ4kQ3bhF-T_SJ6utq9XMKT5is,1203
|
|
216
227
|
scitex/db/README.md,sha256=5Ps4ESW5FrDedm3NEsz1nxO55q2gavFdhupMHQ6qfY4,6221
|
|
217
|
-
scitex/db/__init__.py,sha256=
|
|
218
|
-
scitex/db/__main__.py,sha256=
|
|
219
|
-
scitex/db/_check_health.py,sha256=
|
|
220
|
-
scitex/db/_delete_duplicates.py,sha256=
|
|
221
|
-
scitex/db/_inspect.py,sha256=
|
|
222
|
-
scitex/db/_inspect_optimized.py,sha256=
|
|
223
|
-
scitex/db/_BaseMixins/_BaseBackupMixin.py,sha256=
|
|
224
|
-
scitex/db/_BaseMixins/_BaseBatchMixin.py,sha256=
|
|
225
|
-
scitex/db/_BaseMixins/_BaseBlobMixin.py,sha256=
|
|
228
|
+
scitex/db/__init__.py,sha256=t8l7iNYkRUbvnVCpvS8STpfokT2i-AaTBZEsFFwQies,1326
|
|
229
|
+
scitex/db/__main__.py,sha256=WlV_2R7F5l8hBidDoNpmDSZIlwmNvBWWKnZS9xB-F_k,1963
|
|
230
|
+
scitex/db/_check_health.py,sha256=Jx9xGRglgIxYKxqh05-JtwETNp8ETWMZ2bGz8YMSGYE,11740
|
|
231
|
+
scitex/db/_delete_duplicates.py,sha256=5wFlR1KiyOd3t86zQVu9alNrZHBvCUzxydqJq2lVR3A,1140
|
|
232
|
+
scitex/db/_inspect.py,sha256=vhfQR7tBhNNa0AS9vlMtB0y16xWeuZwkhy6n7PArXr4,13221
|
|
233
|
+
scitex/db/_inspect_optimized.py,sha256=x7URqjigyX2UOOTjGi4zHUZQEFkK7QNan8CbnbGxxEo,10570
|
|
234
|
+
scitex/db/_BaseMixins/_BaseBackupMixin.py,sha256=DEhRlRVYWmliKbIHXeTWfQ_EZSL1GXywRfhaIjVE1CA,834
|
|
235
|
+
scitex/db/_BaseMixins/_BaseBatchMixin.py,sha256=28HVK3Fxn3V2mKfJv8Svt6mN7TQkJhcwCCiPFqKmvNs,899
|
|
236
|
+
scitex/db/_BaseMixins/_BaseBlobMixin.py,sha256=ZKSNv9vM37ADE8Mr9qwNmJllLHJuvyTkUNmSsFJrqJE,2165
|
|
226
237
|
scitex/db/_BaseMixins/_BaseConnectionMixin.py,sha256=IYQu8C9hLyYb4WfjPmZjfwrPiheMShWMDpyB-1T9IjM,1000
|
|
227
|
-
scitex/db/_BaseMixins/_BaseImportExportMixin.py,sha256=
|
|
228
|
-
scitex/db/_BaseMixins/_BaseIndexMixin.py,sha256=
|
|
229
|
-
scitex/db/_BaseMixins/_BaseMaintenanceMixin.py,sha256=
|
|
230
|
-
scitex/db/_BaseMixins/_BaseQueryMixin.py,sha256
|
|
231
|
-
scitex/db/_BaseMixins/_BaseRowMixin.py,sha256=
|
|
238
|
+
scitex/db/_BaseMixins/_BaseImportExportMixin.py,sha256=B0j-Yd1XrVo39nRCS3K1i4ZKAVYqgrZP90m9qYfI0y0,856
|
|
239
|
+
scitex/db/_BaseMixins/_BaseIndexMixin.py,sha256=VYaJyd8WbvHDdVpTLKcVHF7-lWxBwBhtlL82pnKzXLA,663
|
|
240
|
+
scitex/db/_BaseMixins/_BaseMaintenanceMixin.py,sha256=GQt1v7hlZFIKi-O-y-1JoLrrnV2k4NnzOO_Ta5-88Do,832
|
|
241
|
+
scitex/db/_BaseMixins/_BaseQueryMixin.py,sha256=NHSxgGtpWI3SQ5EWM6Ynb8wjli6CJOGCzhyQd_sdofU,1424
|
|
242
|
+
scitex/db/_BaseMixins/_BaseRowMixin.py,sha256=WUcCttIQJz9ymKuQr5if1lJQCMKWiPt95AoOYhZTUMU,793
|
|
232
243
|
scitex/db/_BaseMixins/_BaseSchemaMixin.py,sha256=QD3fp6kMRA74phdYnFmYzIvLC1WzRk2XVJ42_V-f63k,1228
|
|
233
|
-
scitex/db/_BaseMixins/_BaseTableMixin.py,sha256=
|
|
234
|
-
scitex/db/_BaseMixins/_BaseTransactionMixin.py,sha256=
|
|
235
|
-
scitex/db/_BaseMixins/__init__.py,sha256=
|
|
236
|
-
scitex/db/_postgresql/_PostgreSQL.py,sha256=
|
|
237
|
-
scitex/db/_postgresql/__init__.py,sha256=
|
|
244
|
+
scitex/db/_BaseMixins/_BaseTableMixin.py,sha256=rz3aYaW9FEpKprA3ktC2cG89VlcB-izfHEhClAlqkio,1729
|
|
245
|
+
scitex/db/_BaseMixins/_BaseTransactionMixin.py,sha256=0fk6mokISkGz-gmiqus2DB2B3AxJqWslJUaOJvi2REI,1074
|
|
246
|
+
scitex/db/_BaseMixins/__init__.py,sha256=mA_3wV_6obUUgrRxnjFpEvslduVkjO6_OIreFTq5tLI,970
|
|
247
|
+
scitex/db/_postgresql/_PostgreSQL.py,sha256=FamhVk3iIG5G0_rPzxAY8pFqcozZsSZYtqv3pJlk5-U,3390
|
|
248
|
+
scitex/db/_postgresql/__init__.py,sha256=j0Yabxxuns-ZlpN_jgi6JVwf6G-W5EMXK140W0Botxw,120
|
|
238
249
|
scitex/db/_postgresql/_PostgreSQLMixins/_BackupMixin.py,sha256=GEuuwYEEIqb9btkJNdaGfPJPxWGAjov0cclI8tLOv6w,5258
|
|
239
250
|
scitex/db/_postgresql/_PostgreSQLMixins/_BatchMixin.py,sha256=b1dfXcHaPw_nSUvXebiWsBGq1v7kJXSta3OKOVVb2F8,2868
|
|
240
|
-
scitex/db/_postgresql/_PostgreSQLMixins/_BlobMixin.py,sha256=
|
|
241
|
-
scitex/db/_postgresql/_PostgreSQLMixins/_ConnectionMixin.py,sha256=
|
|
242
|
-
scitex/db/_postgresql/_PostgreSQLMixins/_ImportExportMixin.py,sha256=
|
|
251
|
+
scitex/db/_postgresql/_PostgreSQLMixins/_BlobMixin.py,sha256=Sim2sDMMJ885kbWx2iAjwSKTed8McfpIEpYhKVabk5I,8808
|
|
252
|
+
scitex/db/_postgresql/_PostgreSQLMixins/_ConnectionMixin.py,sha256=iuiLXayTQ1IV0terbRFa3DTXV9vAyQg9gP7NHtvhnI8,2616
|
|
253
|
+
scitex/db/_postgresql/_PostgreSQLMixins/_ImportExportMixin.py,sha256=np0aLE1z9xLdiNzl_GokIlICIEjW8lM3ArpzHgrkMS4,1780
|
|
243
254
|
scitex/db/_postgresql/_PostgreSQLMixins/_IndexMixin.py,sha256=jLQAoqlA7gxh3cFRNatBslmdTeU_2beG2xkmNcCi2Qs,1837
|
|
244
|
-
scitex/db/_postgresql/_PostgreSQLMixins/_MaintenanceMixin.py,sha256=
|
|
245
|
-
scitex/db/_postgresql/_PostgreSQLMixins/_QueryMixin.py,sha256=
|
|
246
|
-
scitex/db/_postgresql/_PostgreSQLMixins/_RowMixin.py,sha256=
|
|
255
|
+
scitex/db/_postgresql/_PostgreSQLMixins/_MaintenanceMixin.py,sha256=lj-PTw2qYiAkGbzIrGWfmO-mQaBugX3lJaBiatT7Qd8,6463
|
|
256
|
+
scitex/db/_postgresql/_PostgreSQLMixins/_QueryMixin.py,sha256=VcHiEHmBz-9hE6_xpp9Ep6gEWLaQuVYN4lw8i_cU7H0,3369
|
|
257
|
+
scitex/db/_postgresql/_PostgreSQLMixins/_RowMixin.py,sha256=co1y5nhpHNNCC8jv7brnP3u2TPhyGcxQVYnQy859SJQ,2396
|
|
247
258
|
scitex/db/_postgresql/_PostgreSQLMixins/_SchemaMixin.py,sha256=K2y82grbEYtHYY-wOg2pfeCsiFEQU4xsxhqKQC32f98,4810
|
|
248
259
|
scitex/db/_postgresql/_PostgreSQLMixins/_TableMixin.py,sha256=Kyvu7PhhIBOKcOjH68UUJqXQ_6j1XhimGZVyufJ02mU,6020
|
|
249
|
-
scitex/db/_postgresql/_PostgreSQLMixins/_TransactionMixin.py,sha256=
|
|
260
|
+
scitex/db/_postgresql/_PostgreSQLMixins/_TransactionMixin.py,sha256=BM1aONIhle0Talxy2GYQcA7V7ZFCX9NlTvyCheRK32Q,1687
|
|
250
261
|
scitex/db/_postgresql/_PostgreSQLMixins/__init__.py,sha256=ffvfXsAX1X9VyM9fKIPXSviNqtVT3LBpv-oZMpSf_Ys,925
|
|
251
262
|
scitex/db/_sqlite3/README.md,sha256=psSVlbk4equmd-2XoOcYDH-FmuahYRj8WXlmpmPks-c,4570
|
|
252
263
|
scitex/db/_sqlite3/README_v01.md,sha256=WwjYqPrNP1uJBEPegJaOAjJQzaz90tOvjJE6VhS0_TU,2813
|
|
253
|
-
scitex/db/_sqlite3/_SQLite3.py,sha256=
|
|
254
|
-
scitex/db/_sqlite3/__init__.py,sha256=
|
|
255
|
-
scitex/db/_sqlite3/_delete_duplicates.py,sha256=
|
|
256
|
-
scitex/db/_sqlite3/_SQLite3Mixins/_ArrayMixin.py,sha256=
|
|
257
|
-
scitex/db/_sqlite3/_SQLite3Mixins/_ArrayMixin_v01-need-_hash-col.py,sha256=
|
|
258
|
-
scitex/db/_sqlite3/_SQLite3Mixins/_BatchMixin.py,sha256=
|
|
259
|
-
scitex/db/_sqlite3/_SQLite3Mixins/_BlobMixin.py,sha256=
|
|
260
|
-
scitex/db/_sqlite3/_SQLite3Mixins/_ColumnMixin.py,sha256=
|
|
261
|
-
scitex/db/_sqlite3/_SQLite3Mixins/
|
|
262
|
-
scitex/db/_sqlite3/_SQLite3Mixins/
|
|
263
|
-
scitex/db/_sqlite3/_SQLite3Mixins/
|
|
264
|
-
scitex/db/_sqlite3/_SQLite3Mixins/
|
|
265
|
-
scitex/db/_sqlite3/_SQLite3Mixins/_IndexMixin.py,sha256=XWDtrQRWjIg3iMclyVO1pG22cFWnFL7FpC823uLrB78,988
|
|
264
|
+
scitex/db/_sqlite3/_SQLite3.py,sha256=WX91CEzCDqef99yULo6MoJI1furK4xHRfuou1vAgako,7058
|
|
265
|
+
scitex/db/_sqlite3/__init__.py,sha256=S1JxuFtTGS8p5o6VwBn-L7m29GEKlpAdV0tgWcuHiAc,195
|
|
266
|
+
scitex/db/_sqlite3/_delete_duplicates.py,sha256=f6Hy1A-XYgK727oUmFANq0KMrnxILqk9YRMXvIlXsww,8554
|
|
267
|
+
scitex/db/_sqlite3/_SQLite3Mixins/_ArrayMixin.py,sha256=kJMVmuQm1-G2NPVkuq232PFZ9V0YmDCIMtfaf5Z6jcw,18921
|
|
268
|
+
scitex/db/_sqlite3/_SQLite3Mixins/_ArrayMixin_v01-need-_hash-col.py,sha256=_jLXw3iNR6P7YG-Fu05b1ksoNFNLuKZTXlp23vyY-xI,17191
|
|
269
|
+
scitex/db/_sqlite3/_SQLite3Mixins/_BatchMixin.py,sha256=ZZCGT4cmgE1c10nJrCanFQffjOwY4SuggdsZ119GRR0,8679
|
|
270
|
+
scitex/db/_sqlite3/_SQLite3Mixins/_BlobMixin.py,sha256=Dop21NnK9mDjgeVqx46iygzWjoZ68DvZknFMQBIMdiM,8637
|
|
271
|
+
scitex/db/_sqlite3/_SQLite3Mixins/_ColumnMixin.py,sha256=LV--SMITU1DXQCReeGrbiuvfActKHNwp4j3bVexHHHs,19754
|
|
272
|
+
scitex/db/_sqlite3/_SQLite3Mixins/_ConnectionMixin.py,sha256=_whlqHuzv2niQtzFYpqVaU0kh46p_0nxd_3Qe8FqHc0,3762
|
|
273
|
+
scitex/db/_sqlite3/_SQLite3Mixins/_GitMixin.py,sha256=5D9wEJL0dotnX2IQWyVnXEn9ccmiP8J8GKUHNM17SME,17985
|
|
274
|
+
scitex/db/_sqlite3/_SQLite3Mixins/_ImportExportMixin.py,sha256=JsC4Sk50bwogvMLJXY8k0aFPCy1obqMUU7SQKuQs5v8,2444
|
|
275
|
+
scitex/db/_sqlite3/_SQLite3Mixins/_IndexMixin.py,sha256=r58q9OcLvYTmtjf_ubCwTkg6dxW2LJQksbrHaCoBvz0,996
|
|
266
276
|
scitex/db/_sqlite3/_SQLite3Mixins/_MaintenanceMixin.py,sha256=QhgfRTw49gvRwj2xIniM6g0KUfUDsNEsWxu4xEZFxg0,6024
|
|
267
|
-
scitex/db/_sqlite3/_SQLite3Mixins/_QueryMixin.py,sha256=
|
|
268
|
-
scitex/db/_sqlite3/_SQLite3Mixins/_RowMixin.py,sha256=
|
|
269
|
-
scitex/db/_sqlite3/_SQLite3Mixins/_TableMixin.py,sha256=
|
|
277
|
+
scitex/db/_sqlite3/_SQLite3Mixins/_QueryMixin.py,sha256=dI29N5I_yiSzIUZ5aigf2-Pa3QSjDS5GpcT9oeO0GTw,3221
|
|
278
|
+
scitex/db/_sqlite3/_SQLite3Mixins/_RowMixin.py,sha256=3UVNpyXbvXrX1OMDCQU78mv390xrTZB9_Hqv-o0rPCE,3611
|
|
279
|
+
scitex/db/_sqlite3/_SQLite3Mixins/_TableMixin.py,sha256=Z7dMd4FkIVoFwwMcrcSqoxqy_qIOwrv_EvD_WAfuWPk,8503
|
|
270
280
|
scitex/db/_sqlite3/_SQLite3Mixins/_TransactionMixin.py,sha256=Vgv3OUhSXiOnePIO74Thsxpgm12B2ulL_CvnfXIxn5Y,2129
|
|
271
|
-
scitex/db/_sqlite3/_SQLite3Mixins/__init__.py,sha256=
|
|
281
|
+
scitex/db/_sqlite3/_SQLite3Mixins/__init__.py,sha256=ijFzOuSzqXY6jJcGx-tNrz-JuK4F_xlid8EHybvH1n4,1205
|
|
272
282
|
scitex/decorators/BLUEPRINT.md,sha256=47iexchjmKR4bKUYFIKYMMI3gRlXE0XJsCtDoZ2V4jI,3804
|
|
273
283
|
scitex/decorators/README.md,sha256=AYt10eA_O7XNoZZ84veYVcT8PgbYQvGJkfHmyn7r4XQ,5557
|
|
274
|
-
scitex/decorators/__init__.py,sha256=
|
|
275
|
-
scitex/decorators/_auto_order.py,sha256=
|
|
276
|
-
scitex/decorators/_batch_fn.py,sha256=
|
|
277
|
-
scitex/decorators/_cache_disk.py,sha256=
|
|
278
|
-
scitex/decorators/_cache_disk_async.py,sha256=
|
|
284
|
+
scitex/decorators/__init__.py,sha256=ALUjeTsInAB316VPWrdvCQan83IY71I7Pz2NV2z484s,1952
|
|
285
|
+
scitex/decorators/_auto_order.py,sha256=BgMdn5C0ciT4Jm9nIGVhGBnV7W2Op8J6cua8UtSBK5k,5397
|
|
286
|
+
scitex/decorators/_batch_fn.py,sha256=NmtgCTFEHiCTjDyNZvJmyTu797u7q254p7OYUXDOuRI,4930
|
|
287
|
+
scitex/decorators/_cache_disk.py,sha256=aFvCLJuCb6FnhzY2jtRKVUm8bf6p-CDDAQrNe4sT39o,922
|
|
288
|
+
scitex/decorators/_cache_disk_async.py,sha256=5v5OcHr91qgejy2-O9tEh3_TS3gqcn1xcxgW_QyfLnE,1380
|
|
279
289
|
scitex/decorators/_cache_mem.py,sha256=7L_otzPdUdBu3wG4tp6cA0eSqVUWVjtlZN4mZZ8TatU,261
|
|
280
|
-
scitex/decorators/_combined.py,sha256=
|
|
281
|
-
scitex/decorators/_converters.py,sha256=
|
|
282
|
-
scitex/decorators/_deprecated.py,sha256=
|
|
290
|
+
scitex/decorators/_combined.py,sha256=R92PpKcllHd_3anvRmgkQCpuw5BoHdYxTgD2hR9cAr8,2386
|
|
291
|
+
scitex/decorators/_converters.py,sha256=iGLErg1UFg0HhbsDGZbXDONhXlQG8FnSg2iGLMNMBtg,10282
|
|
292
|
+
scitex/decorators/_deprecated.py,sha256=ZjU7KOId-mHILRa9jp5XHUenwnyIjmuWI29clExAemQ,7849
|
|
283
293
|
scitex/decorators/_not_implemented.py,sha256=EZhbS9tlOA50hoIIXDJ_iSUydRuWF-9L_BPacDp9vTY,951
|
|
284
|
-
scitex/decorators/_numpy_fn.py,sha256=
|
|
285
|
-
scitex/decorators/_pandas_fn.py,sha256=
|
|
294
|
+
scitex/decorators/_numpy_fn.py,sha256=JjqHyLSFb57iMhM0s9Uj3wbz9qH7fJnijPL6u5R36R0,3484
|
|
295
|
+
scitex/decorators/_pandas_fn.py,sha256=aGbrVJpIBL8f-qb_hYJRA5yyQBLeb9zx8DLit86BiBY,4933
|
|
286
296
|
scitex/decorators/_preserve_doc.py,sha256=TU6hjXmq9xi-fbnQjosyBLKHNQp3PQ2jkt3Mdb8Nu9I,414
|
|
287
|
-
scitex/decorators/_signal_fn.py,sha256=
|
|
297
|
+
scitex/decorators/_signal_fn.py,sha256=rPiGzQB-C3JQyLHbEJMsxKpsFAXW5D4OQMyhGlLt8UM,3894
|
|
288
298
|
scitex/decorators/_timeout.py,sha256=dG4Hnx91LfL1G-SVT631rrwMzZSuYAf_6vjKFJConAI,1158
|
|
289
|
-
scitex/decorators/_torch_fn.py,sha256=
|
|
299
|
+
scitex/decorators/_torch_fn.py,sha256=W03B5PJAOFyzB16O_SuFlc_JRyEDQ8lcu4Y41q-CPp8,5082
|
|
290
300
|
scitex/decorators/_wrap.py,sha256=sfPh5kXtTDPNaqzqFxhjbk_Wj43kAvrxwJ4sB3-gRVI,1037
|
|
291
|
-
scitex/decorators/_xarray_fn.py,sha256=
|
|
301
|
+
scitex/decorators/_xarray_fn.py,sha256=cqLS-DKnwY2iy0s15k7UpetwxaIq8DrWLDT0zp7GrZ0,3771
|
|
292
302
|
scitex/dev/__init__.py,sha256=d-xJkadEdANfpfxH0genn84GUyR8JUHKASdg0dbfab0,335
|
|
293
|
-
scitex/dev/_analyze_code_flow.py,sha256=
|
|
303
|
+
scitex/dev/_analyze_code_flow.py,sha256=hxkqPOEcjHV3s-Vof4mjVswhftXhcgv9w_UXu0c2iTQ,7730
|
|
294
304
|
scitex/dev/_reload.py,sha256=RKmVNcHsdZtDslj11xn02M4HSOKey0Naj-IHlnj4-GM,1361
|
|
295
|
-
scitex/dict/_DotDict.py,sha256=
|
|
305
|
+
scitex/dict/_DotDict.py,sha256=ES8FTu5icpyDimNEhCPybCKTvtmxiAb5qu2BvLdfGfA,14822
|
|
296
306
|
scitex/dict/__init__.py,sha256=HX5JwsBeDp5mraVQrhSUOQz-KFead6fPDNBRAOkteVM,402
|
|
297
|
-
scitex/dict/_flatten.py,sha256=
|
|
298
|
-
scitex/dict/_listed_dict.py,sha256=
|
|
299
|
-
scitex/dict/_pop_keys.py,sha256=
|
|
300
|
-
scitex/dict/_replace.py,sha256=
|
|
301
|
-
scitex/dict/_safe_merge.py,sha256=
|
|
302
|
-
scitex/dict/_to_str.py,sha256=
|
|
307
|
+
scitex/dict/_flatten.py,sha256=S69tIfqeyhvsJU29FKrTKanWZ6mV-lal_aDGQ1dLElw,613
|
|
308
|
+
scitex/dict/_listed_dict.py,sha256=XaEyVHbnc9--c9qU-DmOAog8lN9VshiCadduHyjuPQg,1165
|
|
309
|
+
scitex/dict/_pop_keys.py,sha256=0UmdLaf8P0Gk6QmuA2FprS609tksGv8feowH1wzVMoY,815
|
|
310
|
+
scitex/dict/_replace.py,sha256=2svg78KgToaqdd5YsG0O7MYH2IKgBJ1RNCwcscgFoLA,217
|
|
311
|
+
scitex/dict/_safe_merge.py,sha256=jO--_wfis3jmTzJN1e41nlmAfgOQth-03mKn6UwB07U,1308
|
|
312
|
+
scitex/dict/_to_str.py,sha256=M330jMuZpTDR92NhWjzFULy5oZ-bRwn8V39ru6_5mng,768
|
|
303
313
|
scitex/dsp/README.md,sha256=d6j4lSh-XnBWO-vp1mhFRka7t7Hf6xx25_3oJEnD6r0,5621
|
|
304
|
-
scitex/dsp/__init__.py,sha256=
|
|
305
|
-
scitex/dsp/_crop.py,sha256=
|
|
314
|
+
scitex/dsp/__init__.py,sha256=oU7jJnxDfm6GCQU8U68paJt4xnccZSJaCClH2lTqNNY,1950
|
|
315
|
+
scitex/dsp/_crop.py,sha256=ZMLB_fstlvvXyrlKHMrLmlpkzuFpvcqCRori4r-5Cos,4077
|
|
306
316
|
scitex/dsp/_demo_sig.py,sha256=F6DTBbPXu1GshyYZKcceH0P8Dhk92yhZZtI7zA-KTGU,9425
|
|
307
|
-
scitex/dsp/_detect_ripples.py,sha256=
|
|
317
|
+
scitex/dsp/_detect_ripples.py,sha256=1SkK_BXyyCRscFjLaMUhYdxFvKLowuKyg_CjnGrN4Jw,5798
|
|
308
318
|
scitex/dsp/_ensure_3d.py,sha256=aZQVj1HHzxYBhDS5IZBGN6ne0Hrib4DEIXLdblwk3O4,404
|
|
309
319
|
scitex/dsp/_hilbert.py,sha256=58wc1aJ_4rAG61wbe5yNkEvX1PPQi7XGQPkTmT5ZTg4,1462
|
|
310
320
|
scitex/dsp/_listen.py,sha256=Xu502kD9sfVlKMiSPBILQSNFXrMI--fNjbRFTagJbyk,22476
|
|
311
321
|
scitex/dsp/_misc.py,sha256=NLxs6NaTP6veZAZokTo0qCHlDXn21z9bQMm4sFTqYK0,694
|
|
312
322
|
scitex/dsp/_mne.py,sha256=6pG7-1SE4EcM8D4VsIPgXN8s91b2BbVQRKUxoORouRU,776
|
|
313
|
-
scitex/dsp/_modulation_index.py,sha256=
|
|
323
|
+
scitex/dsp/_modulation_index.py,sha256=5aII7ncuv8TEAi_nsOrWVBJHmmJBNnovTM7mHg2E5Cw,1908
|
|
314
324
|
scitex/dsp/_pac.py,sha256=gBZuDgcpssmuIJB94-JB8Nu6eU0r4PaiTwNEsB4jYjY,9673
|
|
315
325
|
scitex/dsp/_psd.py,sha256=XI7aslofgcS03C_JglXx4RoPtFhPRTHI9YNMFN-6HD4,2348
|
|
316
326
|
scitex/dsp/_resample.py,sha256=FZUHzofk86lciKc2cwOHPJItwPFf9hyur_poWbl4vkk,1660
|
|
317
|
-
scitex/dsp/_time.py,sha256=
|
|
327
|
+
scitex/dsp/_time.py,sha256=ARkDlyUpDQlA-AsDngPNwd2CczF-YTOzRVe9MiZ0E0w,1024
|
|
318
328
|
scitex/dsp/_transform.py,sha256=ZGCBSLFfkknQ2PryebBN8g-FAnXHfYG-u5rFsJXwViQ,1651
|
|
319
|
-
scitex/dsp/_wavelet.py,sha256=
|
|
329
|
+
scitex/dsp/_wavelet.py,sha256=yxtkpr7dE4vhK2svsF6ZfYWbnnTJIOwxK3_a_RNZWUA,5205
|
|
320
330
|
scitex/dsp/add_noise.py,sha256=Hm8mXB_RhkMb9clp10p-AxsJdY_1On7SDImxUG1gN_0,2820
|
|
321
331
|
scitex/dsp/audio.md,sha256=tpWrmax7dWLR3cGnkEi8Z9E3ptdKsR6QBiSBvE4rM7I,459
|
|
322
|
-
scitex/dsp/example.py,sha256=
|
|
323
|
-
scitex/dsp/filt.py,sha256=
|
|
332
|
+
scitex/dsp/example.py,sha256=Lt6AZpGRhsb6juHd45bIB4BU_GhthwghdrFVzPx3-6g,6187
|
|
333
|
+
scitex/dsp/filt.py,sha256=IQfnhKjcqRGwHJwYV4TTuhEtFaHa9fJDbCF4_kNFPXw,4243
|
|
324
334
|
scitex/dsp/norm.py,sha256=9-LQzBgVZLeOQ6-8FhmuNS0TRlY977ggr5wELvRwGAA,480
|
|
325
335
|
scitex/dsp/params.py,sha256=l-UGX5imN5fg8OaD4SlqWDDyM3HRduv3eMV3EqjxQnE,742
|
|
326
336
|
scitex/dsp/reference.py,sha256=nWNnuydMf-KPUKvGzmAqJ9FR5TlukyPjz1slOkJzcOg,1026
|
|
327
337
|
scitex/dsp/template.py,sha256=wboL9sTjJYC6ovV2BPAMEGxnVmUvyMMPoAvu7jpGyTg,445
|
|
328
|
-
scitex/dsp/utils/__init__.py,sha256=
|
|
338
|
+
scitex/dsp/utils/__init__.py,sha256=Drb8DhlwIHPIM8iBhPXJsEjh8TVQW8wwpfhCBZ0Qfzc,396
|
|
329
339
|
scitex/dsp/utils/_differential_bandpass_filters.py,sha256=henTpJ023vSQCsJ5vw4HjQMQ6pGTCmffLSi88b4enO4,3586
|
|
330
340
|
scitex/dsp/utils/_ensure_3d.py,sha256=d-esI3sA3dlIaCT5Bq7wEPEeWd8gljjQmFaY5gemL3g,408
|
|
331
341
|
scitex/dsp/utils/_ensure_even_len.py,sha256=6WJMwZEXROxeoQIdmIceD05woRjcgzAApH454NDtGHM,201
|
|
332
342
|
scitex/dsp/utils/_zero_pad.py,sha256=FWbI5ga5BuQ5_WXfEtoLWyiSe6f9uq_MyCbx75iu0I8,1333
|
|
333
343
|
scitex/dsp/utils/filter.py,sha256=Ud0AhERMOehR7qtoksFSxk9tzzXqMHDfEHzopHg-EME,13283
|
|
334
|
-
scitex/dsp/utils/pac.py,sha256=
|
|
344
|
+
scitex/dsp/utils/pac.py,sha256=X83EdXYRqaxBXn_R8YdgYANqFHH22fdJJlfPzik1wmk,4229
|
|
335
345
|
scitex/dt/__init__.py,sha256=z7v8PRJZZCvoEhrtVcVkWXMYk0RklGB_43u64gGyb5I,111
|
|
336
346
|
scitex/dt/_linspace.py,sha256=imaYZRYbr83HTs8j6K7mxGAQ0m3zLN8Oj6zVr_6Egec,4352
|
|
337
|
-
scitex/dt/_normalize_timestamp.py,sha256=
|
|
338
|
-
scitex/etc/__init__.py,sha256=
|
|
347
|
+
scitex/dt/_normalize_timestamp.py,sha256=9aTcE7ST6xvYuWZLbbGUOBXsKyIiLgjMB94N2NvcPQw,11660
|
|
348
|
+
scitex/etc/__init__.py,sha256=KDGlp8RUwKnbahvrxpXNX_A3B745fy9B8kmBp4Z9N3A,459
|
|
339
349
|
scitex/etc/wait_key.py,sha256=MPG7HjEjBAOxP8gbxQShRjTdy7uM5meRqWYECk6P5mw,579
|
|
340
350
|
scitex/gen/README.md,sha256=EGYlW0K3o8BVhUTRPMXiyHxAaIhk4BN8EXZCQrm1F98,2782
|
|
341
|
-
scitex/gen/_DimHandler.py,sha256=
|
|
351
|
+
scitex/gen/_DimHandler.py,sha256=rQOprYZmpkZl_lrXnRsFh_Q6hFSyrFj4_sdC-qoPkRQ,6752
|
|
342
352
|
scitex/gen/_TimeStamper.py,sha256=td1N0Jah6oSckjxcMix39EltC7_F4Ffx58Q46AcyXc8,6927
|
|
343
|
-
scitex/gen/__init__.py,sha256=
|
|
353
|
+
scitex/gen/__init__.py,sha256=wZFg0X8-z2omQdFGzul6dsFbgE6V9OjISrPi3lDYB1I,3053
|
|
344
354
|
scitex/gen/_alternate_kwarg.py,sha256=T6uWQR7Hi7foOKg7wGE1hbwYvrSMI_5TtRY4y5MbeQA,360
|
|
345
355
|
scitex/gen/_cache.py,sha256=WGdBFb8DUv1b3VHRW9-5u94zqM2_dKb_QsQ1FpybLuU,216
|
|
346
356
|
scitex/gen/_check_host.py,sha256=JAIldwfqqe_bx7YxgeDoLQU8q3fj89LYq0RVWzaUvdU,666
|
|
347
357
|
scitex/gen/_ci.py,sha256=ScjpwM6f7GzE03MsZT62NWH_6rDUPlcKALMzQVc8rlo,281
|
|
348
|
-
scitex/gen/_deprecated_close.py,sha256=
|
|
349
|
-
scitex/gen/_deprecated_start.py,sha256=
|
|
350
|
-
scitex/gen/_detect_environment.py,sha256=
|
|
351
|
-
scitex/gen/_detect_notebook_path.py,sha256=
|
|
352
|
-
scitex/gen/_embed.py,sha256
|
|
353
|
-
scitex/gen/_get_notebook_path.py,sha256=
|
|
354
|
-
scitex/gen/_inspect_module.py,sha256=
|
|
358
|
+
scitex/gen/_deprecated_close.py,sha256=zHJyiO47qd8IuUTdnNT0O7ZROkJkzQ7q4mtzEaA5H2M,2503
|
|
359
|
+
scitex/gen/_deprecated_start.py,sha256=z_wm_vhUVWAOZnTCPAzu4c3_q7uhyptN8N9d9_viAOI,892
|
|
360
|
+
scitex/gen/_detect_environment.py,sha256=3hXUDrJ1FTGE3q-1b03VsNf0teDKuuDiG9hi7wIbInc,4190
|
|
361
|
+
scitex/gen/_detect_notebook_path.py,sha256=JUzMC-AeFkIcNnjIwWpZCuEvbpYjTxV9Xp2NEPhMOTA,4682
|
|
362
|
+
scitex/gen/_embed.py,sha256=rdSociDIyvpxsoBaz3nvBKyWKoScQVPNzWy9QkKxAbA,2017
|
|
363
|
+
scitex/gen/_get_notebook_path.py,sha256=I3kZdH90KLoXHRX5I-vimHtm3g6hoyQkBu8jtWtGt_Q,8878
|
|
364
|
+
scitex/gen/_inspect_module.py,sha256=FRB0-Lf8tWNbVkYObO3_bbZjcXOijc0ciwVO9zX_7Oc,8132
|
|
355
365
|
scitex/gen/_is_ipython.py,sha256=6NSRIsjpfUGUlRRp_PVOmL4b6o-owSgm1SdnvOXklSE,198
|
|
356
366
|
scitex/gen/_less.py,sha256=yVB1ITlITahMhHhTS-0BzGVw2YCrp1cID1Kyt0ieqJY,1064
|
|
357
367
|
scitex/gen/_list_packages.py,sha256=mcYoXYqaBdfzZPIrk-qQJLTqLN0a-DyYWYKrxUjsxnk,3434
|
|
358
368
|
scitex/gen/_mat2py.py,sha256=zugJ4W3tAbSN5Y0h1LUYX0JymvJgJH4XMaWVy6Ii9Jk,2356
|
|
359
|
-
scitex/gen/_norm.py,sha256=
|
|
360
|
-
scitex/gen/_norm_cache.py,sha256=
|
|
369
|
+
scitex/gen/_norm.py,sha256=tJur0vUXT5wE4DqcDCftu1V8vcYEpRCogFAgqKj5vLY,5489
|
|
370
|
+
scitex/gen/_norm_cache.py,sha256=62wmqVGRjNlbQsA_SKrKY0Q5knjLMaoMdE95g2p9SzM,7768
|
|
361
371
|
scitex/gen/_paste.py,sha256=GohTP-b03FiHCTNgx499WckQM7AHnJAiVIr449ydENg,442
|
|
362
|
-
scitex/gen/_print_config.py,sha256=
|
|
372
|
+
scitex/gen/_print_config.py,sha256=6n7z3BgZvIasZdeT3rViFn_UWwR5nx07MmJOgX8CSUM,1865
|
|
363
373
|
scitex/gen/_shell.py,sha256=OfRNwKihPpM2LfezmQoBCYYfy-9CJl2seuAz3HSYo4w,1317
|
|
364
|
-
scitex/gen/_src.py,sha256=
|
|
374
|
+
scitex/gen/_src.py,sha256=GSytI-XRuTeUIe3ybzgSckE-gluE_zHQ6ewKfAgV4mI,3358
|
|
365
375
|
scitex/gen/_symlink.py,sha256=byKnYSgvg5t3vVDEkAhpgqHQpDTZ5cxsMBg4tFub5ac,1433
|
|
366
376
|
scitex/gen/_symlog.py,sha256=LpCUCFtOQyyeHEQkIN7L_0nHJAmw-IGKTFsM1ETEd_c,620
|
|
367
377
|
scitex/gen/_title2path.py,sha256=xbsUcaBH2eCMQX33Xu6YmyDyPR6EoF21WkLseYxNSQk,1323
|
|
368
|
-
scitex/gen/_title_case.py,sha256=
|
|
369
|
-
scitex/gen/_to_even.py,sha256=
|
|
378
|
+
scitex/gen/_title_case.py,sha256=eq10OAgb-x6hbrgQqQNH6vXvm0oY9Ig3SOBPLOdcqXg,1976
|
|
379
|
+
scitex/gen/_to_even.py,sha256=sQzzIxn8vOvQf5WZfX0FbXxl3yrV2qSk4jf9o5lOj2U,2409
|
|
370
380
|
scitex/gen/_to_odd.py,sha256=458VwQ6_bM0HeM4DavrSIY9sWicM9_Seryy4l5rSQzI,659
|
|
371
381
|
scitex/gen/_to_rank.py,sha256=YLlZ4wLUqaRXfHfm2SUJbieoezSPhsSWA2y3QU-mVhQ,1077
|
|
372
|
-
scitex/gen/_transpose.py,sha256=
|
|
382
|
+
scitex/gen/_transpose.py,sha256=jNJHywHcBAQVL40cCSVrmY2z0EHnww-2Vn1T5ZyErdw,972
|
|
373
383
|
scitex/gen/_type.py,sha256=gwk_lDTRsnZlWzTIldWKy7UHA3inz-VIixuTsz-HOn0,1925
|
|
374
384
|
scitex/gen/_var_info.py,sha256=HBSlTsyEUyHgmNQJULDF311GNtMymbFS_KvAv4sqz9I,1814
|
|
375
385
|
scitex/gen/_wrap.py,sha256=3jLNVWc95etxFjbqR-lK0KpoHwQ4M6x34A_xz6R5CGU,303
|
|
376
386
|
scitex/gen/_xml2dict.py,sha256=JeHc7lsR26Om5TgNDumn5YfwnHEAERBB1tJ2oQaPsFc,2882
|
|
377
|
-
scitex/gen/misc.py,sha256=
|
|
387
|
+
scitex/gen/misc.py,sha256=tUbE773QkUQkVYE60JvRiw0djF981Aat7adfXfeu0eA,20524
|
|
378
388
|
scitex/gen/path.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
379
|
-
scitex/gists/_SigMacro_processFigure_S.py,sha256=
|
|
380
|
-
scitex/gists/_SigMacro_toBlue.py,sha256=
|
|
381
|
-
scitex/gists/__init__.py,sha256=
|
|
389
|
+
scitex/gists/_SigMacro_processFigure_S.py,sha256=8vOJDLh60L7JGpzOQUuMh6_KnEEekPlo0XEwQ1i0QH0,5039
|
|
390
|
+
scitex/gists/_SigMacro_toBlue.py,sha256=RDBG4hps6J8ywUIzyvvZpKN6L9MLaA9xnu4k3QG_mr4,5614
|
|
391
|
+
scitex/gists/__init__.py,sha256=Ie0XUaP1t33f_3JQd64GPpMHCMo-VrDHQAWEjJNzK1o,346
|
|
382
392
|
scitex/gists/guideline.md,sha256=oaU7M05EMhkEQbds5Nn6dvRugjfktqZOUSGXaWrn-bo,2032
|
|
383
393
|
scitex/git/README.md,sha256=MB6dYvlwoV8JHKQCjsosz4w7FTPQK_oMxYUKkjhlx2Y,2706
|
|
384
394
|
scitex/git/__init__.py,sha256=ZTa-ETUdkX63NNCBzznizL5qZ8pjHnc9tBu-orgQ_TE,932
|
|
385
|
-
scitex/git/_branch.py,sha256=
|
|
386
|
-
scitex/git/_clone.py,sha256=
|
|
387
|
-
scitex/git/_commit.py,sha256=
|
|
395
|
+
scitex/git/_branch.py,sha256=JrCVrGot9TP0bfuchRLSqrUhYIiD8D2ZW3xjw2wp154,4747
|
|
396
|
+
scitex/git/_clone.py,sha256=4ZoNHJIkS_R_PqrE4yK5649CyGEaxIp1aKqYCcWmL5U,4286
|
|
397
|
+
scitex/git/_commit.py,sha256=2-10O8fMHs6GoJjdnIfR74mIiIGb7i_bxdd9QfCkfUg,4356
|
|
388
398
|
scitex/git/_constants.py,sha256=d_t9PqjJTgNUB5GyEt6jWPGco_Lot-2Fes2iWLTlcaQ,248
|
|
389
|
-
scitex/git/_init.py,sha256=
|
|
390
|
-
scitex/git/_remote.py,sha256=
|
|
391
|
-
scitex/git/_result.py,sha256=
|
|
392
|
-
scitex/git/_retry.py,sha256=
|
|
399
|
+
scitex/git/_init.py,sha256=glU6HdQ3jtNenybYS09W8gnj3ACLoJ9Au9-PaA3bA4k,5637
|
|
400
|
+
scitex/git/_remote.py,sha256=C6EmwjcLUCSzX2HItvigleDv8PYABhtY6s8T3zstUZY,4727
|
|
401
|
+
scitex/git/_result.py,sha256=v687ocW-2VCJVGj7cz0XFB0IwSU3y5Qol0BMkSnuXms,1288
|
|
402
|
+
scitex/git/_retry.py,sha256=N8Uz570msPSompTVbiWpIyO7CyRsS9_UfYpZo_KRrZY,2870
|
|
393
403
|
scitex/git/_session.py,sha256=mdsFsBvJx6rRP6hopDMSE-0Iyv9iLt5xnafAqnSHU6k,1176
|
|
394
|
-
scitex/git/_types.py,sha256=
|
|
404
|
+
scitex/git/_types.py,sha256=_bp8AV9Au47B6F8UJDK5u6Te9raO-roySbgQKGH6y6c,3005
|
|
395
405
|
scitex/git/_utils.py,sha256=cBf3rKwI5_l-h2UCrZEaFf0Grur7FfwPLGjxcrAeYwo,432
|
|
396
|
-
scitex/git/_validation.py,sha256=
|
|
397
|
-
scitex/git/_workflow.py,sha256=
|
|
406
|
+
scitex/git/_validation.py,sha256=Hobe4BGXRpvHIk_E71O_KtbZyVnqgSy7ow5fEAvcW_E,2609
|
|
407
|
+
scitex/git/_workflow.py,sha256=Cdi3Hh8Br1OAP6Yl9ikABp_4V2_pbX91truMgcY0200,2235
|
|
398
408
|
scitex/io/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
399
409
|
scitex/io/README.md,sha256=kB10P6YkqqgiyT_cL6Z2kHLbEUKDwQPxsXRYh-ENcmQ,10727
|
|
400
|
-
scitex/io/__init__.py,sha256=
|
|
410
|
+
scitex/io/__init__.py,sha256=HZJmQllRevyoiwqEc2A-OUTNHvPeYaDUsh2pp9Fjfew,2774
|
|
401
411
|
scitex/io/_cache.py,sha256=2T10CGtFaxwTGICtFvWWEAhpENlgCMJ1cEqIm2nyTSo,2931
|
|
402
412
|
scitex/io/_flush.py,sha256=_lF16-UNLT-J8Vtv5L-BpdmZ_tk8M9ooXVgETWfUhyY,511
|
|
403
|
-
scitex/io/_glob.py,sha256=
|
|
404
|
-
scitex/io/_json2md.py,sha256=
|
|
405
|
-
scitex/io/_load.py,sha256=
|
|
406
|
-
scitex/io/_load_cache.py,sha256=
|
|
407
|
-
scitex/io/_load_configs.py,sha256=
|
|
408
|
-
scitex/io/_metadata.py,sha256=
|
|
413
|
+
scitex/io/_glob.py,sha256=HS95I9UhxELzhGtawqhgSForIekNBDYdy3335mr46mQ,3541
|
|
414
|
+
scitex/io/_json2md.py,sha256=zk4fPWbFqZTp8jd62zctR0ci9ZVeR2hMeyhAQcQr1HY,3259
|
|
415
|
+
scitex/io/_load.py,sha256=VZ-SscuVRwd6OaQnCXJLBqMUs_F6m5ZwnuZpn0nO9nc,10830
|
|
416
|
+
scitex/io/_load_cache.py,sha256=P5MkAAOFzzG9e50XRV4DWdqvsLY1F9d4-512nFYFdd8,7432
|
|
417
|
+
scitex/io/_load_configs.py,sha256=BUwqz1ngk5FKszaC69nVaY1t2r4YDQlkK2GJfp6Pfpg,5714
|
|
418
|
+
scitex/io/_metadata.py,sha256=H2GIkuFwrAT2tfFTJUqD70R9Fd40hOX5C8oaUGNgogc,11058
|
|
409
419
|
scitex/io/_mv_to_tmp.py,sha256=oNwVn4WliWX2dFsSnkrA6B7Yn-BNX6O5hHrCbjXWufg,421
|
|
410
420
|
scitex/io/_path.py,sha256=mqbs2Y2kJP-IHwvdtnJs8vyime9i0QY8bh3IyVEP3qA,7803
|
|
411
|
-
scitex/io/_qr_utils.py,sha256=
|
|
421
|
+
scitex/io/_qr_utils.py,sha256=52DLV45aj4bbsrZYLPEX79ruN4oq-czUk6gM6T4BidI,2005
|
|
412
422
|
scitex/io/_reload.py,sha256=k3FSMO-ts0sAqNVYroVAG5rxk7haIRtyDbPl1ZvLIfw,2780
|
|
413
|
-
scitex/io/_save.py,sha256=
|
|
423
|
+
scitex/io/_save.py,sha256=Tbf5kRnVtNSHBg40LPdaTIy1k6jCLUbzXrDz_EHtjvE,49843
|
|
414
424
|
scitex/io/memo.md,sha256=L6hzBLnJrC3QcUmKZ_-6wUliRXnEInZiRP8pWvKlx7k,98235
|
|
415
|
-
scitex/io/_load_modules/_H5Explorer.py,sha256=
|
|
416
|
-
scitex/io/_load_modules/_ZarrExplorer.py,sha256=
|
|
425
|
+
scitex/io/_load_modules/_H5Explorer.py,sha256=J7w5bEZ1DCymp3mAeItErLn2x2IDmwjPzZ9vn_re3Cs,10239
|
|
426
|
+
scitex/io/_load_modules/_ZarrExplorer.py,sha256=nh9WaxnVTSU5hK7fsZrj64pCiJBD8vkacBV3TaKpFW0,3320
|
|
417
427
|
scitex/io/_load_modules/__init__.py,sha256=53Z8frCV8Z9xkr4W-x95fQJMZ3jrJtTvu3ujfcDBPJA,1057
|
|
418
|
-
scitex/io/_load_modules/_bibtex.py,sha256=
|
|
419
|
-
scitex/io/_load_modules/_canvas.py,sha256=
|
|
420
|
-
scitex/io/_load_modules/_catboost.py,sha256=
|
|
428
|
+
scitex/io/_load_modules/_bibtex.py,sha256=epfJANcpSzLJiWuPlYy-GxdKYwIX87f1bPxqUFbheQc,5472
|
|
429
|
+
scitex/io/_load_modules/_canvas.py,sha256=DxdGXZk-ELnfwsyWNSt3ghhwMmkHBPUjvbl353Oyr8U,4969
|
|
430
|
+
scitex/io/_load_modules/_catboost.py,sha256=mj5B3eyUaemMap_dGxeawh-5gnhXniGXij_eP2hHUcA,1678
|
|
421
431
|
scitex/io/_load_modules/_con.py,sha256=Q9kXysIVm-ziagItNv4rfivX-y9iGmbSrqAlG5z9EdM,483
|
|
422
432
|
scitex/io/_load_modules/_docx.py,sha256=UKboIkZLQfzUk1xQqA5taJb15NjePL6oJAKTganFqk4,933
|
|
423
433
|
scitex/io/_load_modules/_eeg.py,sha256=W4ow4GC4bOAHhDoG1nXE_CEnxGkuKGbjTy0l01V-dBM,3512
|
|
424
|
-
scitex/io/_load_modules/_hdf5.py,sha256=
|
|
425
|
-
scitex/io/_load_modules/_image.py,sha256=
|
|
434
|
+
scitex/io/_load_modules/_hdf5.py,sha256=XRFDa31URMws_-4KXWKzNKPd4cIGwZDfHf1ruOZq2fk,1922
|
|
435
|
+
scitex/io/_load_modules/_image.py,sha256=lebjRC29oQ62reziza2zm8G7srVK8gu7uz4SgCZnX9w,1921
|
|
426
436
|
scitex/io/_load_modules/_joblib.py,sha256=yiw0FlBp1EYdvIZt1OG45Wvzi4MZvMt7cTy4H81J4S4,452
|
|
427
437
|
scitex/io/_load_modules/_json.py,sha256=_jDsUQnn6nDgco_e6p2jIYxkF_kKhlLF9VhUPsfk_jw,482
|
|
428
438
|
scitex/io/_load_modules/_markdown.py,sha256=Cv4-6nOTMK90Xoc5giSmoEgs_SFVP0yOmXRrt9AgHJs,2831
|
|
429
|
-
scitex/io/_load_modules/_matlab.py,sha256=
|
|
439
|
+
scitex/io/_load_modules/_matlab.py,sha256=3VwlxppxHhfYBEspHK4yEHslJ6VtgcOz7oLa-3nksGo,1152
|
|
430
440
|
scitex/io/_load_modules/_numpy.py,sha256=aaRggYUNGj-HHwgKKzuZI0WZyv6bYZzPpzNBJD1WO5o,1086
|
|
431
|
-
scitex/io/_load_modules/_optuna.py,sha256=
|
|
441
|
+
scitex/io/_load_modules/_optuna.py,sha256=zr8FdVldJ_0rW9LJwbN01CP9f1Idj16BapwQcuWYAQs,4246
|
|
432
442
|
scitex/io/_load_modules/_pandas.py,sha256=_hQphFXCnnBPm7qS_NyfsMBDN_CqVjwy4D9EFpYf7Ao,2111
|
|
433
|
-
scitex/io/_load_modules/_pdf.py,sha256=
|
|
443
|
+
scitex/io/_load_modules/_pdf.py,sha256=d_JQkS066sJluDJneqeCJO1OO3xGbctv3An9tDSyHYg,33215
|
|
434
444
|
scitex/io/_load_modules/_pickle.py,sha256=x6zduhoN7JSL83T16SMSDS5DSbXn8gwC_50AbOiuDYs,709
|
|
435
|
-
scitex/io/_load_modules/_sqlite3.py,sha256=
|
|
445
|
+
scitex/io/_load_modules/_sqlite3.py,sha256=c8fqat8TKBvemghPtQeX5EFfdOoI5DOIaCQ4fsLewg4,402
|
|
436
446
|
scitex/io/_load_modules/_torch.py,sha256=J-257UORiFJJlij6uwZfl-eLLRO8ZM2yyAd-D6Wf8uU,461
|
|
437
|
-
scitex/io/_load_modules/_txt.py,sha256=
|
|
438
|
-
scitex/io/_load_modules/_xml.py,sha256=
|
|
447
|
+
scitex/io/_load_modules/_txt.py,sha256=BJdUt2S7MczwCCzj5XVpeKpuLlV0F_sHoyLeGuiKi7w,5063
|
|
448
|
+
scitex/io/_load_modules/_xml.py,sha256=ZZ0L_EqGqObCwZsASy3PgrILjlebTYDFDdybO44YEa4,1508
|
|
439
449
|
scitex/io/_load_modules/_yaml.py,sha256=-F-XyRqApbRZdUsuObit0XM1RsC7Xdo4fFe5_N_nzTM,608
|
|
440
|
-
scitex/io/_load_modules/_zarr.py,sha256=
|
|
441
|
-
scitex/io/_save_modules/__init__.py,sha256=
|
|
442
|
-
scitex/io/_save_modules/_bibtex.py,sha256=
|
|
443
|
-
scitex/io/_save_modules/_canvas.py,sha256=
|
|
444
|
-
scitex/io/_save_modules/_catboost.py,sha256=
|
|
445
|
-
scitex/io/_save_modules/_csv.py,sha256=
|
|
446
|
-
scitex/io/_save_modules/_excel.py,sha256=
|
|
447
|
-
scitex/io/_save_modules/_hdf5.py,sha256=
|
|
448
|
-
scitex/io/_save_modules/_html.py,sha256=
|
|
449
|
-
scitex/io/_save_modules/_image.py,sha256=
|
|
450
|
-
scitex/io/_save_modules/_joblib.py,sha256=
|
|
451
|
-
scitex/io/_save_modules/_json.py,sha256
|
|
452
|
-
scitex/io/_save_modules/_listed_dfs_as_csv.py,sha256=
|
|
453
|
-
scitex/io/_save_modules/_listed_scalars_as_csv.py,sha256=
|
|
454
|
-
scitex/io/_save_modules/_matlab.py,sha256=
|
|
450
|
+
scitex/io/_load_modules/_zarr.py,sha256=5Irsjadi1XnOtUWu5Pa8qQy9Lc8xfHCv9EOwU8QXQUg,3604
|
|
451
|
+
scitex/io/_save_modules/__init__.py,sha256=5T5I4EukY3ZyJW9x4B50Nm5gD6Fzt4HxFeN7CxuJ4OY,2355
|
|
452
|
+
scitex/io/_save_modules/_bibtex.py,sha256=m96wkWvuQtI4wEV0lUzu90HLca23p3BjPI8qj1bmEVE,5889
|
|
453
|
+
scitex/io/_save_modules/_canvas.py,sha256=siuAfqQa8-AvVIpc5Uh3SmuLOE3Ur6_P25qKoO-UZDA,11609
|
|
454
|
+
scitex/io/_save_modules/_catboost.py,sha256=TItHfm-HEG7HlbUb4Qtl46pJm_0deWZlgmNxeyKG2KY,501
|
|
455
|
+
scitex/io/_save_modules/_csv.py,sha256=8YcALFvHZETQDL9KzAu1kgU64Kxyaj5Fc2fzDP__2I4,3256
|
|
456
|
+
scitex/io/_save_modules/_excel.py,sha256=iR2R2bCDhYLxN0nDAi0f-Lm_g5QrbAJAXbLgkoh0TEQ,6309
|
|
457
|
+
scitex/io/_save_modules/_hdf5.py,sha256=VR8SDH9lonv9KTX_NL9dJu0dFM45QLx5UPALaG3c0Tw,9029
|
|
458
|
+
scitex/io/_save_modules/_html.py,sha256=egncM-oXbQD4Cu_c_DH8zOqRUQGyK4jXrS6xEQFSuu0,1288
|
|
459
|
+
scitex/io/_save_modules/_image.py,sha256=XVBSLhikTAc7Kwcn8cr-SzO26DZMuHkRjKzNH_h04Yo,9537
|
|
460
|
+
scitex/io/_save_modules/_joblib.py,sha256=1OLtT1nXcf86RPTHKU0l3tM3p9o5VERiaxeiQQVWGmQ,550
|
|
461
|
+
scitex/io/_save_modules/_json.py,sha256=-DLJPAJo03RQWrD5rf3tbuYti49vUTFTuOM5qijeIM8,3440
|
|
462
|
+
scitex/io/_save_modules/_listed_dfs_as_csv.py,sha256=ZCqG3l05_kKBCewEcNAV7pfnveXho0-YmywvvLVIxHI,1617
|
|
463
|
+
scitex/io/_save_modules/_listed_scalars_as_csv.py,sha256=jRB7FqOc3nYMFUAenvrFzAt_GoiL8BvWhleOcxAZqT4,1107
|
|
464
|
+
scitex/io/_save_modules/_matlab.py,sha256=kJ4W56-7iTXXoEQOriFnJ3vVI7DUffdG2o1TrTldsxI,544
|
|
455
465
|
scitex/io/_save_modules/_mp4.py,sha256=VuUL1Uf3V_kxp2BWQ_4fl6RtZa2t3Ift0eIO5ez10Rg,684
|
|
456
|
-
scitex/io/_save_modules/_numpy.py,sha256=
|
|
466
|
+
scitex/io/_save_modules/_numpy.py,sha256=SCa7ND6M5SSC8hvubvgM1W1fs6Xb_C3lfAncl_9b1lQ,1327
|
|
457
467
|
scitex/io/_save_modules/_optuna_study_as_csv_and_pngs.py,sha256=MRL0MQjFfpKPKyE0Y9fgcF2ifyMM-ftkpvu6oW7kjQI,1225
|
|
458
|
-
scitex/io/_save_modules/_pickle.py,sha256=
|
|
459
|
-
scitex/io/_save_modules/_plotly.py,sha256=
|
|
460
|
-
scitex/io/_save_modules/_tex.py,sha256=
|
|
461
|
-
scitex/io/_save_modules/_text.py,sha256=
|
|
468
|
+
scitex/io/_save_modules/_pickle.py,sha256=LD6W8VqpVSQ8SXbgUgdYn7MrEU3ylHoViW_NepBioSk,939
|
|
469
|
+
scitex/io/_save_modules/_plotly.py,sha256=l4TuewsVZIMxd9-nX_88u306VtpS6X4BDC_nrSGGqo0,666
|
|
470
|
+
scitex/io/_save_modules/_tex.py,sha256=EyivoaSPMqvwGO1rmIW7766wpzpi5_7pkK32Tjb3xwM,6937
|
|
471
|
+
scitex/io/_save_modules/_text.py,sha256=bsuHOiZ_36WDFwQEaPYKQcVysHjQ4_HHd5K4L-o4MRg,506
|
|
462
472
|
scitex/io/_save_modules/_torch.py,sha256=iSeWP1cq0HgNzJ06X-B8Htj5zzMYKobiyTARivqXIno,689
|
|
463
|
-
scitex/io/_save_modules/_yaml.py,sha256=
|
|
464
|
-
scitex/io/_save_modules/_zarr.py,sha256=
|
|
465
|
-
scitex/io/utils/__init__.py,sha256=
|
|
466
|
-
scitex/io/utils/h5_to_zarr.py,sha256=
|
|
467
|
-
scitex/linalg/__init__.py,sha256=
|
|
473
|
+
scitex/io/_save_modules/_yaml.py,sha256=OJ-BvfdedMszL_rAGvf0XQI5elWabjeHoso-iAtxcxM,2236
|
|
474
|
+
scitex/io/_save_modules/_zarr.py,sha256=xQDKaZ2zJhfde2kEquLOzDBmyJcv1KVJ89MQwDvpiW4,4979
|
|
475
|
+
scitex/io/utils/__init__.py,sha256=4iCK8HZJAR3luRXWChroFljlam_59rX6T5z1ro94zFg,513
|
|
476
|
+
scitex/io/utils/h5_to_zarr.py,sha256=6fh0AOPfJ5qB6rUGT5MWfJRsWm_WTspYhCRusxSYy7o,20753
|
|
477
|
+
scitex/linalg/__init__.py,sha256=7E0KoYsj4oNn2_fmgx5VqKClfMDIdlD8WMKcx1d-nmw,433
|
|
468
478
|
scitex/linalg/_distance.py,sha256=-GdX27omL7KZ4-Cm2jTDMvMJ3BVkN02w6KYob-3DI3g,1618
|
|
469
|
-
scitex/linalg/_geometric_median.py,sha256=
|
|
479
|
+
scitex/linalg/_geometric_median.py,sha256=XcvAqpCOWKdToP1W3pkn3uh3t3jz7UpF_yigRz14XVk,1872
|
|
470
480
|
scitex/linalg/_misc.py,sha256=DizuxErXuTT9x6PMqB6fmPWar-_kjMOyIW9ycWvbF58,1537
|
|
471
481
|
scitex/logging/README.md,sha256=YpS-jdBIlPT-AVQbMqhjqwEHlPZVCpx40jD7BgZP2HE,10273
|
|
472
|
-
scitex/logging/_Tee.py,sha256=
|
|
473
|
-
scitex/logging/__init__.py,sha256=
|
|
474
|
-
scitex/logging/_config.py,sha256=
|
|
475
|
-
scitex/logging/_context.py,sha256=
|
|
476
|
-
scitex/logging/_formatters.py,sha256=
|
|
477
|
-
scitex/logging/_handlers.py,sha256=
|
|
478
|
-
scitex/logging/_levels.py,sha256=
|
|
479
|
-
scitex/logging/_logger.py,sha256=
|
|
480
|
-
scitex/logging/_print_capture.py,sha256=
|
|
482
|
+
scitex/logging/_Tee.py,sha256=F0RUtQUlm0OQz-9LWmdWsz8ph8prcY5kH3AdLCfTthI,6035
|
|
483
|
+
scitex/logging/__init__.py,sha256=53Vcfw_H5k1hVA3R_9gbXLiVwzQn4BB6UUtCUSHDjlI,3146
|
|
484
|
+
scitex/logging/_config.py,sha256=ujf7eZetkqg1h73K5gBpGaLh00xzwwF1YlddP8f3KFw,4340
|
|
485
|
+
scitex/logging/_context.py,sha256=Hk5QQ5mL_JkRbELsGqxUmYylpa4wSiVRUEpVK9WALdE,2768
|
|
486
|
+
scitex/logging/_formatters.py,sha256=qHdppi__I02jtn5mJhQNQzkTdqvRzWOZgxjrlZlS--Q,4172
|
|
487
|
+
scitex/logging/_handlers.py,sha256=BCVuOtG2tihHY8yRKju9l4f5zg4BiS2JZY7IlP4deCU,1919
|
|
488
|
+
scitex/logging/_levels.py,sha256=ggsrQrGyCr7pZmdK2AzGcJCi0YQU4H-nrirdRktKDjw,838
|
|
489
|
+
scitex/logging/_logger.py,sha256=oRFSCYbxu79tI6eKP-42mAgjDiiX015NkVR7N67_Eas,7545
|
|
490
|
+
scitex/logging/_print_capture.py,sha256=sFwWJCQnRur1xKkZhPrIVLJ3zivAlXVO11B-xxpm22o,2508
|
|
481
491
|
scitex/ml/__init__.py,sha256=b_clA6Q7_ZJgaLIecisTxqRubNOYAwW1hzE1tOYoz9M,678
|
|
482
492
|
scitex/nn/_AxiswiseDropout.py,sha256=JaLHFmwCGATil7QK29MGK3PNFCzbD86A0joK03InWy0,812
|
|
483
|
-
scitex/nn/_BNet.py,sha256=
|
|
493
|
+
scitex/nn/_BNet.py,sha256=nsVx7ed5Z1sBgJUYXvmXceevCXbjXVB3AqjhdJ-_9zc,3640
|
|
484
494
|
scitex/nn/_BNet_Res.py,sha256=PWh_PMOhwxanT8JMPYax9hmd5EAqoEt2JUbo6t66Oh0,5024
|
|
485
495
|
scitex/nn/_ChannelGainChanger.py,sha256=Vq62RKHiCL16DwZQiCDDGOnXa8h7x_6ii2qAKfi6Utk,1000
|
|
486
496
|
scitex/nn/_DropoutChannels.py,sha256=HXkDSyAkyAWhmiqBtTQt6Yn1FPLLY63D9mKRVCqLofA,1327
|
|
487
|
-
scitex/nn/_Filters.py,sha256=
|
|
497
|
+
scitex/nn/_Filters.py,sha256=NHLage0LjAUDFjFPJjP71IcMZzrjIhq5fJrcK0kKDx4,15795
|
|
488
498
|
scitex/nn/_FreqGainChanger.py,sha256=RHlWgmWrl16_EmmEbYqGaiqF4nzpwa3_AyG_Qms8NAQ,3121
|
|
489
499
|
scitex/nn/_GaussianFilter.py,sha256=roVPYZVfjqP8hTZt4OMY4dBw2djdoArC8aowhsHL5aA,1326
|
|
490
500
|
scitex/nn/_Hilbert.py,sha256=KpQ0z_rVvL0mfhBHJ2uIDlKsLu_cHQkcvGXrLLkCawo,2775
|
|
491
501
|
scitex/nn/_MNet_1000.py,sha256=i7th_56DsCHh3UfiUmUrHgMLvfF9pffbqrN0n-FQG8c,4043
|
|
492
|
-
scitex/nn/_ModulationIndex.py,sha256=
|
|
493
|
-
scitex/nn/_PAC.py,sha256=
|
|
494
|
-
scitex/nn/_PSD.py,sha256=
|
|
502
|
+
scitex/nn/_ModulationIndex.py,sha256=ZVfeU2CTjv2mjDFVLO38Xmmi_0v2SWz-ngJkMclt-v8,6559
|
|
503
|
+
scitex/nn/_PAC.py,sha256=XiE3yYPaXk2Ret6isuf8jeRkqaoBESfGgRNlCJxjLnw,12721
|
|
504
|
+
scitex/nn/_PSD.py,sha256=S_kN-6aV290YiGQiBGfwozKOEo1zwhOrY3OHGjJUNgA,1150
|
|
495
505
|
scitex/nn/_ResNet1D.py,sha256=CeKGrCRkMC8q56l-gXUgYA6esky6EInhX2muEIUYe-E,3078
|
|
496
506
|
scitex/nn/_SpatialAttention.py,sha256=WCpZ-2HREwWBAsbTpmbihDJ0mMmHGbPkKK8dL8-kCvo,625
|
|
497
507
|
scitex/nn/_Spectrogram.py,sha256=s0g64Ka3VYNOg0rsPUWldA7kI7blVmpGkfb8TDb5QgI,5031
|
|
498
508
|
scitex/nn/_SwapChannels.py,sha256=TUfivx8KNe1o-y9dcEQ80tf_w54tjtbckV5v0uF3a8o,1243
|
|
499
509
|
scitex/nn/_TransposeLayer.py,sha256=TNmIRPucZclIdB14ttwza7nGWxNTvpYQBEQYE8Uzn-c,381
|
|
500
510
|
scitex/nn/_Wavelet.py,sha256=8Ac75o91fiUXANxcKveArK8VhpSfjqq6GNaj8ytZD2Q,6049
|
|
501
|
-
scitex/nn/__init__.py,sha256=
|
|
511
|
+
scitex/nn/__init__.py,sha256=M4Wh4wie1STdCuBtF9zZHQaD_urzjH-vYaj9gb6jyvA,1924
|
|
502
512
|
scitex/os/__init__.py,sha256=53a6fR-C_hGHi9edmKm_aJRv-wKZk2JQ4o8kPVUQ0nk,93
|
|
503
513
|
scitex/os/_mv.py,sha256=40xUJ5xYH34gumMSfLgZX6N4UCn_Do_Iwy06gQPyVRA,1379
|
|
504
514
|
scitex/parallel/__init__.py,sha256=MRfWzesJlZpe7KourRwk_Uohnml6WKjXBeO6-MbyyuY,102
|
|
505
515
|
scitex/parallel/_run.py,sha256=hKZ1yOYB_zKEJ5bZB8WYPilUtUQHcMYAXZ2uE2J0eco,4542
|
|
506
516
|
scitex/path/README.md,sha256=-VFFwjq0VloXgBMesm9dGf0pU3qnOsm__b0ydT7YjWQ,3104
|
|
507
517
|
scitex/path/__init__.py,sha256=DW0LkCFl7PkVAzCyOU-JI0W695DShtXGjwCYUn4MPnE,1189
|
|
508
|
-
scitex/path/_clean.py,sha256=
|
|
509
|
-
scitex/path/_find.py,sha256=
|
|
518
|
+
scitex/path/_clean.py,sha256=EUnkXWgyqy3k5IUBsB-3vYd4z0m1MpDvVnSZynakFDM,1472
|
|
519
|
+
scitex/path/_find.py,sha256=HOKj-UwPlLdjLZkhtFUmDMmQiDjmLcHKjRPL5GGewiU,2823
|
|
510
520
|
scitex/path/_get_module_path.py,sha256=jq5XHuJuwD-u3QjYiVz0HzIwMrDXs2lvJoDfAXwM2oI,1323
|
|
511
|
-
scitex/path/_get_spath.py,sha256
|
|
521
|
+
scitex/path/_get_spath.py,sha256=-JPAcq8G_j6nkks01S6tOGQejY7olZvNtvVQInO9TS8,744
|
|
512
522
|
scitex/path/_getsize.py,sha256=G73jpPkMY3jAdHulHHjVhesGx9GaygBf-TaGwPLG9hw,303
|
|
513
523
|
scitex/path/_increment_version.py,sha256=FUdkHVfkhqxEqYdw7vgjVDruekN9voDgZH0kiwxtnxs,2855
|
|
514
|
-
scitex/path/_mk_spath.py,sha256=
|
|
524
|
+
scitex/path/_mk_spath.py,sha256=WVElGVk9JCObZVCRs-2hcDuiRPDf-XBYVxAdk9xeSHE,1154
|
|
515
525
|
scitex/path/_path.py,sha256=VSzNPlP70SRQMhMtenT-VpTw3iTYAwMqUaPeFuxPryQ,367
|
|
516
526
|
scitex/path/_split.py,sha256=tjfMyMe8dkOSesEEdKBdggFda2Sc6xw8QbWN0NY7ADw,662
|
|
517
|
-
scitex/path/_symlink.py,sha256=
|
|
527
|
+
scitex/path/_symlink.py,sha256=JLq7hI_sqAIwFreK-RDEdzYfo9TTHLNB3t_GCmYjnps,10390
|
|
518
528
|
scitex/path/_this_path.py,sha256=X2FAGWsOgv62ohlR0D4dkbXgpS9S3eEzTx9Mqj-wWBY,404
|
|
519
529
|
scitex/path/_version.py,sha256=-_JjDGaMpMPDlZwsaKCS089ylk16lMuXYK72OSctxYQ,2904
|
|
520
|
-
scitex/pd/__init__.py,sha256=
|
|
530
|
+
scitex/pd/__init__.py,sha256=guhcnPJYmES5MMv16vF1nkY7PU73H4Rx1wLkoNkGvi8,1081
|
|
521
531
|
scitex/pd/_find_indi.py,sha256=hguxPI3eiYvL8f0csDhXqfy4cj6aui1wjHZ7qWtWgWY,3864
|
|
522
532
|
scitex/pd/_find_pval.py,sha256=cd4unLDCNbv6qvSo8tj3B7UZmRWmtCO3fsOOnOSbobk,3488
|
|
523
|
-
scitex/pd/_force_df.py,sha256=
|
|
533
|
+
scitex/pd/_force_df.py,sha256=b5x3vY-S-ZUcYVlI5vxy7MVjrwfFYlWQj4HFbIky68s,4420
|
|
524
534
|
scitex/pd/_from_xyz.py,sha256=tyYWDBL3VlHa2degHQ3LJpoqygBBIE9ONv3Qqgdlb2Q,2056
|
|
525
|
-
scitex/pd/_get_unique.py,sha256=
|
|
535
|
+
scitex/pd/_get_unique.py,sha256=OyFF7oFV9PaGLd9UbSGoxRJH7jkdVW8AEQGCP72dK94,3054
|
|
526
536
|
scitex/pd/_ignore_SettingWithCopyWarning.py,sha256=aNZfIs2dsYzswq7Cz0CICq9SwRXtb8prFKRx2Km1DCk,913
|
|
527
537
|
scitex/pd/_melt_cols.py,sha256=AhZdG6Mlp7aKSh1HZnTlp-z81ILpQxNI0398kvzPiGM,2535
|
|
528
|
-
scitex/pd/_merge_columns.py,sha256=
|
|
538
|
+
scitex/pd/_merge_columns.py,sha256=mrKz3XlRdT11ziCrhBxo55K-1uPqc541QD5ttxJGUbY,6198
|
|
529
539
|
scitex/pd/_mv.py,sha256=WpJCZIdARVe1v2xGHdJnFDAyCZJHYCvrzCp0qJ_NwRU,1705
|
|
530
540
|
scitex/pd/_replace.py,sha256=nGUYJ09MOEB1r4SswoSsbZnzBIHMjSGmHR8I38J69Pc,2032
|
|
531
|
-
scitex/pd/_round.py,sha256=
|
|
541
|
+
scitex/pd/_round.py,sha256=VFSQpNOp0mY9PDSgZ_GILcoup4dYE1LkCuBYWVLmGMA,2937
|
|
532
542
|
scitex/pd/_slice.py,sha256=8ypkdqwO6hxH9GJcVacz4GobswDpkjzixLZL1rcEh-U,1552
|
|
533
543
|
scitex/pd/_sort.py,sha256=lqA7e9eiQvPkT5CKtuF_RLwzf4QIAXqe5Lqrl7WivH4,2609
|
|
534
544
|
scitex/pd/_to_numeric.py,sha256=_0PzQR2j5_xHgxMH9b2gpZFg2PDWI3sNomxDFWWHTqo,1796
|
|
535
|
-
scitex/pd/_to_xy.py,sha256=
|
|
545
|
+
scitex/pd/_to_xy.py,sha256=W3y9RS5oUcUPEG1y7HHACjNZjS6mCx-ZpcybuprsHe4,1865
|
|
536
546
|
scitex/pd/_to_xyz.py,sha256=WdtHIcAmwM7MM_2yP4MErdLrJ32XWyrbB2HuvYvZahU,3243
|
|
537
547
|
scitex/plt/README.md,sha256=tC94RzEksldrlhKd6v1UAx6uF7TFI1qwgOqD7ZkTVmw,59641
|
|
538
|
-
scitex/plt/
|
|
539
|
-
scitex/plt/
|
|
548
|
+
scitex/plt/REQUESTS.md,sha256=hZrwaxnN_5I1hOD8SepB9eJ2XWSQwrOzSZT8ANsETFM,3957
|
|
549
|
+
scitex/plt/__init__.py,sha256=4_E0bwUs2SO20nHobVGvGmXOJXIca_ZfDs4R6ZCV5rs,24728
|
|
550
|
+
scitex/plt/_tpl.py,sha256=dRlEmAS0OzDD8j_XrUye1SO7INoXz9YnaFWVDzYX4r8,759
|
|
540
551
|
scitex/plt/gallery.md,sha256=fz4S2R8chtI5QdKp7W6PBKjsRyynAcaC1PK4cMBwIwo,10950
|
|
541
552
|
scitex/plt/_subplots/TODO.md,sha256=eMG5Za9prhuLlT4xzcPYeKdbnnSM1cTE23Te-5zLdNs,920
|
|
542
|
-
scitex/plt/_subplots/_AxesWrapper.py,sha256=
|
|
543
|
-
scitex/plt/_subplots/_AxisWrapper.py,sha256=
|
|
544
|
-
scitex/plt/_subplots/_FigWrapper.py,sha256=
|
|
545
|
-
scitex/plt/_subplots/_SubplotsWrapper.py,sha256=
|
|
546
|
-
scitex/plt/_subplots/__init__.py,sha256=
|
|
547
|
-
scitex/plt/_subplots/_export_as_csv.py,sha256=
|
|
548
|
-
scitex/plt/_subplots/
|
|
549
|
-
scitex/plt/_subplots/_AxisWrapperMixins/
|
|
550
|
-
scitex/plt/_subplots/_AxisWrapperMixins/
|
|
551
|
-
scitex/plt/_subplots/_AxisWrapperMixins/
|
|
552
|
-
scitex/plt/_subplots/_AxisWrapperMixins/
|
|
553
|
-
scitex/plt/_subplots/_AxisWrapperMixins/_UnitAwareMixin.py,sha256=zAQGFHqdAqC3l50-h0nmR3G--bGLEnTq1N7eVy54L9s,11354
|
|
553
|
+
scitex/plt/_subplots/_AxesWrapper.py,sha256=q61ivHUuw03MFp9ydsTYq_dnoeB8QNeef0dhtxn4nsA,6715
|
|
554
|
+
scitex/plt/_subplots/_AxisWrapper.py,sha256=B4XREyntgdRGfqDxisl13mvnf_D0pDNIuliy_9WKf7I,14328
|
|
555
|
+
scitex/plt/_subplots/_FigWrapper.py,sha256=sTypr3hDM3DeOi2xho6LyiLA_6XriExbRCkXt7_yR2Q,15768
|
|
556
|
+
scitex/plt/_subplots/_SubplotsWrapper.py,sha256=Kv8Iq14ld5092AzA07EmD5wn2_H_9AM16i9cjyHpFuk,26173
|
|
557
|
+
scitex/plt/_subplots/__init__.py,sha256=1ZRQR0FeIkFSmkb7auSXgWJEGPxkZQfD3UUblnzqdh8,3470
|
|
558
|
+
scitex/plt/_subplots/_export_as_csv.py,sha256=tkl6lfXkfksylUxramiYh76j5VRNDaxA3l6YzjukpGg,15268
|
|
559
|
+
scitex/plt/_subplots/_AxisWrapperMixins/_AdjustmentMixin.py,sha256=3T6160c3D3XKEXVG8eEljbLdvS-vF-v_r74U7danU8k,19893
|
|
560
|
+
scitex/plt/_subplots/_AxisWrapperMixins/_MatplotlibPlotMixin.py,sha256=1fdSlN0VnQOCIvAPPuojaPeBUiJPYbTa56bHwrHfbhM,53370
|
|
561
|
+
scitex/plt/_subplots/_AxisWrapperMixins/_SeabornMixin.py,sha256=KhuucAoQBB5sMaSoTBPsMkh3_Sp_dbjkgMJutboaeqM,14969
|
|
562
|
+
scitex/plt/_subplots/_AxisWrapperMixins/_TrackingMixin.py,sha256=fjw71qIR7ya6-Rc29SfgpxzhmS8hAFqWhE9gPXHSAwQ,6405
|
|
563
|
+
scitex/plt/_subplots/_AxisWrapperMixins/_UnitAwareMixin.py,sha256=SQoRer7leiw831DlbjMAGQ_av2jKuy1IzK9MhrgYdHE,10782
|
|
554
564
|
scitex/plt/_subplots/_AxisWrapperMixins/__init__.py,sha256=0Ga-VWIQ0HFPZKx43TLB_4PQui3hSlwmI0ejY1DhloY,628
|
|
555
|
-
scitex/plt/_subplots/_export_as_csv_formatters/__init__.py,sha256
|
|
556
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_annotate.py,sha256=
|
|
557
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_bar.py,sha256=
|
|
558
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_barh.py,sha256=
|
|
559
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_boxplot.py,sha256=
|
|
560
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_contour.py,sha256=
|
|
561
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_contourf.py,sha256=
|
|
562
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_errorbar.py,sha256=
|
|
563
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_eventplot.py,sha256=
|
|
564
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_fill.py,sha256=
|
|
565
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_fill_between.py,sha256=
|
|
566
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_hexbin.py,sha256=
|
|
567
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_hist.py,sha256=
|
|
568
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_hist2d.py,sha256=
|
|
569
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_imshow.py,sha256=
|
|
570
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_imshow2d.py,sha256=
|
|
571
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_matshow.py,sha256=
|
|
572
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_pie.py,sha256=
|
|
573
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_plot.py,sha256=
|
|
574
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_plot_box.py,sha256=
|
|
575
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_plot_imshow.py,sha256=
|
|
576
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_plot_kde.py,sha256=
|
|
577
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_plot_scatter.py,sha256=
|
|
578
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_quiver.py,sha256=
|
|
579
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_scatter.py,sha256=
|
|
580
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_barplot.py,sha256=
|
|
581
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_boxplot.py,sha256=
|
|
582
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_heatmap.py,sha256=
|
|
583
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_histplot.py,sha256=
|
|
584
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_jointplot.py,sha256=
|
|
585
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_kdeplot.py,sha256=
|
|
586
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_lineplot.py,sha256=
|
|
587
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_pairplot.py,sha256=
|
|
588
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_scatterplot.py,sha256=
|
|
589
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_stripplot.py,sha256=
|
|
590
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_swarmplot.py,sha256
|
|
591
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_violinplot.py,sha256=
|
|
592
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stem.py,sha256=
|
|
593
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_step.py,sha256=
|
|
594
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_streamplot.py,sha256=
|
|
595
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_conf_mat.py,sha256=
|
|
596
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_ecdf.py,sha256=
|
|
597
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_fillv.py,sha256=
|
|
598
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_heatmap.py,sha256=
|
|
599
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_image.py,sha256=
|
|
600
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_joyplot.py,sha256=
|
|
601
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_line.py,sha256=
|
|
602
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_mean_ci.py,sha256=
|
|
603
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_mean_std.py,sha256=
|
|
604
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_median_iqr.py,sha256=
|
|
605
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_raster.py,sha256=
|
|
606
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_rectangle.py,sha256=
|
|
607
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_scatter_hist.py,sha256=
|
|
608
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_shaded_line.py,sha256=
|
|
609
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_violin.py,sha256=
|
|
610
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_text.py,sha256=
|
|
611
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_violin.py,sha256=
|
|
612
|
-
scitex/plt/_subplots/_export_as_csv_formatters/_format_violinplot.py,sha256=
|
|
613
|
-
scitex/plt/_subplots/_export_as_csv_formatters/verify_formatters.py,sha256=
|
|
565
|
+
scitex/plt/_subplots/_export_as_csv_formatters/__init__.py,sha256=-BLKOArGTkYlbeMabLbly8z9X8DlFMcYieja0n7zMBM,3294
|
|
566
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_annotate.py,sha256=RRyKvenkGujxdaTOabozdkspxMlUglWt7jlf9kMVTJs,2642
|
|
567
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_bar.py,sha256=En_DNhd-OzPGXTnqIdJAvKsxdWiFBufxTJ7o65qeQGw,4570
|
|
568
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_barh.py,sha256=BzJE2z9JyKz1oZQJXK4NOxtzM7xJnDx519woynqN99c,2018
|
|
569
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_boxplot.py,sha256=EGGdkli4rrKKNb3VJdQtcoF49xq8g4z_u3X1da1BLfY,2483
|
|
570
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_contour.py,sha256=5abt5ahf_wp0wOB4OSU3l-wAt74TqJZibl0ZbDGEN3Y,1652
|
|
571
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_contourf.py,sha256=TIyamQwnDD44ZehkT_O9YYtrtvjE0I7_aNwchHCvTmE,2170
|
|
572
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_errorbar.py,sha256=pVRqk-jXVSZDeEE8gvNRWhfL86w4B6eem3AYkUSlv5c,3106
|
|
573
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_eventplot.py,sha256=rMoV7W1zJwqueLdw_Ap4P_Qq9j6DxGhRgbef-pS0cKQ,2799
|
|
574
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_fill.py,sha256=22xOVUbGx0mQKWXZzIZ9zbIju_jhy-5xQDWQr9azjww,1333
|
|
575
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_fill_between.py,sha256=HO_ptqG6doxxJajphgGH8jyeAaMspoUmhn9KbKXCeA8,1441
|
|
576
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_hexbin.py,sha256=5LV8YvC2OXevNdlqRjmyRB1Yj3aAJJAw4X3tgKgYooU,1592
|
|
577
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_hist.py,sha256=CmmKrdsellkVq3jxw3S7To4JIwNcIj6L3Mh2lt8z8P4,3426
|
|
578
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_hist2d.py,sha256=DuOjNT7--Sh98uqVmXraoyXGz4oQmhDqmzVCVTOqykc,1604
|
|
579
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_imshow.py,sha256=iDiIGqftnYyi74knAjg3awtliK6QBvjlJlFTqJ_r0Ys,3223
|
|
580
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_imshow2d.py,sha256=sW8Ssu3jnULX2ma6miQkubjrZXsLRGe-YUdoPhKEHhg,1079
|
|
581
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_matshow.py,sha256=avOjby602DMnd47HuVZHh7yfj3JQAU-FD45d_nbWzwE,1266
|
|
582
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_pie.py,sha256=XAc8itOlfovryRibLGP1up25oi62VWVbqB8NDDEfuWg,1588
|
|
583
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_plot.py,sha256=jiLAXrOnql9szBYoAMCCaIdH7oLNK9LkKpSMkq43xkE,8330
|
|
584
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_plot_box.py,sha256=8oGCOfcOL2-YEQb5hbI2q0FpuRwS8TOL7bT2MYFJgew,3361
|
|
585
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_plot_imshow.py,sha256=aeSGs1slUrfSNbxvwpL8EZo2vOGDB8clShBkcUCzOeg,1134
|
|
586
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_plot_kde.py,sha256=4VeEAqYyPLhqiSGgWEkqItcQDRcy7Gcs53FmSfaJorE,1440
|
|
587
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_plot_scatter.py,sha256=cbCO-hLu8d45NfRr_5rWuAATEiifXlo6lGYAarQ7yyA,1109
|
|
588
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_quiver.py,sha256=H9Q7vFBjc0TYIfpzcWW0n3ec-j3oaabBV7guXB7Ards,1754
|
|
589
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_scatter.py,sha256=Cvq0wTr_rjpKCLq3yAHtX08LqZdgEkBRhXRoR-x8nNM,1585
|
|
590
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_barplot.py,sha256=6l-bRDZugRrcJYhv91kFZ-9m6yhZLBdfVNHAeNpLswA,2405
|
|
591
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_boxplot.py,sha256=Do04f4Ed0lO66YMclE3aTROhvSK-AbQMcdBBryIF0G8,4385
|
|
592
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_heatmap.py,sha256=LvOJ9tt1wqNBbEVBpCFg8gLBxey46_GH20iE8Xg3KDs,2650
|
|
593
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_histplot.py,sha256=ABKC1v-pAwi7eZT-DPod2FFcM9v_ioEriQwZtAebkJk,3739
|
|
594
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_jointplot.py,sha256=k1V9Dvt_jbmttbsmm6GTqPGT2tBI6kKkh3xYHx99MbA,2018
|
|
595
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_kdeplot.py,sha256=OCR5tVXkaaQ2WFR8Q17H6goS_Qup9CkVAcT66hZJfmE,3374
|
|
596
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_lineplot.py,sha256=0sYtO7jDE1ZW88-Cbvb8m-FaBx6Hnprhcumx7C3fTx0,1889
|
|
597
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_pairplot.py,sha256=Owoc6jNJBBVTQsKszeOCTeHaChB4am73RBKBPcSiqEg,1544
|
|
598
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_scatterplot.py,sha256=JZY2NIPeikRs3m9sHvnkMPCGR1DX-zEnxOE60Hn5HnM,2827
|
|
599
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_stripplot.py,sha256=asC-svPR_6EpuFTksgaV0wsfMuwgpEDjy8uZSQZS1JU,2936
|
|
600
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_swarmplot.py,sha256=-NaUtgJIjdkB54pg3L5GsyKYcz4lOZGhcskosNrA4Wg,2936
|
|
601
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_sns_violinplot.py,sha256=n-x30e3a1jczqZ2PRRkJGwyURiedqwaGd-6Qt4WogtI,5220
|
|
602
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stem.py,sha256=KR8joib3mj3SoKS-tVRDkH4rz_vq9ue5JZzr_3ojyq4,1663
|
|
603
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_step.py,sha256=N17DAa_Np0HuEBiJgUAgWa-H0wUuprdhxIh2a5SeGVs,1663
|
|
604
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_streamplot.py,sha256=JIEeifuVAGs6xeKI5F0vbhohgHRLKmioIjQyombvvL0,1545
|
|
605
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_conf_mat.py,sha256=TFw2DdS0pmsmtqDZbANcu4kRQvAYwo-JG7TeiR0si8A,2127
|
|
606
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_ecdf.py,sha256=__i8t9F5vBZ2xjnNtf4k3OiGf9Kwz7PzYxIA7Bf2dPc,1364
|
|
607
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_fillv.py,sha256=9Qpl6lojsJJFtabzEIng2mk32wx1xMrCQNrbabrj2TE,2537
|
|
608
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_heatmap.py,sha256=rCbI9TVYM5Wl3DPBjSTNvg8bUUxmIgczsMm4Gf53AF8,2288
|
|
609
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_image.py,sha256=XE3LIRWpuA1-RlZS01xUer9mVDk8_bgUBLt4grRt78s,3820
|
|
610
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_joyplot.py,sha256=QcYBEpQor-SpkPZ1Cv9V_wFmkiT74_rbny97-f4DQIA,2163
|
|
611
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_line.py,sha256=Eb5Dt9X010Euao8tR-b2P4w8JVrm4As4hQlJjvNd4Jo,1872
|
|
612
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_mean_ci.py,sha256=WKyLjy4uRjhlKxayAYAstF8YIIJoCvUXfDw7rn9MJ70,1431
|
|
613
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_mean_std.py,sha256=OY-XkNu0v-NoNc3NA_Q20QHmRpvUphtQAxHOr3hXmEQ,1476
|
|
614
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_median_iqr.py,sha256=WUzmKCR0j7gtfRyhYuLh06m_22Y5uTVDl3izzHjSbc8,1457
|
|
615
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_raster.py,sha256=kzVfesDfEbWlyKsXReZsMaOoOIVYqRQME3VNls51WQE,1405
|
|
616
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_rectangle.py,sha256=zVmY0b4_LilagbtxZeK3U6wo8K2o5lmBoKQt9vzATzM,4682
|
|
617
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_scatter_hist.py,sha256=JfJ8aBvva2W3sz4NkRc2yi0jUVLtcPyW9fUDMDXJhY4,3019
|
|
618
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_shaded_line.py,sha256=EfIXUn_1feMOSbKJuCBfBhc2nrM2M6JS1zhcWQZh8c8,2668
|
|
619
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_stx_violin.py,sha256=K8TcjMSS6t2sq3YZj36_goyqFPla8yQNX_O-v141hWI,4060
|
|
620
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_text.py,sha256=ZjVfGM73VHvtvWA4rqqvza_ucj2-yBI-RgaJb_dHdx4,1791
|
|
621
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_violin.py,sha256=ZgLfsPSllX5odhnAfdKtgRw40qhAXK7aWYxGPSfP7Ic,2211
|
|
622
|
+
scitex/plt/_subplots/_export_as_csv_formatters/_format_violinplot.py,sha256=2BvnQjfdTmrJEsjAOuDb6wET8Bdb-HBXDiCwM_DeTUY,2939
|
|
623
|
+
scitex/plt/_subplots/_export_as_csv_formatters/verify_formatters.py,sha256=SDasBhsiaCenMY1n_lSCDBKfbXhSLcsznf-ywwQ9jTc,10265
|
|
614
624
|
scitex/plt/ax/__init__.py,sha256=hNBtO1spj_Mdr6c-hJSpnX7iOZyTDDNtP4poaWN3muk,4051
|
|
615
|
-
scitex/plt/ax/_plot/__init__.py,sha256=
|
|
616
|
-
scitex/plt/ax/_plot/_add_fitted_line.py,sha256=
|
|
617
|
-
scitex/plt/ax/_plot/_plot_circular_hist.py,sha256=
|
|
625
|
+
scitex/plt/ax/_plot/__init__.py,sha256=IEMIfQWoENAkASNh9i_3AMgEv-QL3ZAJExllSgPQhJE,2246
|
|
626
|
+
scitex/plt/ax/_plot/_add_fitted_line.py,sha256=A1iLnTi2AcDrSN8mGZNcLfSJFFGJqaxYht2plIj07yw,4416
|
|
627
|
+
scitex/plt/ax/_plot/_plot_circular_hist.py,sha256=tGrG9-XpRIYbV8KV-rCEt2OBDwJJ1-l_o_23iDboanc,3481
|
|
618
628
|
scitex/plt/ax/_plot/_plot_cube.py,sha256=l2qgBaSR-7u14EQkb1oMrF-bYFjK-fqopiTwZgNFAe4,2076
|
|
619
|
-
scitex/plt/ax/_plot/_plot_statistical_shaded_line.py,sha256=
|
|
620
|
-
scitex/plt/ax/_plot/_stx_conf_mat.py,sha256=
|
|
621
|
-
scitex/plt/ax/_plot/_stx_ecdf.py,sha256=
|
|
622
|
-
scitex/plt/ax/_plot/_stx_fillv.py,sha256=
|
|
623
|
-
scitex/plt/ax/_plot/_stx_heatmap.py,sha256
|
|
624
|
-
scitex/plt/ax/_plot/_stx_image.py,sha256=
|
|
625
|
-
scitex/plt/ax/_plot/_stx_joyplot.py,sha256=
|
|
626
|
-
scitex/plt/ax/_plot/_stx_raster.py,sha256=
|
|
627
|
-
scitex/plt/ax/_plot/_stx_rectangle.py,sha256=
|
|
629
|
+
scitex/plt/ax/_plot/_plot_statistical_shaded_line.py,sha256=HTsmHYaspb8NIUsLz2ZEgL6A9wai9mji0TWhXw3CS1E,8807
|
|
630
|
+
scitex/plt/ax/_plot/_stx_conf_mat.py,sha256=bg0MRsf93JMS-FymgkaNilCvkA2S5LQoZtiErk75yno,4232
|
|
631
|
+
scitex/plt/ax/_plot/_stx_ecdf.py,sha256=YxIkRnR6fTMuDt0EJlEf_w7aGbjA3zPa0FLIDOl5iMQ,3284
|
|
632
|
+
scitex/plt/ax/_plot/_stx_fillv.py,sha256=bh8hmiSmvqQ4nlfTbr5bSTtdOoQLPgrKwN9FncAvF8I,1737
|
|
633
|
+
scitex/plt/ax/_plot/_stx_heatmap.py,sha256=-nCXnEVtyzuyFtMZY79d6Xi4yXnD3jPFSEO-Q20-Cdw,11070
|
|
634
|
+
scitex/plt/ax/_plot/_stx_image.py,sha256=JYAzcijls-imIJy6Bxt759xNaiEZQivXerUyItWsObs,2837
|
|
635
|
+
scitex/plt/ax/_plot/_stx_joyplot.py,sha256=s4Xqi_lpX4zHqgkka4psRZe7a230qZuQmBM_aZ7FTHo,3911
|
|
636
|
+
scitex/plt/ax/_plot/_stx_raster.py,sha256=JMpkCGN-Ws-PG-S1guZNcXk-vqC30NYJOKuLVvHyBMs,6598
|
|
637
|
+
scitex/plt/ax/_plot/_stx_rectangle.py,sha256=RdYeSVNNyz-00_V6RLu-RV0eMBTjtgYfSc44b3LTIZ4,2261
|
|
628
638
|
scitex/plt/ax/_plot/_stx_scatter_hist.py,sha256=q-rEpAbXDub6hgUOiNBibHSvO_k_0z_gEETZX02CpCc,3672
|
|
629
|
-
scitex/plt/ax/_plot/_stx_shaded_line.py,sha256=
|
|
630
|
-
scitex/plt/ax/_plot/_stx_violin.py,sha256=
|
|
639
|
+
scitex/plt/ax/_plot/_stx_shaded_line.py,sha256=VuqpWCp9v7fbLNM2_qfi2KXQbCWuaF3BzxMQX86tIhs,7054
|
|
640
|
+
scitex/plt/ax/_plot/_stx_violin.py,sha256=gwPFkMxcTrnQbYXE7pNYqotzZM4qiz2c2gNFamqu5a0,10709
|
|
631
641
|
scitex/plt/ax/_style/__init__.py,sha256=HYt5WVbhS6zVk76ParvmJdJXs10jMAxOIcWor9sLbOw,1315
|
|
632
|
-
scitex/plt/ax/_style/_add_marginal_ax.py,sha256=
|
|
642
|
+
scitex/plt/ax/_style/_add_marginal_ax.py,sha256=RHeVSs1h3w7AIJDxEjrN6KKQxy7eN8XVSCtttSurGHI,1510
|
|
633
643
|
scitex/plt/ax/_style/_add_panel.py,sha256=lHS3qDo3TtDRPgrujUcqG7Q6j6JlT5dhzkbeGSQk37c,2664
|
|
634
|
-
scitex/plt/ax/_style/_auto_scale_axis.py,sha256=
|
|
635
|
-
scitex/plt/ax/_style/_extend.py,sha256=
|
|
636
|
-
scitex/plt/ax/_style/_force_aspect.py,sha256=
|
|
644
|
+
scitex/plt/ax/_style/_auto_scale_axis.py,sha256=hCMYgB-7A2waNBtP2B6oJ0viiQACvYgRdCfJn2GwJgI,6298
|
|
645
|
+
scitex/plt/ax/_style/_extend.py,sha256=Tihx1eWkG4uSYM9mSe2Jo67bUhCYy22yCC17KBVyRWs,1907
|
|
646
|
+
scitex/plt/ax/_style/_force_aspect.py,sha256=9YV831S_RHoBUHJTJ2pBfrqsfrunD7rAWfGnqyedvYA,1133
|
|
637
647
|
scitex/plt/ax/_style/_format_label.py,sha256=tcG8Sx6TFbV0EsfhmmxmomzxwYYfolfqPd9z2cXOBFA,676
|
|
638
|
-
scitex/plt/ax/_style/_format_units.py,sha256=
|
|
639
|
-
scitex/plt/ax/_style/_hide_spines.py,sha256=
|
|
640
|
-
scitex/plt/ax/_style/_map_ticks.py,sha256=
|
|
641
|
-
scitex/plt/ax/_style/_rotate_labels.py,sha256=
|
|
642
|
-
scitex/plt/ax/_style/_rotate_labels_v01.py,sha256=
|
|
648
|
+
scitex/plt/ax/_style/_format_units.py,sha256=8AZTowYD-G7OeC7xxflk0h26U-M4u82iDAG9YJxpIl4,2436
|
|
649
|
+
scitex/plt/ax/_style/_hide_spines.py,sha256=_s_-0CEGpG7CTHAlM1Rrrbn9ehBMI67n3eiQSgIKf5I,2749
|
|
650
|
+
scitex/plt/ax/_style/_map_ticks.py,sha256=Z4N7ZYNqbWjZKLYSLxwHc17l4X1ZP2R0ef024d4Ge3Y,6154
|
|
651
|
+
scitex/plt/ax/_style/_rotate_labels.py,sha256=xDF5OWU9_l78G9qzKy2vWibKAA-8YT2NHesLhYacjPE,10411
|
|
652
|
+
scitex/plt/ax/_style/_rotate_labels_v01.py,sha256=BgTq9IbQTRvqE8bdll1-FAy_mv8GlPg4MtMQzJOKQFk,8261
|
|
643
653
|
scitex/plt/ax/_style/_sci_note.py,sha256=50tN2ACGW97CNK5SnTdXHeqx0YG-3AoA1ucH2BRJqHU,9085
|
|
644
|
-
scitex/plt/ax/_style/_set_log_scale.py,sha256=
|
|
645
|
-
scitex/plt/ax/_style/_set_meta.py,sha256=
|
|
654
|
+
scitex/plt/ax/_style/_set_log_scale.py,sha256=MxKExVD99r8coj7u-nuvVEzUczNABb4bYGbw_LwYToc,9439
|
|
655
|
+
scitex/plt/ax/_style/_set_meta.py,sha256=FkBJ3ob_TFtMB5UfqTLw9uOgYDLl2BhZCT5RTAbJFZk,8658
|
|
646
656
|
scitex/plt/ax/_style/_set_n_ticks.py,sha256=t1PB5y-afLEFL4GFh846kFbpIdWBwvXqZhtBnozBujE,806
|
|
647
657
|
scitex/plt/ax/_style/_set_size.py,sha256=XfDj3ix0ywy7_hyumzdseXyrrwAAOKp0_AWJoxBmsls,449
|
|
648
|
-
scitex/plt/ax/_style/_set_supxyt.py,sha256=
|
|
658
|
+
scitex/plt/ax/_style/_set_supxyt.py,sha256=YdgafNqBVCELnI51nDivwk2GnfpHkqV0PAjiih25g80,4200
|
|
649
659
|
scitex/plt/ax/_style/_set_ticks.py,sha256=QY_6Rz9fBI9H9UT6j_1C_SZwq_mhxKqc-q_pv5NNKws,8718
|
|
650
|
-
scitex/plt/ax/_style/_set_xyt.py,sha256=
|
|
651
|
-
scitex/plt/ax/_style/_share_axes.py,sha256=
|
|
660
|
+
scitex/plt/ax/_style/_set_xyt.py,sha256=byHZIfhw6mLWSSkL-OlpaHiEijHwyKQatTdJeYPYCAA,3905
|
|
661
|
+
scitex/plt/ax/_style/_share_axes.py,sha256=4kAG-2j80PG46JfOy0PSje1HQrr0EhqA7x_VtmlDfis,7576
|
|
652
662
|
scitex/plt/ax/_style/_shift.py,sha256=e6cCbT8dTqyBkGqMMeCgRmRA4eE4SQgj-9CqlBC3GhA,4085
|
|
653
|
-
scitex/plt/ax/_style/_show_spines.py,sha256=
|
|
654
|
-
scitex/plt/ax/_style/_style_barplot.py,sha256=
|
|
655
|
-
scitex/plt/ax/_style/_style_boxplot.py,sha256=
|
|
663
|
+
scitex/plt/ax/_style/_show_spines.py,sha256=GVqNzuUQofTI4qpHuQROFuyV-Cd5CuniO_coMg4K9jM,10151
|
|
664
|
+
scitex/plt/ax/_style/_style_barplot.py,sha256=Me3JFJUm5O8w1hmTPVAL1QSYnndaJAyBOxOaidtQxcU,1923
|
|
665
|
+
scitex/plt/ax/_style/_style_boxplot.py,sha256=nHLwyn3ckL0UmC-mGm8x5yi-4uqKZHb9S1YVBQKk0OY,4949
|
|
656
666
|
scitex/plt/ax/_style/_style_errorbar.py,sha256=MvQqimJ77iLmIAflXmkrFO4xYyD1FdRYZusg2Jjhi6I,2461
|
|
657
|
-
scitex/plt/ax/_style/_style_scatter.py,sha256=
|
|
658
|
-
scitex/plt/ax/_style/_style_suptitles.py,sha256=
|
|
659
|
-
scitex/plt/ax/_style/_style_violinplot.py,sha256=
|
|
667
|
+
scitex/plt/ax/_style/_style_scatter.py,sha256=uf_bciFcJt57ShO5Edmsrt4l79h1Xc1lQaKvkE830O0,2303
|
|
668
|
+
scitex/plt/ax/_style/_style_suptitles.py,sha256=caZCUBPxcWibEuKVj8sCxCKb7yb-c35VLOEMi9bM-j4,2165
|
|
669
|
+
scitex/plt/ax/_style/_style_violinplot.py,sha256=YrnTexxThoB2SnxPBv9Is9RbI-R4Zp432GX_ORJJ7NA,3639
|
|
660
670
|
scitex/plt/color/_PARAMS.py,sha256=fhjnYKjax1SWIZkpZQ00bwj4NgTSFB_rdJ-f_q7OI5M,1607
|
|
661
|
-
scitex/plt/color/__init__.py,sha256=
|
|
662
|
-
scitex/plt/color/_add_hue_col.py,sha256=
|
|
663
|
-
scitex/plt/color/_colors.py,sha256=
|
|
664
|
-
scitex/plt/color/_get_colors_from_conf_matap.py,sha256=
|
|
671
|
+
scitex/plt/color/__init__.py,sha256=m0VVxXdI5Yu-YP3Fg2T7LStxoSbCbFV68PMDY4HL87Q,1672
|
|
672
|
+
scitex/plt/color/_add_hue_col.py,sha256=H5SY7h9rBObpoG0KH3A3zzYgZaI_ksyquJXDbopJXtw,1116
|
|
673
|
+
scitex/plt/color/_colors.py,sha256=ktPYTu4tuCm2t1W0kZPPRlAvbrtkIM3gDQslZQqWkus,4552
|
|
674
|
+
scitex/plt/color/_get_colors_from_conf_matap.py,sha256=xjk1zJIv1TR1CFY2Hg7CticWzLu0KSzXbEWn3IdZ9Ak,4071
|
|
665
675
|
scitex/plt/color/_interpolate.py,sha256=jTprQ4hINxjYdFLlVutI2PMkjqAWjvev-jRyIA78rEQ,976
|
|
666
|
-
scitex/plt/color/_vizualize_colors.py,sha256=
|
|
667
|
-
scitex/plt/docs/FIGURE_ARCHITECTURE.md,sha256=
|
|
676
|
+
scitex/plt/color/_vizualize_colors.py,sha256=e30Q6d9hqtBxGD7RCgYpZcq1n0nG66fAwnz03tqmC6I,1355
|
|
677
|
+
scitex/plt/docs/FIGURE_ARCHITECTURE.md,sha256=bIxyg6EHlXtPo7BQu_vzfpAPfwF6brpjgM89X-Y666U,8487
|
|
678
|
+
scitex/plt/gallery/README.md,sha256=hBc9TNdvQ18E4CQCpA45g8hU3SiX-gNfxWOGG_OQgAk,3608
|
|
679
|
+
scitex/plt/gallery/__init__.py,sha256=bt_CSZ35pgb-MUl7QEwXP25ccyaT0Rv_KhvButx-E80,659
|
|
680
|
+
scitex/plt/gallery/_generate.py,sha256=-o_S6Gr9wP2DDfEu4TK8nLQRwWzg_ppVdQHVgCfuHGk,4542
|
|
681
|
+
scitex/plt/gallery/_plots.py,sha256=lccHRoyVsMDIlCtBmjmsUHJLQdi6jTN_Wt6CyHHmKOA,20285
|
|
682
|
+
scitex/plt/gallery/_registry.py,sha256=PvjSUWt1-6OITKc3HsdZ_VBle_Izjtz07m-6ZM4MB7U,3733
|
|
668
683
|
scitex/plt/styles/SCITEX_STYLE.yaml,sha256=x7-UGZBgzLumi1eVvgEFOuQmzvTxFQ75ZVZ0VBVz-To,4514
|
|
669
|
-
scitex/plt/styles/__init__.py,sha256=
|
|
670
|
-
scitex/plt/styles/_plot_defaults.py,sha256=
|
|
671
|
-
scitex/plt/styles/_plot_postprocess.py,sha256=
|
|
684
|
+
scitex/plt/styles/__init__.py,sha256=seBL6OYbodLtXSehVw96kxSAnAcow-NkYzPz6uTVbc8,1500
|
|
685
|
+
scitex/plt/styles/_plot_defaults.py,sha256=cx-J4-j4HSfVZ6mGM01xQobzl6H3IdvmbfqtpZvbZlo,7963
|
|
686
|
+
scitex/plt/styles/_plot_postprocess.py,sha256=eCilDm_7haft9D8KaWdK6mrVn0IoV9TxrMQHLAnM7yk,20154
|
|
672
687
|
scitex/plt/styles/_style_loader.py,sha256=QtjFY2VQYKZzOtYMk_RadkWX9JqK3MDgsr2WRlV2M2s,7481
|
|
673
|
-
scitex/plt/styles/presets.py,sha256=
|
|
674
|
-
scitex/plt/
|
|
688
|
+
scitex/plt/styles/presets.py,sha256=8XIh78rFvA4gQadzuAdmINim2ZsA1PjIgiFHIg0OYHM,8221
|
|
689
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/area/fill_between.json,sha256=2uZ5U3ZYmYNKbIqfvoQOqE577SMb6WiP0_edmtz93k4,3246
|
|
690
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/area/fill_betweenx.json,sha256=6a4rQySsXOh8ckChQuX3x2AXr8QdPJhTz4FMSIqoTpw,2336
|
|
691
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/area/stx_fill_between.json,sha256=6stOjCK-J3Bk_nIIKzW6wAEmnoB3fk-WvPRugtve8-s,2892
|
|
692
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/area/stx_fillv.json,sha256=ySoBpHvlT9N1-zpAUgFcqi2l40J-Br5_juv2N_h1EMw,3037
|
|
693
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/categorical/bar.json,sha256=9ivKKoCQdDf0brOHCegloaoCm7iOMLMJl9JqlhwifTA,2396
|
|
694
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/categorical/barh.json,sha256=Q0AMhInm5CMvXsCC0nEiMSiNtZZN4OB4jNxNwsKtCKo,2410
|
|
695
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/categorical/boxplot.json,sha256=jIJWgwarTirY7Hhw9WRFXX6sul9bL_N32uu7ggm-wpY,2432
|
|
696
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/categorical/stx_bar.json,sha256=aXOt8URVvLZAq6pBg2GGbL-nOxW8GvptWd3oap5V6FE,2147
|
|
697
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/categorical/stx_barh.json,sha256=Rd-7l0dzDKY1YEqV5mbj959QDY-zM4E_djCKa7qYgcI,2152
|
|
698
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/categorical/stx_box.json,sha256=WNtFTo_2rBGXyuf1eCyhVIs0I70LlIUgpf4zVqjtnGE,2077
|
|
699
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/categorical/stx_boxplot.json,sha256=Bj4faa_8UDec03s-0MLI952waXa3Fzxnw4rRaW-In1s,2507
|
|
700
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/categorical/stx_violin.json,sha256=vHT2_ix3lJp-rBpGGQ8tTobFw4ZeQ9USS838jnmu5YQ,2366
|
|
701
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/categorical/stx_violinplot.json,sha256=_n9PNF527GtplAVkYjQN85O0V5Q-d8aCSbvzlZnxIuY,2368
|
|
702
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/categorical/violinplot.json,sha256=7xd37PMqma-l8DM0rSqm53sE_jk92PDtoYG69uviW6U,2375
|
|
703
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/contour/contour.json,sha256=gPB94ed52hukxLz-owHafi1E23vf4v61zV2VbU7RInM,2624
|
|
704
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/contour/contourf.json,sha256=UQjkJVqmPYMYNSSPDQEJcE9Lv0fu7SYsndMbJ6gOcfM,2655
|
|
705
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/contour/stx_contour.json,sha256=tikiIx9bWCqky7GGgpxhGEFPwfxUdetR6Jynh9trVys,2130
|
|
706
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/distribution/hist.json,sha256=4PYrps9xeyShVUPrfaMTO2qDNb0f8qHO2BBpzivykaQ,3021
|
|
707
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/distribution/hist2d.json,sha256=JC1XSwUGwmuxySltKZXxJlhh84wN_NYg34UZGVvLhG4,2567
|
|
708
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/distribution/stx_ecdf.json,sha256=KjGA_VRqsabJTlF1Nd0vadnyD0k-p4bhJob9UdEAU_E,2501
|
|
709
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/distribution/stx_joyplot.json,sha256=__jADYSYATzLZ1oEkf3NArIy1RFG6-b-bBLywvPOXh0,2605
|
|
710
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/distribution/stx_kde.json,sha256=Sr9o4r6AzKWaJAQtJMbiWBAy_1jONmL1LTE325g8WKY,2436
|
|
711
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/grid/imshow.json,sha256=GHKuRmcX7rMG4f-BGt6ztnlR7KN6fydAhUnd96hR2EQ,2464
|
|
712
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/grid/matshow.json,sha256=FgxJKix260LEfAjvpYMu_5ReZAXbzpZ-AmIOkH61mcY,2450
|
|
713
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/grid/stx_conf_mat.json,sha256=4margVCrR3ExMuf4OXSDyJwenzTg6ZEM7IppJdY-uFs,2073
|
|
714
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/grid/stx_heatmap.json,sha256=ZXSD3W0zxWfpsxIZE2GrSsyfCpirNOa-jA6AUt3W2Ys,2326
|
|
715
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/grid/stx_image.json,sha256=xepQwE2vuTdXDS61GKkBnnO2h_htLGPBbkoYAwVj3Uk,3454
|
|
716
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/grid/stx_imshow.json,sha256=sBlBRLTLAwO-1XFDQ7UpyRiyFrypY-FqYV54DdNfuTM,2146
|
|
717
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/line/plot.json,sha256=mpkXm7pev51bYk9UQ5VqkJMzxXRtpjWourC69M2LQsw,3135
|
|
718
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/line/step.json,sha256=rqeah38IiRCQNdD47bz8SUyQShEiSlNeHEd1CnRpiaM,2402
|
|
719
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/line/stx_line.json,sha256=V2a7mbvuwXQhXdnDo6CnIUxExMG6OIMUroUkbpkWzUU,2498
|
|
720
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/line/stx_shaded_line.json,sha256=BCLnyoAdbSRme4pr8Ufq6KGEp21ckNGMYhlAKlsw7b0,2802
|
|
721
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/scatter/hexbin.json,sha256=gtLcLYOCoaG3u7PYDQYGWdpy-HiwsWOBvAiWpQOg_bM,2477
|
|
722
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/scatter/scatter.json,sha256=zoetXtaL_-U6vyz71vdlRkzToLujzU5QV8mntPBx7sk,2541
|
|
723
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/scatter/stem.json,sha256=ReU8OfbKKlubjicurevDGpicQFHDyNGNCJAusQoScpY,2430
|
|
724
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/scatter/stx_scatter.json,sha256=sbpJcm_Q-Ib_cU_053SD7GEJE_NLXxSIV3c3khka37E,2170
|
|
725
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/special/pie.json,sha256=F9xMQW4iA1lPsVa_ehD_DMjjiY7nodWEWqVc07RO-VQ,2418
|
|
726
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/special/stx_raster.json,sha256=HBzSWxrtT7BoayTz348e3OiYu7vOVp8wI05HyXz5Nec,3088
|
|
727
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/special/stx_rectangle.json,sha256=ZxobgyzyyH3cFfWEwjNnayv9zMB4s1nVe3qtwtdcAbA,3170
|
|
728
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/statistical/errorbar.json,sha256=5evD5vpYfi32MuQ4i910t1nntkgSQcry14vioDfHIAU,2438
|
|
729
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/statistical/stx_errorbar.json,sha256=hE-aGjwsF3A8KL-GVwcDolcfG5jrFF71UD7Bu3w2vEg,2148
|
|
730
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/statistical/stx_mean_ci.json,sha256=cEj6kmZlOqRHAyqVOoJSbLCVcSa_MXl2-8PkK51cfuc,2697
|
|
731
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/statistical/stx_mean_std.json,sha256=kkro9ahIFqfNpjrb6oVM7Eet_TtQsNz5xJ3QsIFq2JM,2714
|
|
732
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/statistical/stx_median_iqr.json,sha256=_2QuGMknCdq1Hp76f07mcFaHF4Q1vYT_TVyGTSM9rAM,2718
|
|
733
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/vector/quiver.json,sha256=ErecmY5OnQR9xRNDhefWqpnSGcSEHxDCDN6JZOavlCg,2710
|
|
734
|
+
scitex/plt/templates/research-master/scitex/vis/gallery/vector/streamplot.json,sha256=zTq57ZuquN1feIqHpuAj_d9JCfpmjgPNPZIPqR6YiOk,2741
|
|
735
|
+
scitex/plt/utils/__init__.py,sha256=KFQgu9bHY9KoFfbfNaDROevNHDSB94FpCVA6Xq1dJDI,2807
|
|
675
736
|
scitex/plt/utils/_calc_bacc_from_conf_mat.py,sha256=6_e5bc6hi3kosYqi-7qVJCNAPAX5dA9iebBwTrc1lX4,1222
|
|
676
737
|
scitex/plt/utils/_calc_nice_ticks.py,sha256=ORlbvqcumBxx8gNwTv384OPzJRXtIIXtMsRpNOvx9SQ,3080
|
|
677
|
-
scitex/plt/utils/_close.py,sha256=
|
|
678
|
-
scitex/plt/utils/_collect_figure_metadata.py,sha256=
|
|
679
|
-
scitex/plt/utils/_colorbar.py,sha256=
|
|
680
|
-
scitex/plt/utils/_configure_mpl.py,sha256=
|
|
681
|
-
scitex/plt/utils/_crop.py,sha256=
|
|
682
|
-
scitex/plt/utils/_csv_column_naming.py,sha256=
|
|
683
|
-
scitex/plt/utils/_dimension_viewer.py,sha256=
|
|
684
|
-
scitex/plt/utils/_figure_from_axes_mm.py,sha256=
|
|
685
|
-
scitex/plt/utils/_figure_mm.py,sha256=
|
|
686
|
-
scitex/plt/utils/_get_actual_font.py,sha256=
|
|
687
|
-
scitex/plt/utils/_histogram_utils.py,sha256=
|
|
738
|
+
scitex/plt/utils/_close.py,sha256=PT5O3cb0qpUd6VuD3iUUFBbbcTI9ExLWrwhhVPn1YSI,2108
|
|
739
|
+
scitex/plt/utils/_collect_figure_metadata.py,sha256=sHAxqYLnB3h8DzGwDdnouEMb5SDDzm4rg_OQ-Zlqu7I,128131
|
|
740
|
+
scitex/plt/utils/_colorbar.py,sha256=YGgp8B2HJmZPrzP3STfO9v1LZYwgZ8BzpJsEwEvOUU8,4647
|
|
741
|
+
scitex/plt/utils/_configure_mpl.py,sha256=6kOfyFgH6Q-fhY19vHj6PaCp0A1uQeAX0w7otXXHEEA,16005
|
|
742
|
+
scitex/plt/utils/_crop.py,sha256=zJXPWNApgLLrFcuzYgDtiukvRR3RJhkbB_kiVnlj5cw,9480
|
|
743
|
+
scitex/plt/utils/_csv_column_naming.py,sha256=p1RGhvzou-0UVP4JCiDyJlNySL05Vwu5YgKlQdcigEw,8641
|
|
744
|
+
scitex/plt/utils/_dimension_viewer.py,sha256=Q3oyol5w_JUEFh-oXRr9N86C3OBxpwiXmeeIl0Uz9Cw,12457
|
|
745
|
+
scitex/plt/utils/_figure_from_axes_mm.py,sha256=PTo3DAvT4FxPQdikNkaiieRx-Ky5xmWn7k5Yhc8cGr4,13692
|
|
746
|
+
scitex/plt/utils/_figure_mm.py,sha256=gO0Hqk2hhIZhYjn58XD6f2TkGha_D2b0vOacAV1IGbg,13033
|
|
747
|
+
scitex/plt/utils/_get_actual_font.py,sha256=NOCO4_ZL90IfAtjR82_pUmwQTrJKnOkjpblegBkSLmQ,1835
|
|
748
|
+
scitex/plt/utils/_histogram_utils.py,sha256=vxUVvHPmo2ihZc8sCvAY8Ooeit1B735I2rdhJLXN7pU,4310
|
|
688
749
|
scitex/plt/utils/_im2grid.py,sha256=HajDiVNXRIyRFTEEWKiobT4rD8HX2fwA-5AUxs_NqxA,2032
|
|
689
|
-
scitex/plt/utils/_is_valid_axis.py,sha256=
|
|
690
|
-
scitex/plt/utils/_mk_colorbar.py,sha256=
|
|
750
|
+
scitex/plt/utils/_is_valid_axis.py,sha256=eNeVIUle52FjmUN2qc9ESv1_5X4PP0bZ0_dEHvEojlI,2139
|
|
751
|
+
scitex/plt/utils/_mk_colorbar.py,sha256=6MG5kCBRGefyg_nt-fQUBKfWy1Tbu3qIpQkf4pd1ArM,1877
|
|
691
752
|
scitex/plt/utils/_mk_patches.py,sha256=yyYV2hK2SQr3uDCvI0n1Et7p5OJ602WlsCtmSxKRmuw,667
|
|
692
|
-
scitex/plt/utils/_scientific_captions.py,sha256=
|
|
693
|
-
scitex/plt/utils/_scitex_config.py,sha256=
|
|
753
|
+
scitex/plt/utils/_scientific_captions.py,sha256=GKjXKb8GcLyBRJXyxrQ6MFNv7520QzWiAcJvste0VZQ,21844
|
|
754
|
+
scitex/plt/utils/_scitex_config.py,sha256=DS22WZQU7Vk6EUF__5cbm5lKv6QivxUJjtbh385g1oI,7781
|
|
694
755
|
scitex/plt/utils/_units.py,sha256=DtwOpOUdKwVVWC3ZUgSxg04HjXIvfMY-NTmDilVA0Pg,2286
|
|
756
|
+
scitex/plt/utils/metadata/__init__.py,sha256=vNc6zKih8d7XWQkAE5LsNV249n2o6eMNIezMfb5KOsc,1001
|
|
757
|
+
scitex/plt/utils/metadata/_artist_extraction.py,sha256=urEOH_PpoXqpRdR7DlBoD1InHZXx6DmUm9LCutv5vJE,4192
|
|
758
|
+
scitex/plt/utils/metadata/_axes_metadata.py,sha256=inideyY4gbeEDrYcQ9pJG8ix9IA0ERt2AVvbvMA8LN0,2754
|
|
759
|
+
scitex/plt/utils/metadata/_collection_artists.py,sha256=spbhjD1N-EXeTlEfGYOhR_kqj9VfH5IpnRWSjG_2L_8,9316
|
|
760
|
+
scitex/plt/utils/metadata/_core.py,sha256=c4NrfNiyFkfWIiEiT9g8GxFNX4khv5iJbq7IOwaSYkM,7383
|
|
761
|
+
scitex/plt/utils/metadata/_csv_column_extraction.py,sha256=Pk7vVtl0kdo8yjcrjSmh4Hyc86Tr3rmPwfAj0_FCGXo,7053
|
|
762
|
+
scitex/plt/utils/metadata/_csv_hash.py,sha256=cpfTZ3lL09hukZuO1h94FjkmaDfU8ihLa0S7aQklCFs,3303
|
|
763
|
+
scitex/plt/utils/metadata/_csv_verification.py,sha256=ea6cm-OUwQFVALj0qyGCtfwDgBddAduzCKvZWlQtZcs,2939
|
|
764
|
+
scitex/plt/utils/metadata/_data_linkage.py,sha256=DYjeZzWF_eVfBISqyoLXSHxqZkyImcyMhpp3HPBZzzA,9376
|
|
765
|
+
scitex/plt/utils/metadata/_dimensions.py,sha256=RJwaW08l0rguofjj2733A1fRpXcyzLYQea0lyOlj60k,7236
|
|
766
|
+
scitex/plt/utils/metadata/_figure_metadata.py,sha256=iq0fcE7m1IDJzkz5DeybDjpitwjzdY8IAU85-Vtc7iA,1384
|
|
767
|
+
scitex/plt/utils/metadata/_image_text_artists.py,sha256=MDg0U-sgi-v3XyTCWpp1HItduYpa6gtuBJjeI8HmUIU,4386
|
|
768
|
+
scitex/plt/utils/metadata/_label_parsing.py,sha256=Yz5wrlb4j8xVoO9jTIVXr4gidy3WJwMCm3fb79ApDDc,2158
|
|
769
|
+
scitex/plt/utils/metadata/_legend_extraction.py,sha256=PUf5pZw2kp8e9IWGM3IIQYANNTTuLXOaoSBQz1fsdkg,4061
|
|
770
|
+
scitex/plt/utils/metadata/_line_artists.py,sha256=kR-BjfvAqFHZp6bRiscBMAfpXd8SxflY8CFL_nPsBdk,11543
|
|
771
|
+
scitex/plt/utils/metadata/_line_semantic_handling.py,sha256=Uj6LhgVUqWxF6XiFGNwmhutYtTP_iOVTOjHksUwRlvI,6068
|
|
772
|
+
scitex/plt/utils/metadata/_patch_artists.py,sha256=ozb6PfQiuq9zLPKtBhe36RCqZO2CzS5LnM9rf3bhPHY,6093
|
|
773
|
+
scitex/plt/utils/metadata/_plot_content.py,sha256=efId51lAutng6YD3LfKqnYSh2j21gAipRNcrwzdAS0s,800
|
|
774
|
+
scitex/plt/utils/metadata/_plot_type_detection.py,sha256=wiguRNT5aDsMwN4qB_1YuiNMdnqUUl15AK5QfqJM4w4,6980
|
|
775
|
+
scitex/plt/utils/metadata/_precision.py,sha256=VtEb1uGaXEVYC9GJSJCAVgoh4KE2Mdix-U2jpI0KM44,4183
|
|
776
|
+
scitex/plt/utils/metadata/_precision_config.py,sha256=MqBz6myurm7N5KY14Hy9_qWdKi-RmohEIkPIXeQb3Qw,1974
|
|
777
|
+
scitex/plt/utils/metadata/_precision_sections.py,sha256=W4V-6eqRvzV4KrdeTppPw9A3I8MIKQJr51Ad10jWHMs,7932
|
|
778
|
+
scitex/plt/utils/metadata/_recipe_extraction.py,sha256=IaMti7m4mCTTHf6QA23YoGjy3y9EAk7_5H3dK04aRcM,8601
|
|
779
|
+
scitex/plt/utils/metadata/_style_parsing.py,sha256=af2RG8nDCjQZrUZvzDLKCVXIZIsKcFSJonoPQn0GVvo,6172
|
|
695
780
|
scitex/repro/README_RandomStateManager.md,sha256=y-1oMoqEIKAD2ck3ktjj4hOiNq4JUMQqSgclNIrmYU8,5574
|
|
696
|
-
scitex/repro/_RandomStateManager.py,sha256=
|
|
697
|
-
scitex/repro/__init__.py,sha256
|
|
698
|
-
scitex/repro/_gen_ID.py,sha256=
|
|
699
|
-
scitex/repro/_gen_timestamp.py,sha256=
|
|
700
|
-
scitex/repro/_hash_array.py,sha256=
|
|
701
|
-
scitex/reproduce/__init__.py,sha256=
|
|
781
|
+
scitex/repro/_RandomStateManager.py,sha256=95VilUZG6ruiYAoMgqi4NxcjaN0gYfPPzf3UiuVkmbk,20004
|
|
782
|
+
scitex/repro/__init__.py,sha256=-kdTiZey1tKlxWmFBgGaBj863JBHdoRYLDO7fhAtnyM,1532
|
|
783
|
+
scitex/repro/_gen_ID.py,sha256=r2uTTmwnXBTD0rX9ANnC3akc51SjHZL_cgejArvAJEY,3622
|
|
784
|
+
scitex/repro/_gen_timestamp.py,sha256=pN86FcnflgWw_yIm6DvBQ9avhMTXk4qNtVm3xTcP-kQ,2769
|
|
785
|
+
scitex/repro/_hash_array.py,sha256=iSeutO2kpXogmM5AA7cn46A6YAuzoDxDigAPPRFcqRU,3591
|
|
786
|
+
scitex/reproduce/__init__.py,sha256=vvWspUQW0kL8ThY2r5eNX_YVj1WhqEcf7UEVg8zaEgA,727
|
|
702
787
|
scitex/resource/README.md,sha256=UO1_5-fXqCQkSd1VNmh1UKE_VUzaMLicQRbqrM7yQyg,2960
|
|
703
788
|
scitex/resource/__init__.py,sha256=jXkzdOHMxExCZdvmNAdueB2U371u6GEtqAOKEZnEyrU,306
|
|
704
|
-
scitex/resource/_get_processor_usages.py,sha256=
|
|
789
|
+
scitex/resource/_get_processor_usages.py,sha256=PuPBYJY04hv4q7pt8aS22YkucR_m69MQHzI6Jue-v1E,7906
|
|
705
790
|
scitex/resource/_get_specs.py,sha256=g9oiniFlA6CfUizgs8VLi7f4kjidaPY6Qh6UjrAijUk,9118
|
|
706
|
-
scitex/resource/_log_processor_usages.py,sha256=
|
|
791
|
+
scitex/resource/_log_processor_usages.py,sha256=gqQzsqwctORsXSTsaCHQ1V8mOepvKijRXfVQ3UPHv4Q,5106
|
|
707
792
|
scitex/resource/limit_ram.py,sha256=-7oTogJbgVUmGUKvIVj-VdTke9CclZg5UrB7NHBMm1k,884
|
|
708
793
|
scitex/resource/_get_specs/info.yaml,sha256=EHyU3KzVZzonEWmfnWwfY7d_2nNjfQNMNAzYMGR-Ldw,3244
|
|
709
794
|
scitex/resource/_get_specs/specs.yaml,sha256=ynUaIe_ntbDYZxJ1zNlEk5rC-BIIKbuB7bopJawLzvU,3450
|
|
710
795
|
scitex/resource/_utils/__init__.py,sha256=96h3EiHpNFvqKiWoIlR5_uB7KYceKjyLRlbryUHTtkk,1132
|
|
711
796
|
scitex/resource/_utils/_get_env_info.py,sha256=Yn9CkocGzWq503U5VKdExxT_ZBNqfjepi9A9c2DXJSg,15626
|
|
712
|
-
scitex/rng/__init__.py,sha256=
|
|
797
|
+
scitex/rng/__init__.py,sha256=2F8UUzGrn2vFfirLTU0QCKAaoQp663ZtwjtvyHird0g,824
|
|
798
|
+
scitex/schema/README.md,sha256=j87jhsw33Yn-UbSjo0xJRdfbtYnH7V9kv975Lsy4x3E,5092
|
|
799
|
+
scitex/schema/__init__.py,sha256=WguH8-4rac-_BDPTPUtgscTiUfoGpBBD0nBLTSSc6HQ,3778
|
|
800
|
+
scitex/schema/_canvas.py,sha256=OPq_NxSIyCt_yQ_2hX0rDl4KiWFsb3Ig1qfc9DPHUJ8,13151
|
|
801
|
+
scitex/schema/_stats.py,sha256=5LrdKXk55dFUf57iaNNg7dK3Hr0WtV5QEfPopu8SStA,23103
|
|
802
|
+
scitex/schema/_validation.py,sha256=QQ31oAdXcdOoTmFTp0RcYLbgQQfuakvyb80ULClaVRQ,16509
|
|
713
803
|
scitex/scholar/.gitignore,sha256=oYROO1p7Mia9ftRowaRu3BVNm7jdMY9O4Ro1RSgSC80,381
|
|
714
804
|
scitex/scholar/CLAUDE.md,sha256=LhHw4fFEfSJNPqDTgGpE38s_ohhjY2kEXTpJOj6SPSo,14947
|
|
715
805
|
scitex/scholar/README.md,sha256=AbE7t0qIKQY11ZSGkeQXNP_qA088q-2t-oQ3W5bDvxI,3799
|
|
716
806
|
scitex/scholar/TODO.md,sha256=8huuRQf6c0yumKxPUn5wVzYqYA2sloCUh8JdFyilAXo,5846
|
|
717
|
-
scitex/scholar/__init__.py,sha256=
|
|
718
|
-
scitex/scholar/__main__.py,sha256=
|
|
719
|
-
scitex/scholar/.legacy/Scholar.py,sha256=
|
|
720
|
-
scitex/scholar/.legacy/_Scholar.py,sha256=
|
|
721
|
-
scitex/scholar/.legacy/_ScholarAPI.py,sha256=
|
|
722
|
-
scitex/scholar/.legacy/_tmp/search_engine/_BaseSearchEngine.py,sha256=
|
|
723
|
-
scitex/scholar/.legacy/_tmp/search_engine/_UnifiedSearcher.py,sha256=
|
|
724
|
-
scitex/scholar/.legacy/_tmp/search_engine/__init__.py,sha256=
|
|
725
|
-
scitex/scholar/.legacy/_tmp/search_engine/local/_LocalSearchEngine.py,sha256=
|
|
726
|
-
scitex/scholar/.legacy/_tmp/search_engine/local/_VectorSearchEngine.py,sha256=
|
|
727
|
-
scitex/scholar/.legacy/_tmp/search_engine/web/_ArxivSearchEngine.py,sha256=
|
|
728
|
-
scitex/scholar/.legacy/_tmp/search_engine/web/_CrossRefSearchEngine.py,sha256=
|
|
729
|
-
scitex/scholar/.legacy/_tmp/search_engine/web/_GoogleScholarSearchEngine.py,sha256=
|
|
730
|
-
scitex/scholar/.legacy/_tmp/search_engine/web/_PubMedSearchEngine.py,sha256=
|
|
731
|
-
scitex/scholar/.legacy/_tmp/search_engine/web/_SemanticScholarSearchEngine.py,sha256=
|
|
807
|
+
scitex/scholar/__init__.py,sha256=uN5lqVzAU8_NTa_RLPRUjMWCoFYIU3bcMhcxr4tJ6nk,9188
|
|
808
|
+
scitex/scholar/__main__.py,sha256=Vfu0NADNdl4cJmK15ashqO0fsMXIXcztBY_HHWWnm4w,9010
|
|
809
|
+
scitex/scholar/.legacy/Scholar.py,sha256=xYx0oORqe9__tyFxqJQ8OuH5jWhnThtg2SrCVZ18zYM,11734
|
|
810
|
+
scitex/scholar/.legacy/_Scholar.py,sha256=y8mSJgcNei77vbAAinJlZaU4If6irZ_SXU7dQ32nsu8,63386
|
|
811
|
+
scitex/scholar/.legacy/_ScholarAPI.py,sha256=BTqNoIpJVg2P8IxoNHPYrpkSW8tdY719HSdHKaFYvgk,9325
|
|
812
|
+
scitex/scholar/.legacy/_tmp/search_engine/_BaseSearchEngine.py,sha256=P64s_NwvrMipRXaVwMcXRW80F6zG0r8fjU4syqQUII0,2861
|
|
813
|
+
scitex/scholar/.legacy/_tmp/search_engine/_UnifiedSearcher.py,sha256=4zrJaDLkKO8-GjS-WWUbTOV8UMRpsMXwJh1BpXaqUJU,11737
|
|
814
|
+
scitex/scholar/.legacy/_tmp/search_engine/__init__.py,sha256=CWzCYhKFY4Ky7mLvWE0LYRclkhROYEr6yRQNch39QZk,1555
|
|
815
|
+
scitex/scholar/.legacy/_tmp/search_engine/local/_LocalSearchEngine.py,sha256=8BIJbWxlwZoM9zvUw--2ucCvY5Is-ISFuTsLS0Hw5-E,4716
|
|
816
|
+
scitex/scholar/.legacy/_tmp/search_engine/local/_VectorSearchEngine.py,sha256=LOC3vgnx381QSQCjXkvT47-CIHeuT7r0b_nQZE_ELyQ,4060
|
|
817
|
+
scitex/scholar/.legacy/_tmp/search_engine/web/_ArxivSearchEngine.py,sha256=gMFnrsueJamKLlb3TuPa3Xba11JevdMj-CF13xcctAQ,9884
|
|
818
|
+
scitex/scholar/.legacy/_tmp/search_engine/web/_CrossRefSearchEngine.py,sha256=MI3X_c1CrjXoJUw-3YF7XeMdTm3ZK7QAobt4sMZ18-s,11381
|
|
819
|
+
scitex/scholar/.legacy/_tmp/search_engine/web/_GoogleScholarSearchEngine.py,sha256=VrlSOgOGyHMUzY_ln2yQVZk-VRCHGVi0ANPjRP0zLhQ,7709
|
|
820
|
+
scitex/scholar/.legacy/_tmp/search_engine/web/_PubMedSearchEngine.py,sha256=nKRBmqN1KDgSBY88hWen1evcp5U-4eJw5YLhLdViZnY,12872
|
|
821
|
+
scitex/scholar/.legacy/_tmp/search_engine/web/_SemanticScholarSearchEngine.py,sha256=D2L0tctGxd1iN-B040ugn7IWdM-4rcs2ExeWuVj308Y,12730
|
|
732
822
|
scitex/scholar/.legacy/database/README.md,sha256=4mJfCr-O5GeM4zwEDUmDRPPfSastnau76ZsjxFEg2_A,2712
|
|
733
823
|
scitex/scholar/.legacy/database/README_CONCURRENT_ACCESS.md,sha256=1zBYuzVFoTf88togdywT2cSNePL3cIPudo3yLRXs0TI,3131
|
|
734
|
-
scitex/scholar/.legacy/database/_DatabaseEntry.py,sha256=
|
|
735
|
-
scitex/scholar/.legacy/database/_DatabaseIndex.py,sha256=
|
|
736
|
-
scitex/scholar/.legacy/database/_LibraryManager.py,sha256=
|
|
737
|
-
scitex/scholar/.legacy/database/_PaperDatabase.py,sha256=
|
|
738
|
-
scitex/scholar/.legacy/database/_ScholarDatabaseIntegration.py,sha256=
|
|
739
|
-
scitex/scholar/.legacy/database/_StorageIntegratedDB.py,sha256=
|
|
740
|
-
scitex/scholar/.legacy/database/_ZoteroCompatibleDB.py,sha256=
|
|
741
|
-
scitex/scholar/.legacy/database/__init__.py,sha256=
|
|
742
|
-
scitex/scholar/.legacy/database/manage.py,sha256=
|
|
743
|
-
scitex/scholar/.legacy/lookup/_LookupIndex.py,sha256=
|
|
744
|
-
scitex/scholar/.legacy/lookup/__init__.py,sha256=
|
|
824
|
+
scitex/scholar/.legacy/database/_DatabaseEntry.py,sha256=jq0q5eVnDBYuJkE5pD3IYeU25nrBjLfWQpGhGF1teAw,7607
|
|
825
|
+
scitex/scholar/.legacy/database/_DatabaseIndex.py,sha256=m5BjDPGshDeNL9kaF5VzBV51nUNnnMAW__yAbykjk80,14551
|
|
826
|
+
scitex/scholar/.legacy/database/_LibraryManager.py,sha256=_MhogjhHLgjF5unM4yZmeGNbSfgCwwy5z_U2yn-vHXs,8259
|
|
827
|
+
scitex/scholar/.legacy/database/_PaperDatabase.py,sha256=bay0yCGXoNiDtPt43McKnIoLUJA8GsALlWTnS2vdXms,16896
|
|
828
|
+
scitex/scholar/.legacy/database/_ScholarDatabaseIntegration.py,sha256=JRzYeW3lONEoI_acbapuXh-Y-nlPbuEC7CyzZn-FZNo,13684
|
|
829
|
+
scitex/scholar/.legacy/database/_StorageIntegratedDB.py,sha256=3kgjLTvpOaDNEet3HT7vG7tHTs2JF7AAf2T_loWghpo,20282
|
|
830
|
+
scitex/scholar/.legacy/database/_ZoteroCompatibleDB.py,sha256=EMiJL2v666DTowdsmjnMC4UqX1bNZrsKkCKNVM-PCtI,41498
|
|
831
|
+
scitex/scholar/.legacy/database/__init__.py,sha256=RErwJhJ7ZHoNQRoTuY9BEyKoUN3qtP8tZNZJTWK_P5A,742
|
|
832
|
+
scitex/scholar/.legacy/database/manage.py,sha256=fDV7yb5Qdo9N05liwp-8I-hSSY8LJSPsKj3yloyep0s,8781
|
|
833
|
+
scitex/scholar/.legacy/lookup/_LookupIndex.py,sha256=PzPWyIt6lwj2mJvX7Gz6jXll8jDiiVl20_6JU3B517Q,15486
|
|
834
|
+
scitex/scholar/.legacy/lookup/__init__.py,sha256=NA8RDam9HDmYjhYV3RLVZO-S_ovcSuScBbBuwy3Kx8w,601
|
|
745
835
|
scitex/scholar/.legacy/metadata/README.md,sha256=gJM8enij1K-CSLilbmBsuGbjJIjZeejw2UvMiyVR_p8,901
|
|
746
836
|
scitex/scholar/.legacy/metadata/__init__.py,sha256=BFJA7ZH0TOScMNeAO_DajKSQdDkb3zR_EpVdtSfwHA0,52
|
|
747
|
-
scitex/scholar/.legacy/metadata/query_to_full_meta_json.py,sha256=
|
|
837
|
+
scitex/scholar/.legacy/metadata/query_to_full_meta_json.py,sha256=wm7NOCobrKNiYjNGAZwEA9hkoPanxe77sUtg7Gx7KeI,5808
|
|
748
838
|
scitex/scholar/.legacy/metadata/doi/README.md,sha256=mmRPyKszZupciMfcFHwl3b9PHO-N34lfWfYEhOKP8aE,12384
|
|
749
839
|
scitex/scholar/.legacy/metadata/doi/__init__.py,sha256=D9NhaizOClZlTqwkxqt3UkQoBFfyrxkK1wPo0OYgN80,89
|
|
750
|
-
scitex/scholar/.legacy/metadata/doi/batch/_MetadataHandlerForBatchDOIResolution.py,sha256=
|
|
751
|
-
scitex/scholar/.legacy/metadata/doi/batch/_ProgressManagerForBatchDOIResolution.py,sha256=
|
|
752
|
-
scitex/scholar/.legacy/metadata/doi/batch/_SourceStatsManagerForBatchDOIResolution.py,sha256=
|
|
753
|
-
scitex/scholar/.legacy/metadata/doi/batch/__init__.py,sha256=
|
|
754
|
-
scitex/scholar/.legacy/metadata/doi/resolvers/_BatchDOIResolver.py,sha256=
|
|
755
|
-
scitex/scholar/.legacy/metadata/doi/resolvers/_BibTeXDOIResolver.py,sha256=
|
|
756
|
-
scitex/scholar/.legacy/metadata/doi/resolvers/_DOIResolver.py,sha256=
|
|
757
|
-
scitex/scholar/.legacy/metadata/doi/resolvers/_SingleDOIResolver.py,sha256=
|
|
840
|
+
scitex/scholar/.legacy/metadata/doi/batch/_MetadataHandlerForBatchDOIResolution.py,sha256=hm7MtUeT85vIZ7nlVSfpwAljflKaIdnOPfY3Y1GBq8o,9861
|
|
841
|
+
scitex/scholar/.legacy/metadata/doi/batch/_ProgressManagerForBatchDOIResolution.py,sha256=xtx18J12BQFZBnhB_jbJ7wG41uNTSOz6qp8yzx8I45c,10871
|
|
842
|
+
scitex/scholar/.legacy/metadata/doi/batch/_SourceStatsManagerForBatchDOIResolution.py,sha256=eKY8hOKOiTTO53CLmWFRjcTfyXQbrCiEMM3HB0EZeGg,10622
|
|
843
|
+
scitex/scholar/.legacy/metadata/doi/batch/__init__.py,sha256=iBKVADz3vG9YWdX6o7axh1I43lbzC5XPSQzvQsytGCg,1077
|
|
844
|
+
scitex/scholar/.legacy/metadata/doi/resolvers/_BatchDOIResolver.py,sha256=u5yXFi3-t-sJjrQOgLIyJVhJ6wZMtyxR2Wwjn5iNz94,21798
|
|
845
|
+
scitex/scholar/.legacy/metadata/doi/resolvers/_BibTeXDOIResolver.py,sha256=W5LXI0WYpHR0wZt8X5ASi8gtWzFd4fCI55vjT6QApSc,23455
|
|
846
|
+
scitex/scholar/.legacy/metadata/doi/resolvers/_DOIResolver.py,sha256=2EMPO382ub3DulCbWlu-dge8Q7Y594XXvTXd3ivUZQ0,6349
|
|
847
|
+
scitex/scholar/.legacy/metadata/doi/resolvers/_SingleDOIResolver.py,sha256=p8dCDPyqtK4xt6AaKCitU-eSHHfLZfKpoQr5gBB3XuY,15051
|
|
758
848
|
scitex/scholar/.legacy/metadata/doi/resolvers/__init__.py,sha256=5RXxZo2CM5PeYHXUFzJL5x_QbuwtwriYUDfoutENflU,88
|
|
759
|
-
scitex/scholar/.legacy/metadata/doi/sources/_ArXivSource.py,sha256=
|
|
760
|
-
scitex/scholar/.legacy/metadata/doi/sources/_BaseDOISource.py,sha256=
|
|
761
|
-
scitex/scholar/.legacy/metadata/doi/sources/_CrossRefLocalSource.py,sha256=
|
|
762
|
-
scitex/scholar/.legacy/metadata/doi/sources/_CrossRefSource.py,sha256=
|
|
763
|
-
scitex/scholar/.legacy/metadata/doi/sources/_OpenAlexSource.py,sha256=
|
|
764
|
-
scitex/scholar/.legacy/metadata/doi/sources/_PubMedSource.py,sha256=
|
|
765
|
-
scitex/scholar/.legacy/metadata/doi/sources/_SemanticScholarSource.py,sha256=
|
|
766
|
-
scitex/scholar/.legacy/metadata/doi/sources/_SourceManager.py,sha256=
|
|
767
|
-
scitex/scholar/.legacy/metadata/doi/sources/_SourceResolutionStrategy.py,sha256=
|
|
768
|
-
scitex/scholar/.legacy/metadata/doi/sources/_SourceRotationManager.py,sha256=
|
|
769
|
-
scitex/scholar/.legacy/metadata/doi/sources/_URLDOISource.py,sha256=
|
|
770
|
-
scitex/scholar/.legacy/metadata/doi/sources/_UnifiedSource.py,sha256=
|
|
771
|
-
scitex/scholar/.legacy/metadata/doi/sources/__init__.py,sha256=
|
|
772
|
-
scitex/scholar/.legacy/metadata/doi/sources/.combined-SemanticScholarSource/_SemanticScholarSource.py,sha256=
|
|
773
|
-
scitex/scholar/.legacy/metadata/doi/sources/.combined-SemanticScholarSource/_SemanticScholarSourceEnhanced.py,sha256=
|
|
774
|
-
scitex/scholar/.legacy/metadata/doi/utils/_PubMedConverter.py,sha256=
|
|
775
|
-
scitex/scholar/.legacy/metadata/doi/utils/_RateLimitHandler.py,sha256=
|
|
776
|
-
scitex/scholar/.legacy/metadata/doi/utils/_TextNormalizer.py,sha256=
|
|
777
|
-
scitex/scholar/.legacy/metadata/doi/utils/_URLDOIExtractor.py,sha256=
|
|
778
|
-
scitex/scholar/.legacy/metadata/doi/utils/__init__.py,sha256=
|
|
779
|
-
scitex/scholar/.legacy/metadata/doi/utils/_to_complete_metadata_structure.py,sha256=
|
|
849
|
+
scitex/scholar/.legacy/metadata/doi/sources/_ArXivSource.py,sha256=6eS9DzsTgdShYdvtMNsM9vvEFzXDnKjALSPSHGwc-YA,10716
|
|
850
|
+
scitex/scholar/.legacy/metadata/doi/sources/_BaseDOISource.py,sha256=3NdsrHeSPdAt3l-JIaQ6n1EVOC5LZQ-cj4z8ewO-vTk,12983
|
|
851
|
+
scitex/scholar/.legacy/metadata/doi/sources/_CrossRefLocalSource.py,sha256=vewxlF8Tlu0Uza_eJVGQ5snNO0qyx_uP7KvuKF6fnvA,2512
|
|
852
|
+
scitex/scholar/.legacy/metadata/doi/sources/_CrossRefSource.py,sha256=LeG-NzBgqU4TsuEVHyRtZGuKHLl29DrgMtuwn9CbPRY,8292
|
|
853
|
+
scitex/scholar/.legacy/metadata/doi/sources/_OpenAlexSource.py,sha256=BYW-M3vRVMjUEIhofEpezwzyEpx3FEgLRTDyQ2nui94,11005
|
|
854
|
+
scitex/scholar/.legacy/metadata/doi/sources/_PubMedSource.py,sha256=XCB2_aDDDZAMQTnU5ySvW9sVhGVk7pAUcB91GWABxsw,9611
|
|
855
|
+
scitex/scholar/.legacy/metadata/doi/sources/_SemanticScholarSource.py,sha256=mzMggySz3T_AsreQgEO-2vHM3KDUP57NjiAvZwFRtLQ,11873
|
|
856
|
+
scitex/scholar/.legacy/metadata/doi/sources/_SourceManager.py,sha256=g6QiSX6rLLFtwd4V0p9RtihK_GlwXBSIQvpiLYpm8kQ,10555
|
|
857
|
+
scitex/scholar/.legacy/metadata/doi/sources/_SourceResolutionStrategy.py,sha256=p77ygpkyZ8WX9wUXk8GOECenXSsNnz-OODuMlbO7_t0,22071
|
|
858
|
+
scitex/scholar/.legacy/metadata/doi/sources/_SourceRotationManager.py,sha256=AIDvS-ReBDy7JWLneeJ5rcxfWkPB6y62BQ3U6p8hbUg,20055
|
|
859
|
+
scitex/scholar/.legacy/metadata/doi/sources/_URLDOISource.py,sha256=6a_suHweH1zC19PD5GtBFhL_PtYTSk_GFq2pbIZlc2k,14082
|
|
860
|
+
scitex/scholar/.legacy/metadata/doi/sources/_UnifiedSource.py,sha256=xUYczgviQN_40Zob7OB_1R72R6CPxSpydsThf18ZiPs,14725
|
|
861
|
+
scitex/scholar/.legacy/metadata/doi/sources/__init__.py,sha256=Qg-2hqf45eRkZnzvk_MaUt7CBrKiau-up9oBjlf8s1Q,1015
|
|
862
|
+
scitex/scholar/.legacy/metadata/doi/sources/.combined-SemanticScholarSource/_SemanticScholarSource.py,sha256=RrjgRQ0C5DE_8_5SIxV3wsoiaOCuawwVJc8YGFUHxeI,10146
|
|
863
|
+
scitex/scholar/.legacy/metadata/doi/sources/.combined-SemanticScholarSource/_SemanticScholarSourceEnhanced.py,sha256=XKDMqa85hw6Mxe1EhqrUe6nDtkyDf809dv61zs5XYYQ,7598
|
|
864
|
+
scitex/scholar/.legacy/metadata/doi/utils/_PubMedConverter.py,sha256=OaWsznE66619Gelqdh3daMnl2yJ3O4fvxMfRvuxhnN8,14407
|
|
865
|
+
scitex/scholar/.legacy/metadata/doi/utils/_RateLimitHandler.py,sha256=SkLzm10dWK-rS2qozqWSr7FeeCJGNHDxuNfphajC5zY,25446
|
|
866
|
+
scitex/scholar/.legacy/metadata/doi/utils/_TextNormalizer.py,sha256=SXExJdj6mCGrP2kbB7ALkQ_iUZybT-h7C_y3kz93ZCc,17405
|
|
867
|
+
scitex/scholar/.legacy/metadata/doi/utils/_URLDOIExtractor.py,sha256=3mZ5MmbelIpuIdwNPN7d-VBkRUMJWbySbb4ONv76XNI,8452
|
|
868
|
+
scitex/scholar/.legacy/metadata/doi/utils/__init__.py,sha256=w1lYVXMpatWvBK57PlqUNRPUieSzOPDADXd2vJ7FWmA,1097
|
|
869
|
+
scitex/scholar/.legacy/metadata/doi/utils/_to_complete_metadata_structure.py,sha256=uHIHQJBPVeY70jt6Xw-K2QztUdQNCB6gggtUc0wo7g8,10285
|
|
780
870
|
scitex/scholar/.legacy/metadata/enrichment/README.md,sha256=1E0ABdqLbKqDWB_-nTbV3Wta_76hLEBCXFYIqixw-q4,1591
|
|
781
|
-
scitex/scholar/.legacy/metadata/enrichment/_LibraryEnricher.py,sha256=
|
|
871
|
+
scitex/scholar/.legacy/metadata/enrichment/_LibraryEnricher.py,sha256=C4oAqCcNuL1ZBbHPB1mfUD3cwIlvruFsT-qPFSftWd4,3110
|
|
782
872
|
scitex/scholar/.legacy/metadata/enrichment/__init__.py,sha256=K4KlmZRfrSrGRmtzXd9Xmpyg1JVpvLNio603UlDksM4,83
|
|
783
|
-
scitex/scholar/.legacy/metadata/enrichment/enrichers/_ImpactFactorEnricher.py,sha256=
|
|
784
|
-
scitex/scholar/.legacy/metadata/enrichment/enrichers/_SmartEnricher.py,sha256=
|
|
873
|
+
scitex/scholar/.legacy/metadata/enrichment/enrichers/_ImpactFactorEnricher.py,sha256=SJ84WkBUrS4NRAPiRq-GaQTp0nFOvI5x1N8l4iVYQIo,3607
|
|
874
|
+
scitex/scholar/.legacy/metadata/enrichment/enrichers/_SmartEnricher.py,sha256=pC8OjG6q9MXGAaWCGehQlWQvIg9Djvy_IGA1a28gTp8,6162
|
|
785
875
|
scitex/scholar/.legacy/metadata/enrichment/enrichers/__init__.py,sha256=lp5vfjYQVqwQEYZT2rcjGAOoZdHCLv9ZnNt7cfamGsc,151
|
|
786
|
-
scitex/scholar/.legacy/metadata/enrichment/sources/_UnifiedMetadataSource.py,sha256=
|
|
876
|
+
scitex/scholar/.legacy/metadata/enrichment/sources/_UnifiedMetadataSource.py,sha256=w-YoO8R2CaSDqSsxtSeLeLc2r5Ay1K21b2c5SULdC5E,4769
|
|
787
877
|
scitex/scholar/.legacy/metadata/enrichment/sources/__init__.py,sha256=_FFXQbN0sOnVZlcOGpnnG9muLgVsNGu-sNhD1XYmzMU,95
|
|
788
878
|
scitex/scholar/.legacy/metadata/urls/README.md,sha256=WPiyjy4RicpW_tHjfFFkWEuPZOfC2mLrm9fT7T123MI,3998
|
|
789
|
-
scitex/scholar/.legacy/metadata/urls/_URLMetadataHandler.py,sha256=
|
|
790
|
-
scitex/scholar/.legacy/metadata/urls/_ZoteroTranslatorRunner.py,sha256=
|
|
791
|
-
scitex/scholar/.legacy/metadata/urls/__init__.py,sha256=
|
|
792
|
-
scitex/scholar/.legacy/metadata/urls/_finder.py,sha256=
|
|
793
|
-
scitex/scholar/.legacy/metadata/urls/_handler.py,sha256=
|
|
794
|
-
scitex/scholar/.legacy/metadata/urls/_resolver.py,sha256=
|
|
879
|
+
scitex/scholar/.legacy/metadata/urls/_URLMetadataHandler.py,sha256=zcjLM9V-K_00RQHuH3A4IEAoP0yWw0_i8w1StAmXJXk,12703
|
|
880
|
+
scitex/scholar/.legacy/metadata/urls/_ZoteroTranslatorRunner.py,sha256=JAu9F1-R7jKyUmP7MCUhBaxB-B2UjdI4u5iELog3JN0,11526
|
|
881
|
+
scitex/scholar/.legacy/metadata/urls/__init__.py,sha256=0qcvsni6EiRobZZHGX6lsjGSuwGkxapWc6UhIZxYjd0,987
|
|
882
|
+
scitex/scholar/.legacy/metadata/urls/_finder.py,sha256=Y0YFibfQAM_0RsnM0vjFzC2sTLrYZQz0JYjUazXi2MM,10157
|
|
883
|
+
scitex/scholar/.legacy/metadata/urls/_handler.py,sha256=Em_F8VgXGwJdCbSPV27PyiMZcH01islmeiNn43d9QTY,10150
|
|
884
|
+
scitex/scholar/.legacy/metadata/urls/_resolver.py,sha256=8TY4MtADtMOgbdeNIhiq8RjCt1UKzdBihX3zjKPWtlw,8074
|
|
795
885
|
scitex/scholar/.legacy/metadata/urls/.tmp/open_url/KNOWN_RESOLVERS.py,sha256=n37aHjOq6YrtgR0DGN0iznKy8EWCjzgBODVm7pINc-w,12926
|
|
796
886
|
scitex/scholar/.legacy/metadata/urls/.tmp/open_url/README.md,sha256=4CyiK7Zbdd23WjsYUU7J7FLPmhxwxA1PWc7enL9dGug,6836
|
|
797
887
|
scitex/scholar/.legacy/metadata/urls/.tmp/open_url/_DOIToURLResolver.py,sha256=C0cURB6BO78udjjsucqwM_rTxDy5XTaqyuxLBCNbyeU,23632
|
|
@@ -1555,71 +1645,71 @@ scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/pull-request-check/c
|
|
|
1555
1645
|
scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/pull-request-check/selenium-test.js,sha256=8vD34gl0KfsECI_n_c6_t04iYD-op0E1NZH3EPM017E,4973
|
|
1556
1646
|
scitex/scholar/.legacy/metadata/urls/zotero_translators/.ci/pull-request-check/translator-server.js,sha256=vpVNmhjLAh3pqgbAE54UmYXgPBAATJK1hqPeYeZ4ros,1860
|
|
1557
1647
|
scitex/scholar/.legacy/search/README.md,sha256=brbUN7YLEtyeDzHZ8bnpUWucMEOMiY8i44zliV5mja0,4571
|
|
1558
|
-
scitex/scholar/.legacy/search/_Embedder.py,sha256=
|
|
1559
|
-
scitex/scholar/.legacy/search/_SemanticSearch.py,sha256=
|
|
1560
|
-
scitex/scholar/.legacy/search/_SemanticSearchEngine.py,sha256=
|
|
1561
|
-
scitex/scholar/.legacy/search/_UnifiedSearcher.py,sha256=
|
|
1562
|
-
scitex/scholar/.legacy/search/_VectorDatabase.py,sha256=
|
|
1563
|
-
scitex/scholar/.legacy/search/__init__.py,sha256=
|
|
1564
|
-
scitex/scholar/.legacy/storage/_EnhancedStorageManager.py,sha256=
|
|
1565
|
-
scitex/scholar/.legacy/storage/__init__.py,sha256=
|
|
1648
|
+
scitex/scholar/.legacy/search/_Embedder.py,sha256=vtOgGjhoYG4t7i_8M7iLSmGv-F_42ARWt-iYuNfxIYc,10716
|
|
1649
|
+
scitex/scholar/.legacy/search/_SemanticSearch.py,sha256=0Lp1TRTKlP1t_TGiwfxfmA5yAMORnpLveORtk4JqUk4,8827
|
|
1650
|
+
scitex/scholar/.legacy/search/_SemanticSearchEngine.py,sha256=KlasNmCmViQc_rUHLbuFL_ZVhg0RsZ_8GGzNDRj-Y10,14704
|
|
1651
|
+
scitex/scholar/.legacy/search/_UnifiedSearcher.py,sha256=AwMgW8afknT_L_zf910pRZJWTwG54GegtIsKS3Rzxho,48760
|
|
1652
|
+
scitex/scholar/.legacy/search/_VectorDatabase.py,sha256=sTI_bhMW57vBXTdv9ZPmFn5U2gfA_ud-uZKDehLh4xM,14035
|
|
1653
|
+
scitex/scholar/.legacy/search/__init__.py,sha256=ZOglXb_TXUInB3K5xkzRZB-xF0qVnz8p7GANI4HCn08,652
|
|
1654
|
+
scitex/scholar/.legacy/storage/_EnhancedStorageManager.py,sha256=qbnRQWy3LZVsD_Cmam30usb5BKNQqR2gFXvsFIHHM_s,21458
|
|
1655
|
+
scitex/scholar/.legacy/storage/__init__.py,sha256=mUQn7rFjhKBLl56V090Yn8xIl0bPCIBFw1Rw9gX0IDc,517
|
|
1566
1656
|
scitex/scholar/auth/README.md,sha256=YYLVVHAgHFjoYXjWJ2SV_3toOJPSnWOs6-EMKbPIu9U,3373
|
|
1567
|
-
scitex/scholar/auth/ScholarAuthManager.py,sha256=
|
|
1657
|
+
scitex/scholar/auth/ScholarAuthManager.py,sha256=44_c3ZaQC_F1uqr9tvqvXNA77RwVKSJzOdehbOcOW7E,10569
|
|
1568
1658
|
scitex/scholar/auth/__init__.py,sha256=7Gw8C9yb7ei_a6FCldxcr1VWwciztQq3qQATE7XfNHk,262
|
|
1569
|
-
scitex/scholar/auth/core/AuthenticationGateway.py,sha256=
|
|
1570
|
-
scitex/scholar/auth/core/BrowserAuthenticator.py,sha256=
|
|
1571
|
-
scitex/scholar/auth/core/StrategyResolver.py,sha256=
|
|
1572
|
-
scitex/scholar/auth/core/__init__.py,sha256=
|
|
1573
|
-
scitex/scholar/auth/gateway/_OpenURLLinkFinder.py,sha256=
|
|
1574
|
-
scitex/scholar/auth/gateway/_OpenURLResolver.py,sha256=
|
|
1659
|
+
scitex/scholar/auth/core/AuthenticationGateway.py,sha256=lBiGAGOc54GizpPJi5RyPVACk1WbY69G8hQO31lAq3s,16817
|
|
1660
|
+
scitex/scholar/auth/core/BrowserAuthenticator.py,sha256=Fv4O7h7bqqYqgk93MItotoHZVQfoJ90byskNkO_-0F4,13904
|
|
1661
|
+
scitex/scholar/auth/core/StrategyResolver.py,sha256=KiRee-4PplnUIddXyBX5xpolU-ngSVzv3_q2gZwTqFc,10774
|
|
1662
|
+
scitex/scholar/auth/core/__init__.py,sha256=72-1oBsY-0suyaHQL1E1kD_BuVEIbj8mZTVUZZQZ-7o,477
|
|
1663
|
+
scitex/scholar/auth/gateway/_OpenURLLinkFinder.py,sha256=u_dZbQytkSp3KgEHwmfbw2Jg8ce7oog-q9JclPJ4pQo,3954
|
|
1664
|
+
scitex/scholar/auth/gateway/_OpenURLResolver.py,sha256=ThgCtrEhfW55_OfmP9yHlbwiNckUB4j43V0sU3uYybw,7482
|
|
1575
1665
|
scitex/scholar/auth/gateway/__init__.py,sha256=tOfsLYN4oUTvbqAIJF6ajrCWy1WbOnlkYYjD1NIjep8,1135
|
|
1576
|
-
scitex/scholar/auth/gateway/_resolve_functions.py,sha256=
|
|
1577
|
-
scitex/scholar/auth/providers/BaseAuthenticator.py,sha256=
|
|
1578
|
-
scitex/scholar/auth/providers/EZProxyAuthenticator.py,sha256=
|
|
1579
|
-
scitex/scholar/auth/providers/OpenAthensAuthenticator.py,sha256=
|
|
1580
|
-
scitex/scholar/auth/providers/ShibbolethAuthenticator.py,sha256=
|
|
1666
|
+
scitex/scholar/auth/gateway/_resolve_functions.py,sha256=ufG2EV5tAcgNgqtxyM_NOqpdJJYv6e8N0YgmBxgAZuI,2946
|
|
1667
|
+
scitex/scholar/auth/providers/BaseAuthenticator.py,sha256=xUM1wVTJ4aCFfBlrqEcWiuBfSzURa-qobXMUwaScaXM,4823
|
|
1668
|
+
scitex/scholar/auth/providers/EZProxyAuthenticator.py,sha256=pIWQfr-azPZ_IVBJGDT_tFCeirAW4vm85KUij2LMWEI,17569
|
|
1669
|
+
scitex/scholar/auth/providers/OpenAthensAuthenticator.py,sha256=NpTci__h9ZNEy2vkShDsAgBJ0ZNOK0QaoK_RiAycM7Y,22139
|
|
1670
|
+
scitex/scholar/auth/providers/ShibbolethAuthenticator.py,sha256=17GWcTNJ1-yCHyAeUT9qCqTmQUdCXq7ag6LZJveIFxo,25273
|
|
1581
1671
|
scitex/scholar/auth/providers/__init__.py,sha256=BIWY_YuHgyqzk4m0t0yv-IkpH5AmU2sNTRG3UZku7nw,525
|
|
1582
|
-
scitex/scholar/auth/session/AuthCacheManager.py,sha256=
|
|
1583
|
-
scitex/scholar/auth/session/SessionManager.py,sha256=
|
|
1672
|
+
scitex/scholar/auth/session/AuthCacheManager.py,sha256=dt0_e-u48vqTxzyug_GDZrenmgiIMwddm0iwxrnlc68,6345
|
|
1673
|
+
scitex/scholar/auth/session/SessionManager.py,sha256=qO9jD-OFR6vlS9j7SJOi7FoIC6GGasHlJRLaGre4PcE,5284
|
|
1584
1674
|
scitex/scholar/auth/session/__init__.py,sha256=a7WvWG6slelN58QOkl3v1H6b3BHomLIFgIZ8dq1VG6Q,197
|
|
1585
|
-
scitex/scholar/auth/sso/BaseSSOAutomator.py,sha256=
|
|
1586
|
-
scitex/scholar/auth/sso/OpenAthensSSOAutomator.py,sha256=
|
|
1675
|
+
scitex/scholar/auth/sso/BaseSSOAutomator.py,sha256=ufKTb5SSbXKtK70GysA5KNKdDSRvk4JcPkhk7wxFvGo,12044
|
|
1676
|
+
scitex/scholar/auth/sso/OpenAthensSSOAutomator.py,sha256=vSi5n5bcn-sqVagJtIjbbjvyDA7lRPCMj2jaxtxTdOc,12869
|
|
1587
1677
|
scitex/scholar/auth/sso/README.md,sha256=zEdqWhXA-PPMQ2rzYd70LR1q9sttFociXQ4DSzGH-HE,6657
|
|
1588
|
-
scitex/scholar/auth/sso/SSOAutomator.py,sha256=
|
|
1589
|
-
scitex/scholar/auth/sso/UniversityOfMelbourneSSOAutomator.py,sha256=
|
|
1678
|
+
scitex/scholar/auth/sso/SSOAutomator.py,sha256=Gd1XnUyv4MeSNUowTqXIarMNgE26n4x9KzBrxuGyDLc,5699
|
|
1679
|
+
scitex/scholar/auth/sso/UniversityOfMelbourneSSOAutomator.py,sha256=VaplcMTshTL7vOp3O-oVgjmOBXr4LyI8ls-YwvPhmxk,14088
|
|
1590
1680
|
scitex/scholar/auth/sso/__init__.py,sha256=BnK_5Pmi3ghyINYOrWZq1jZKZOB8qjoaqkv8n5f96yE,394
|
|
1591
1681
|
scitex/scholar/browser/README.md,sha256=VNJOMuFKA_cjHsh6JJvU1TIOfk1nhn8qQZSdOJWQcI0,1525
|
|
1592
|
-
scitex/scholar/browser/ScholarBrowserManager.py,sha256
|
|
1593
|
-
scitex/scholar/browser/__init__.py,sha256=
|
|
1682
|
+
scitex/scholar/browser/ScholarBrowserManager.py,sha256=-npJkRbAlSYTYj6tkgV5xtAoZplzvZLAoy2pd6OXOBI,25738
|
|
1683
|
+
scitex/scholar/browser/__init__.py,sha256=1nx857T6EqtEFT8i6G174VEgXwMNa2--zlKENJPy6sc,986
|
|
1594
1684
|
scitex/scholar/browser/utils/README.md,sha256=d7Rz1srxf8AeCqcexHRDkF_9uq9dentjq2Sa24d6fgE,2967
|
|
1595
1685
|
scitex/scholar/browser/utils/__init__.py,sha256=l_1HnmY672NacKZgvc94uECv3d_GPztIpyFRg9fQdIY,385
|
|
1596
|
-
scitex/scholar/browser/utils/click_and_wait.py,sha256=
|
|
1597
|
-
scitex/scholar/browser/utils/close_unwanted_pages.py,sha256=
|
|
1598
|
-
scitex/scholar/browser/utils/wait_redirects.py,sha256=
|
|
1686
|
+
scitex/scholar/browser/utils/click_and_wait.py,sha256=7v8IvQ2RQ4Wc9h0KtyxN81B7OVKueZ6kzhshL6U-1sE,6228
|
|
1687
|
+
scitex/scholar/browser/utils/close_unwanted_pages.py,sha256=zZRDfffoIl0-Fl45utPeQRj0zM5TgHKvYSUdw9yGOAI,4543
|
|
1688
|
+
scitex/scholar/browser/utils/wait_redirects.py,sha256=rbfNJ3XsK6Z957kdpKWZuDCiHAWg36ZPEq9pcUnyYGg,26223
|
|
1599
1689
|
scitex/scholar/citation_graph/README.md,sha256=CGEU_W15eLfu3iV33cQT3jwSHmagA3UmSYI5vAaDW2A,3316
|
|
1600
1690
|
scitex/scholar/citation_graph/__init__.py,sha256=dmA79jVRsVlghbl2SlXS-i2FS-x1QJknCZZDM6Kidog,831
|
|
1601
|
-
scitex/scholar/citation_graph/builder.py,sha256=
|
|
1602
|
-
scitex/scholar/citation_graph/database.py,sha256=
|
|
1603
|
-
scitex/scholar/citation_graph/example.py,sha256=
|
|
1691
|
+
scitex/scholar/citation_graph/builder.py,sha256=FrydbgEvYpuVFGPLpYMtbGnaf36XgoTITfxHoEde6r8,6571
|
|
1692
|
+
scitex/scholar/citation_graph/database.py,sha256=EnndcyHX6mqOytklWOQrSwUQpgCRJMwKrM5jPRRjLsQ,6986
|
|
1693
|
+
scitex/scholar/citation_graph/example.py,sha256=UqmYTwc9Cdk-ZshA_TnoRla1wBNseigfhvokWD2leDw,2819
|
|
1604
1694
|
scitex/scholar/citation_graph/models.py,sha256=qz2KgTq85-7QqzdjzTnk6Vho7bclQemxC6SMWzHgQww,2158
|
|
1605
1695
|
scitex/scholar/cli/README.md,sha256=Qp9UBx4XHFwIhn61rq4pwXxmVwMNyAPHruSi8DowkiM,10946
|
|
1606
1696
|
scitex/scholar/cli/_CentralArgumentParser.py,sha256=S1OfmD7-BO5h1NAa-keFZxZ7swZza9ga0z1KB2Oky-I,4975
|
|
1607
1697
|
scitex/scholar/cli/_argument_groups.py,sha256=8C-8UkIET5fxd7TQx6DvZLTmzHNDubGhBqk0jvXSw6E,6457
|
|
1608
1698
|
scitex/scholar/cli/_doi_operations.py,sha256=-2d2CNwxw6JmRxHHArH-DtSy6vcOlyXXynmL7rmhIzU,1660
|
|
1609
|
-
scitex/scholar/cli/_url_utils.py,sha256=
|
|
1610
|
-
scitex/scholar/cli/chrome.py,sha256=
|
|
1611
|
-
scitex/scholar/cli/download_pdf.py,sha256=
|
|
1612
|
-
scitex/scholar/cli/open_browser.py,sha256=
|
|
1613
|
-
scitex/scholar/cli/open_browser_auto.py,sha256=
|
|
1614
|
-
scitex/scholar/cli/open_browser_monitored.py,sha256=
|
|
1699
|
+
scitex/scholar/cli/_url_utils.py,sha256=OTXv7itQTjun3h-4JidcaxFk1jpZeQZC1RAq0TS0hjI,5793
|
|
1700
|
+
scitex/scholar/cli/chrome.py,sha256=zSaBeo2WujFokBw3yr3sYtJcAxW68kuVPKHbgv90prk,2710
|
|
1701
|
+
scitex/scholar/cli/download_pdf.py,sha256=YYoWElbhl5PfrBt5Ua5zhMbAGnVbsJ_ICyIFijSDGhU,8117
|
|
1702
|
+
scitex/scholar/cli/open_browser.py,sha256=g4oWG4WZ3qSCcsSXz11RDfVTX8nRK27E7I8otauHRJs,9463
|
|
1703
|
+
scitex/scholar/cli/open_browser_auto.py,sha256=TP08wx-u7Gsp10G_BR1PMjndD10oygklTc8Yo3rCKyk,12428
|
|
1704
|
+
scitex/scholar/cli/open_browser_monitored.py,sha256=gSVFQ-trUcsiFFRsuWg7ocRJcj5UW0q5jve4FaZxIMM,13389
|
|
1615
1705
|
scitex/scholar/cli/handlers/__init__.py,sha256=qzvl7HXnv_VjRQPY0aODRo7TXFH9ruxYRdQNNhN9eOE,566
|
|
1616
|
-
scitex/scholar/cli/handlers/bibtex_handler.py,sha256=
|
|
1617
|
-
scitex/scholar/cli/handlers/doi_handler.py,sha256=
|
|
1618
|
-
scitex/scholar/cli/handlers/project_handler.py,sha256=
|
|
1706
|
+
scitex/scholar/cli/handlers/bibtex_handler.py,sha256=zjgWLMbaroiVqMMLDPCEvvB109eylobP2CIr7acj6BI,6459
|
|
1707
|
+
scitex/scholar/cli/handlers/doi_handler.py,sha256=dFVMnKav7EWAIda70Vc7z8BWRLxElYIORxq3snMN1U0,1745
|
|
1708
|
+
scitex/scholar/cli/handlers/project_handler.py,sha256=Egv6CfSgXmpR2LJQ9GMrNmjgId5PtXqhbhKSHXgDZjE,9882
|
|
1619
1709
|
scitex/scholar/config/PublisherRules.py,sha256=wumxQXIaiFqG5gdSzd1_7bPytXZu2-WBpHZas4koHts,4570
|
|
1620
1710
|
scitex/scholar/config/README.md,sha256=318vSWix8XiZCNSjahq6Cswww7ZmHPKB3eYi54XyZfM,880
|
|
1621
|
-
scitex/scholar/config/ScholarConfig.py,sha256=
|
|
1622
|
-
scitex/scholar/config/__init__.py,sha256=
|
|
1711
|
+
scitex/scholar/config/ScholarConfig.py,sha256=rASLNpO2f7ELACGWEcEs96aC_HUczXJuSFzCuxLlP-s,5177
|
|
1712
|
+
scitex/scholar/config/__init__.py,sha256=YMIxrj09DczUL4b_nhV4cJl32ueitove8EcOEfinVeU,500
|
|
1623
1713
|
scitex/scholar/config/default.yaml,sha256=DLO0pzCn_xFKr08rqOEFndQh_xs-Qkezt9RAENzvi-k,18693
|
|
1624
1714
|
scitex/scholar/config/_categories/README.md,sha256=swb9Y-fSDK5IBst3bF96xH_syrRWpv7N8jz7gYQCyeQ,4806
|
|
1625
1715
|
scitex/scholar/config/_categories/api_keys.yaml,sha256=wo2fAxXqQYU6JLkAf4VxvcIiJPIc1qOjx2LMp2hK-k8,739
|
|
@@ -1634,16 +1724,16 @@ scitex/scholar/config/_categories/publishers_pdf_rules.yaml,sha256=kc90a9eHLslMb
|
|
|
1634
1724
|
scitex/scholar/config/_categories/search_engines.yaml,sha256=TwD1bRpb4OmWRBsIGcFF4RvS1oVN5-niaDQvvDdByd4,503
|
|
1635
1725
|
scitex/scholar/config/_categories/url_finder_openurl.yaml,sha256=qIStUtKD1cII6g1TkV9N0fnI_VjIZHrKh_Bjp__koCY,2770
|
|
1636
1726
|
scitex/scholar/config/_categories/url_finder_selectors.yaml,sha256=Hn_Amb1egy-2_9UxOqSd_g85zLwy0J8pIoztFGANsCo,3446
|
|
1637
|
-
scitex/scholar/config/core/_CascadeConfig.py,sha256=
|
|
1638
|
-
scitex/scholar/config/core/_PathManager.py,sha256=
|
|
1639
|
-
scitex/scholar/core/Paper.py,sha256=
|
|
1640
|
-
scitex/scholar/core/Papers.py,sha256=
|
|
1727
|
+
scitex/scholar/config/core/_CascadeConfig.py,sha256=Cd0Q0xBrwG0Izj9vk8VbXBWvDrVE3gYxxsSdUNoFVo8,4833
|
|
1728
|
+
scitex/scholar/config/core/_PathManager.py,sha256=yk5mDhhejJVUhKHfPj2rK8vxS38jTNvfAX35ZHUCNR4,20745
|
|
1729
|
+
scitex/scholar/core/Paper.py,sha256=T8fWNCPVjER7PiG_xk11i2Z2ZhiJFLaVFDanQk60FVA,27277
|
|
1730
|
+
scitex/scholar/core/Papers.py,sha256=dQA0krf0dj8T-50CIsncRl6DcuqiDJX89MSqhdO_JYM,24950
|
|
1641
1731
|
scitex/scholar/core/README.md,sha256=lzkBX327j4yo_R2cdAmLczzYqn9-tbewEWB91fUBrmo,3197
|
|
1642
|
-
scitex/scholar/core/Scholar.py,sha256=
|
|
1732
|
+
scitex/scholar/core/Scholar.py,sha256=LD99fp8tGL5tisA6Jyusz6itUj9CcxQKwdRz0b7Ajl0,71134
|
|
1643
1733
|
scitex/scholar/core/__init__.py,sha256=ZkI7H7n_VXHc_GW_oduRh8OERStv03iLyoM4hfvc4A8,1139
|
|
1644
|
-
scitex/scholar/core/journal_normalizer.py,sha256=
|
|
1645
|
-
scitex/scholar/core/oa_cache.py,sha256=
|
|
1646
|
-
scitex/scholar/core/open_access.py,sha256=
|
|
1734
|
+
scitex/scholar/core/journal_normalizer.py,sha256=LGfxMuIIkYErByNTye5xPD1vwbg3LTqvk_mtJs9IKf0,17518
|
|
1735
|
+
scitex/scholar/core/oa_cache.py,sha256=C33ZBkqrC8hoxvMpsUkwNzY5w_TQB9CkpnBvWLy3WYM,9934
|
|
1736
|
+
scitex/scholar/core/open_access.py,sha256=I5qRdBqm75hi5ALQ_2NualPVwH8XFVntLSWHrcTM5b0,14305
|
|
1647
1737
|
scitex/scholar/docs/DETAILS_FOR_DEVELOPERS.md,sha256=E-Tv_xjaUlwzC8tGNEgQQCQTYxXhSCkccaCwMigxFAM,12878
|
|
1648
1738
|
scitex/scholar/docs/IMPACT_FACTOR_CITATION_INTEGRATION.md,sha256=g2UPSSOzkt7V_kr3GqhFcrDWfBOFfTGHy22Slycziks,8986
|
|
1649
1739
|
scitex/scholar/docs/PIPELINE_IMPLEMENTATION_COMPLETE.md,sha256=jG9MnwMjIbU8LFXrlaWhbTVeVudDpf7rrykivhMbsb8,9056
|
|
@@ -1652,7 +1742,7 @@ scitex/scholar/docs/PIPELINE_ORGANIZATION.md,sha256=8BS_j6S89TiLqDRiODACZsbEMs6E
|
|
|
1652
1742
|
scitex/scholar/docs/STORAGE_ARCHITECTURE.md,sha256=sKQDAS3ejZVJ8W51GADV_BqfWnj8oI4dOpQ1XCiF4gc,3746
|
|
1653
1743
|
scitex/scholar/docs/SUMMARY.md,sha256=quFBhRq5WJ06u5Po5oSzR28A-WihrApquXZYeyqwoS8,4011
|
|
1654
1744
|
scitex/scholar/docs/bibfile.bib,sha256=T2rdoLpV2kydNnjAhR0i071krPqFm0MoopzE0kNtfGU,11906
|
|
1655
|
-
scitex/scholar/docs/template.py,sha256=
|
|
1745
|
+
scitex/scholar/docs/template.py,sha256=dxVGzXyur94qPqZR7YRF8GZ9BB4AGnqsnvVtI8xg0lU,2521
|
|
1656
1746
|
scitex/scholar/docs/backup/papers-orig.bib,sha256=jxxGxT5CruEvKZfMcMQqt-48ZPcKSCuw-L4gJBUkvsc,27557
|
|
1657
1747
|
scitex/scholar/docs/backup/papers.bib.zip,sha256=gDi15KtNzw1jPBKlKHClXTVFV1RXi26IKSEu4IQu_ZU,9303
|
|
1658
1748
|
scitex/scholar/docs/from_agents/OPENATHENS_SECURITY.md,sha256=4Z2ifgWYDCeqnT8MYSD7SAX5-0wG_dvnfGuLqK_qpBc,2787
|
|
@@ -1815,114 +1905,114 @@ scitex/scholar/docs/zenrows_official/FAQ.md,sha256=0mXKWpDMeb1qASwZ2ILSKBECic2yi
|
|
|
1815
1905
|
scitex/scholar/docs/zenrows_official/captcha_integration.md,sha256=y2nsjpu9DiM50jrXrjxjZaXEovW65rrRvCpmnwCo8qc,25760
|
|
1816
1906
|
scitex/scholar/docs/zenrows_official/final_url.md,sha256=aw3H-LkwH7q8FW5JRcMHXYXqh1G2mxfq2TItEbISqUo,12483
|
|
1817
1907
|
scitex/scholar/docs/zenrows_official/with_playwright.md,sha256=EQD0JRlG0q8tgdoMsvJ75An1HiAlgHvBrcLTDR3PtZ4,12293
|
|
1818
|
-
scitex/scholar/examples/00_config.py,sha256=
|
|
1819
|
-
scitex/scholar/examples/01_auth.py,sha256=
|
|
1820
|
-
scitex/scholar/examples/02_browser.py,sha256=
|
|
1821
|
-
scitex/scholar/examples/03_01-engine.py,sha256=
|
|
1822
|
-
scitex/scholar/examples/03_02-engine-for-bibtex.py,sha256=
|
|
1823
|
-
scitex/scholar/examples/04_01-url.py,sha256=
|
|
1824
|
-
scitex/scholar/examples/04_02-url-for-bibtex.py,sha256=
|
|
1825
|
-
scitex/scholar/examples/04_02-url-for-dois.py,sha256=
|
|
1826
|
-
scitex/scholar/examples/05_download_pdf.py,sha256=
|
|
1827
|
-
scitex/scholar/examples/06_find_and_download.py,sha256=
|
|
1828
|
-
scitex/scholar/examples/06_parse_bibtex.py,sha256=
|
|
1829
|
-
scitex/scholar/examples/07_storage_integration.py,sha256=
|
|
1830
|
-
scitex/scholar/examples/99_fullpipeline-for-bibtex.py,sha256=
|
|
1831
|
-
scitex/scholar/examples/99_fullpipeline-for-one-entry.py,sha256=
|
|
1832
|
-
scitex/scholar/examples/99_maintenance.py,sha256=
|
|
1908
|
+
scitex/scholar/examples/00_config.py,sha256=uQ0xQPXWefz8iIWmu-AFE-cpRzOvzn8tmHKjyyTquyA,7283
|
|
1909
|
+
scitex/scholar/examples/01_auth.py,sha256=TcSXgpHLq2GmFsnZozWgk40sQXyhLeT68JhKdsK5FQc,3628
|
|
1910
|
+
scitex/scholar/examples/02_browser.py,sha256=4DjFQe89cwrE4qPvCYLKGXgvMtHov8ANSwFQGr9Qsik,3651
|
|
1911
|
+
scitex/scholar/examples/03_01-engine.py,sha256=TPzxOU-X6SONaF2Zt5OIfWhGJEs14P6aSLlwZsQlOO4,21973
|
|
1912
|
+
scitex/scholar/examples/03_02-engine-for-bibtex.py,sha256=c4amU3LQvjPgde0P6btYz5BCFVNie6-5Q_04Y3qhlq8,4049
|
|
1913
|
+
scitex/scholar/examples/04_01-url.py,sha256=63hbimc_TzD7AWjQnkjzsfzh6M1NOJKd271SG9O5YwI,16138
|
|
1914
|
+
scitex/scholar/examples/04_02-url-for-bibtex.py,sha256=FgnIxDXFafC5oDp9hxWZUs56J67NdLQSEYQvcvcWlR4,7235
|
|
1915
|
+
scitex/scholar/examples/04_02-url-for-dois.py,sha256=Syyaa853B1wBQ2XRmBNdDQpkIjLFdn-nAwOEpWeKXgQ,8870
|
|
1916
|
+
scitex/scholar/examples/05_download_pdf.py,sha256=HxQL0Kd2Ef5oWhgJPB_00p-ZEK_C34TCxGKNcVi8lrc,5311
|
|
1917
|
+
scitex/scholar/examples/06_find_and_download.py,sha256=Ry3PTMxfT2yDMtLmf4pYULeH9DKipz_ItlgBU7nV4Ro,5823
|
|
1918
|
+
scitex/scholar/examples/06_parse_bibtex.py,sha256=DWv059_5MYw2oSkIIde1-DLC_oDA-2P3IwkdXhk9r9E,7685
|
|
1919
|
+
scitex/scholar/examples/07_storage_integration.py,sha256=1kd5Z8rxV2TVzVrYGDkyisfKtn9mzM-thg3Tcx0zSIE,7580
|
|
1920
|
+
scitex/scholar/examples/99_fullpipeline-for-bibtex.py,sha256=UqBPnIUjAwC85z-DuwpCxuEei_8tNsm6bOJzLs1J7n8,9048
|
|
1921
|
+
scitex/scholar/examples/99_fullpipeline-for-one-entry.py,sha256=oH-pdTWSRREsZvmduMhCGbBcnZMh3YRMHw7T0dzFQWU,7363
|
|
1922
|
+
scitex/scholar/examples/99_maintenance.py,sha256=_0UiyfVJvwqURlCYyz0uROlDwBQJ1Sdo3WVP800g1hQ,2863
|
|
1833
1923
|
scitex/scholar/examples/README.md,sha256=W7yJvAq58nERWQcdpHE0RGRWzf4bUm58esb7wNadvwY,634
|
|
1834
1924
|
scitex/scholar/examples/SUGGESTIONS.md,sha256=ob0lqhHBO81th2nKRIvuXbUClt-oEPspE_pQbMysUdM,41814
|
|
1835
|
-
scitex/scholar/examples/dev.py,sha256=
|
|
1836
|
-
scitex/scholar/examples/zotero_integration.py,sha256=
|
|
1837
|
-
scitex/scholar/impact_factor/ImpactFactorEngine.py,sha256=
|
|
1925
|
+
scitex/scholar/examples/dev.py,sha256=O9jc1viU7FY7VNsarOSbw-Lsgh10AHT9816pOqDpHpw,1185
|
|
1926
|
+
scitex/scholar/examples/zotero_integration.py,sha256=TaRY3_EqWpyNcADWS5M80_m3XxVcFa3SEdj33wB1Q2U,7190
|
|
1927
|
+
scitex/scholar/impact_factor/ImpactFactorEngine.py,sha256=kOHsVUgSuZS2ZqSBGm20TTcc2_-joRpnex2h9kVCpLI,5897
|
|
1838
1928
|
scitex/scholar/impact_factor/README.md,sha256=F3hrS1a-zHnEPihg8lp-rRSw74PSWva3pBbSom0uSsM,4373
|
|
1839
1929
|
scitex/scholar/impact_factor/__init__.py,sha256=yj5DD7PK-K4KlLMdE80x9SE9BRSn4panJckH1x-4Qp4,496
|
|
1840
1930
|
scitex/scholar/impact_factor/estimation/ImpactFactorEstimationEngine.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1841
1931
|
scitex/scholar/impact_factor/estimation/README.md,sha256=pOJ-HLv0Q2WvPMiZc4Cka3vunYQbCP4t65teyhfk_kM,9255
|
|
1842
|
-
scitex/scholar/impact_factor/estimation/__init__.py,sha256=
|
|
1932
|
+
scitex/scholar/impact_factor/estimation/__init__.py,sha256=UQeB3xBGpGmvd8SFMimgZTiEgPFBkWCnu8qhJaiECTU,1235
|
|
1843
1933
|
scitex/scholar/impact_factor/estimation/build_database.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1844
|
-
scitex/scholar/impact_factor/estimation/core/__init__.py,sha256=
|
|
1845
|
-
scitex/scholar/impact_factor/estimation/core/cache_manager.py,sha256=
|
|
1846
|
-
scitex/scholar/impact_factor/estimation/core/calculator.py,sha256=
|
|
1847
|
-
scitex/scholar/impact_factor/estimation/core/journal_matcher.py,sha256=
|
|
1848
|
-
scitex/scholar/impact_factor/jcr/ImpactFactorJCREngine.py,sha256=
|
|
1934
|
+
scitex/scholar/impact_factor/estimation/core/__init__.py,sha256=5MOMEQwhIIgjMAWdR6K2KJW7iQjKAOWwmSpYZphlndI,790
|
|
1935
|
+
scitex/scholar/impact_factor/estimation/core/cache_manager.py,sha256=tkAez6x95IX5DVC5kNj4Ifysjzlo6MXd59bQGCFhkKY,18410
|
|
1936
|
+
scitex/scholar/impact_factor/estimation/core/calculator.py,sha256=UVTsI1humSbpX2Uok_64309pQp2AaEuxtZbXHzwo-Ek,15001
|
|
1937
|
+
scitex/scholar/impact_factor/estimation/core/journal_matcher.py,sha256=UbXw3ewlkLHy0XMSGiJ5LJ2HVErbybIGUww4AbHiMGU,16043
|
|
1938
|
+
scitex/scholar/impact_factor/jcr/ImpactFactorJCREngine.py,sha256=V9TZyG1xkWqksDgVlWcqtfWFvfonlXng2s7-TOD2j9E,8933
|
|
1849
1939
|
scitex/scholar/impact_factor/jcr/README.md,sha256=V8OO3Qjp513SKhMN5EnGpZXzLQaY_e8yUYkRYB3B-fw,2044
|
|
1850
1940
|
scitex/scholar/impact_factor/jcr/TODO.md,sha256=YZbUGoZZXmVRlJS1X_043oDBtBlsOOoBdvuYVnRM4BM,876
|
|
1851
|
-
scitex/scholar/impact_factor/jcr/build_database.py,sha256=
|
|
1941
|
+
scitex/scholar/impact_factor/jcr/build_database.py,sha256=No7tY6kbpv_MyCDJ_hoDy5KFQbZkMwxPIbtzf0olheE,6912
|
|
1852
1942
|
scitex/scholar/integration/MIGRATION.md,sha256=uqIzp5qia-DXLhE9qsm2YNrf2qzBhLuxFIy0Y9jLoBE,3317
|
|
1853
1943
|
scitex/scholar/integration/README.md,sha256=__PZqsPJ1OAcD2A6DJTgXupcVhDboPp_MxU4yTIKj6I,10887
|
|
1854
1944
|
scitex/scholar/integration/__init__.py,sha256=fh7Bl9-0CAKoCw50dY8FxsixOtkC8VESEczGlZ_BheQ,1116
|
|
1855
|
-
scitex/scholar/integration/base.py,sha256=
|
|
1945
|
+
scitex/scholar/integration/base.py,sha256=ZZBWUzMv9b23ZCMAT4__ALfGVhSNxc_fU5uCQu5TPOk,14263
|
|
1856
1946
|
scitex/scholar/integration/mendeley/__init__.py,sha256=15cxzvsmIFOhv3o534hX-NYJwL-RK7KmY-09G5ESMfU,516
|
|
1857
|
-
scitex/scholar/integration/mendeley/exporter.py,sha256=
|
|
1858
|
-
scitex/scholar/integration/mendeley/importer.py,sha256=
|
|
1859
|
-
scitex/scholar/integration/mendeley/linker.py,sha256=
|
|
1860
|
-
scitex/scholar/integration/mendeley/mapper.py,sha256=
|
|
1947
|
+
scitex/scholar/integration/mendeley/exporter.py,sha256=C-gx8LmaVjrO8osZPfnoDhpDCzszFWf_erpDhr0XMZI,5318
|
|
1948
|
+
scitex/scholar/integration/mendeley/importer.py,sha256=LmnIU7oFAXTX-vfINZDHj7I90YfBD3cIg5IlOeYNkSk,7672
|
|
1949
|
+
scitex/scholar/integration/mendeley/linker.py,sha256=x8OhT6A8OcwDF3RWnh2jLTLt-VVMQxZzCHv4Xes6-r8,2317
|
|
1950
|
+
scitex/scholar/integration/mendeley/mapper.py,sha256=u4qgL1xFfId6yK04WsFUwyIvolLApbC3sSF0TKklhGc,7114
|
|
1861
1951
|
scitex/scholar/integration/zotero/README.md,sha256=OYji0ZzU091O30M2yPMo1Yy3ygQVXec5rGiNSIYA-Z0,7664
|
|
1862
1952
|
scitex/scholar/integration/zotero/__init__.py,sha256=Um-ZuC1gnTvM5ZMgUoMsXxLyvEzNUmwWve3mzjdcaAk,809
|
|
1863
|
-
scitex/scholar/integration/zotero/__main__.py,sha256=
|
|
1864
|
-
scitex/scholar/integration/zotero/exporter.py,sha256=
|
|
1865
|
-
scitex/scholar/integration/zotero/importer.py,sha256=
|
|
1866
|
-
scitex/scholar/integration/zotero/linker.py,sha256=
|
|
1867
|
-
scitex/scholar/integration/zotero/mapper.py,sha256=
|
|
1953
|
+
scitex/scholar/integration/zotero/__main__.py,sha256=XrBixjYm7PK9RzXZKHoTkrjaK4UMri-ewFQfdOfKjx0,7647
|
|
1954
|
+
scitex/scholar/integration/zotero/exporter.py,sha256=8TDQQrDAK6xv9ZoR5ElbHNamOovdVJj8o791mMIkeyk,11903
|
|
1955
|
+
scitex/scholar/integration/zotero/importer.py,sha256=VvOVkT5KZg96CqsLNTz0rDb1wShB8fctEhNc6ikFGHw,12424
|
|
1956
|
+
scitex/scholar/integration/zotero/linker.py,sha256=A0pjyhMrxhun9l9exoWGFWpfOAYIWeXq0BQC_fFbItU,13032
|
|
1957
|
+
scitex/scholar/integration/zotero/mapper.py,sha256=4owXwkLo7sSLF1d0JBQdFL0MaTC8WfuAKMD9bwfQCxw,10005
|
|
1868
1958
|
scitex/scholar/library/neurovista/info/bibtex/seizure_prediction_enriched.bib,sha256=RrNbmt8n2APyM-UvJJJ-HvrEuf1KGK9Q57Vi7Njtl3I,130988
|
|
1869
1959
|
scitex/scholar/metadata_engines/README.md,sha256=wz1fTeru9sTgkGO5T8VdDBsd4FBaZu2t6-I8MTNGifw,919
|
|
1870
|
-
scitex/scholar/metadata_engines/ScholarEngine.py,sha256=
|
|
1871
|
-
scitex/scholar/metadata_engines/__init__.py,sha256=
|
|
1872
|
-
scitex/scholar/metadata_engines/.combined-SemanticScholarSource/_SemanticScholarSource.py,sha256=
|
|
1873
|
-
scitex/scholar/metadata_engines/.combined-SemanticScholarSource/_SemanticScholarSourceEnhanced.py,sha256=
|
|
1874
|
-
scitex/scholar/metadata_engines/individual/ArXivEngine.py,sha256=
|
|
1875
|
-
scitex/scholar/metadata_engines/individual/CrossRefEngine.py,sha256=
|
|
1876
|
-
scitex/scholar/metadata_engines/individual/CrossRefLocalEngine.py,sha256=
|
|
1877
|
-
scitex/scholar/metadata_engines/individual/OpenAlexEngine.py,sha256=
|
|
1878
|
-
scitex/scholar/metadata_engines/individual/PubMedEngine.py,sha256=
|
|
1879
|
-
scitex/scholar/metadata_engines/individual/SemanticScholarEngine.py,sha256=
|
|
1880
|
-
scitex/scholar/metadata_engines/individual/URLDOIEngine.py,sha256=
|
|
1881
|
-
scitex/scholar/metadata_engines/individual/_BaseDOIEngine.py,sha256=
|
|
1960
|
+
scitex/scholar/metadata_engines/ScholarEngine.py,sha256=WGOEvCiBiMm0aZNtN1AlBDCcN6XQUl76R6zedUhR7gs,20604
|
|
1961
|
+
scitex/scholar/metadata_engines/__init__.py,sha256=qjndZBrK2tXOMCRHFeEu2BJ9Ir8nbr7cHsV4xvXUwv4,749
|
|
1962
|
+
scitex/scholar/metadata_engines/.combined-SemanticScholarSource/_SemanticScholarSource.py,sha256=RrjgRQ0C5DE_8_5SIxV3wsoiaOCuawwVJc8YGFUHxeI,10146
|
|
1963
|
+
scitex/scholar/metadata_engines/.combined-SemanticScholarSource/_SemanticScholarSourceEnhanced.py,sha256=CLLXlSVgaujFvTsnDrWmAqTaUmJBtr9msFY-uYaxMZk,7604
|
|
1964
|
+
scitex/scholar/metadata_engines/individual/ArXivEngine.py,sha256=YeB9sfZQGz0P_eFgVZbmctUWZbPRxAM25F2wPljIj9g,13224
|
|
1965
|
+
scitex/scholar/metadata_engines/individual/CrossRefEngine.py,sha256=dAR2OVNl1i-p1I0UTsyEN4KV0L7vTqFtATe3KtVrntE,9974
|
|
1966
|
+
scitex/scholar/metadata_engines/individual/CrossRefLocalEngine.py,sha256=thHe3k41EI9Td1vqeh3ebUfg9fjrq94QYnDtpwxlgNg,11147
|
|
1967
|
+
scitex/scholar/metadata_engines/individual/OpenAlexEngine.py,sha256=fAXehDNdRMPBMcMcemw5cXUrBtyWSgZPpVBJfBAZXqQ,12149
|
|
1968
|
+
scitex/scholar/metadata_engines/individual/PubMedEngine.py,sha256=0FD9h_UCMZ9YrclW228YoFqlMClx-3r1SQC-TpcOS8Q,9923
|
|
1969
|
+
scitex/scholar/metadata_engines/individual/SemanticScholarEngine.py,sha256=Ve6aADnN3CgPAftkRMbllMyUwy0YKEUq76BZU8C2y1k,15338
|
|
1970
|
+
scitex/scholar/metadata_engines/individual/URLDOIEngine.py,sha256=HnUTo_BjFnKNKPz1vmaIX4EedlyKXWSgrzyTGppSnjc,14461
|
|
1971
|
+
scitex/scholar/metadata_engines/individual/_BaseDOIEngine.py,sha256=tIu_a-O9Y_iJ_RnSI0oKHBzU0h4frm9B4p7TXvfsIyI,16427
|
|
1882
1972
|
scitex/scholar/metadata_engines/individual/__init__.py,sha256=bViD8Y8f16Ru76k4s9SAzNETP8iQcEH80fZinYmLSjM,311
|
|
1883
|
-
scitex/scholar/metadata_engines/utils/_PubMedConverter.py,sha256=
|
|
1884
|
-
scitex/scholar/metadata_engines/utils/_URLDOIExtractor.py,sha256=
|
|
1885
|
-
scitex/scholar/metadata_engines/utils/__init__.py,sha256=
|
|
1886
|
-
scitex/scholar/metadata_engines/utils/_metadata2bibtex.py,sha256=
|
|
1887
|
-
scitex/scholar/metadata_engines/utils/_standardize_metadata.py,sha256=
|
|
1973
|
+
scitex/scholar/metadata_engines/utils/_PubMedConverter.py,sha256=OaWsznE66619Gelqdh3daMnl2yJ3O4fvxMfRvuxhnN8,14407
|
|
1974
|
+
scitex/scholar/metadata_engines/utils/_URLDOIExtractor.py,sha256=fwQ0W8E7wSXd-33Ps3e_sIDqCKQdtGwDhpg9xwdtvBg,9175
|
|
1975
|
+
scitex/scholar/metadata_engines/utils/__init__.py,sha256=7JNLEqNflajR16Vrm27mR0RnZnhwwya7ajOrsfV7rus,865
|
|
1976
|
+
scitex/scholar/metadata_engines/utils/_metadata2bibtex.py,sha256=mU5U---gRmoLJcPrSEVHzvTcflu9b0uw4addWtNhG-k,3095
|
|
1977
|
+
scitex/scholar/metadata_engines/utils/_standardize_metadata.py,sha256=hLOBvg0mOc2sl9tw42AA5kTamKvJAojXWlMmCETRNTw,12312
|
|
1888
1978
|
scitex/scholar/pdf_download/README.md,sha256=W-Xz3CcSPnZU9qLnUiA7s3nd-yH8SReG15sBttp7Gt0,1429
|
|
1889
|
-
scitex/scholar/pdf_download/ScholarPDFDownloader.py,sha256=
|
|
1979
|
+
scitex/scholar/pdf_download/ScholarPDFDownloader.py,sha256=UJkdh_0A5UrIFAzbaa7xYl5Wk39Cwvpn_UILPdTQ-dA,24296
|
|
1890
1980
|
scitex/scholar/pdf_download/__init__.py,sha256=i5mmHd1wUKmTYRu3yUKxPrnRpWVW1OGDwAK-7r2Kma4,98
|
|
1891
1981
|
scitex/scholar/pdf_download/strategies/__init__.py,sha256=7Mi9YWDXy5jd0WyDARvCwRHSA7iyd4zxYeRcVttqyC8,1349
|
|
1892
|
-
scitex/scholar/pdf_download/strategies/chrome_pdf_viewer.py,sha256=
|
|
1893
|
-
scitex/scholar/pdf_download/strategies/direct_download.py,sha256=
|
|
1894
|
-
scitex/scholar/pdf_download/strategies/manual_download_fallback.py,sha256=
|
|
1895
|
-
scitex/scholar/pdf_download/strategies/manual_download_utils.py,sha256=
|
|
1896
|
-
scitex/scholar/pdf_download/strategies/open_access_download.py,sha256=
|
|
1897
|
-
scitex/scholar/pdf_download/strategies/response_body.py,sha256=
|
|
1982
|
+
scitex/scholar/pdf_download/strategies/chrome_pdf_viewer.py,sha256=yogAxcEuczS6ZJobeIqUK_Rez_QP91yuLToJKtmFuZA,14259
|
|
1983
|
+
scitex/scholar/pdf_download/strategies/direct_download.py,sha256=M5IpLDzMFCv87xOqi7O9HS07ETatge5nlPbiV9e2GeI,4329
|
|
1984
|
+
scitex/scholar/pdf_download/strategies/manual_download_fallback.py,sha256=DMGV2PkQzdNKeS2DvUb9fhwhHXJBsJh6QRstLuLFKIs,5280
|
|
1985
|
+
scitex/scholar/pdf_download/strategies/manual_download_utils.py,sha256=uMlc8jOmWcS6s5bOumNJzVNkeh7Ee9SwlIqlXoCuJUc,35653
|
|
1986
|
+
scitex/scholar/pdf_download/strategies/open_access_download.py,sha256=QzhtNH-Xo44A0sbatJCDZ786K1Cgm4OWZ1pRXrzQj78,6625
|
|
1987
|
+
scitex/scholar/pdf_download/strategies/response_body.py,sha256=TN67ZI0a0ufqaR4l7rXwJ55BPpzBjSzwExjlHzoVISY,6738
|
|
1898
1988
|
scitex/scholar/pipelines/README.md,sha256=nvTlfY7qP084iZo93-qXfic8jjmbR4qqUZOtmuH391U,4478
|
|
1899
|
-
scitex/scholar/pipelines/ScholarPipelineBibTeX.py,sha256=
|
|
1900
|
-
scitex/scholar/pipelines/ScholarPipelineMetadataParallel.py,sha256=
|
|
1901
|
-
scitex/scholar/pipelines/ScholarPipelineMetadataSingle.py,sha256=
|
|
1902
|
-
scitex/scholar/pipelines/ScholarPipelineParallel.py,sha256=
|
|
1903
|
-
scitex/scholar/pipelines/ScholarPipelineSearchParallel.py,sha256=
|
|
1904
|
-
scitex/scholar/pipelines/ScholarPipelineSearchSingle.py,sha256=
|
|
1905
|
-
scitex/scholar/pipelines/ScholarPipelineSingle.py,sha256=
|
|
1906
|
-
scitex/scholar/pipelines/SearchQueryParser.py,sha256=
|
|
1989
|
+
scitex/scholar/pipelines/ScholarPipelineBibTeX.py,sha256=lK_k5emrtXU2duADW85hAOw4jC0bhFJGqq8KhgDA6mg,10886
|
|
1990
|
+
scitex/scholar/pipelines/ScholarPipelineMetadataParallel.py,sha256=lONMpaGVF3-f3qDpi4AqdaBBrh7UgstP5EUHkQYY2MQ,9399
|
|
1991
|
+
scitex/scholar/pipelines/ScholarPipelineMetadataSingle.py,sha256=aK69B-bkrOyHjvq_p_5OY4cpUGDCBbThS5w3LztNLGU,16313
|
|
1992
|
+
scitex/scholar/pipelines/ScholarPipelineParallel.py,sha256=jwAyyk3wDY03urJ8OWitFi91JCYrDVwA-641qyPqhdY,14595
|
|
1993
|
+
scitex/scholar/pipelines/ScholarPipelineSearchParallel.py,sha256=tEGJAN1zJ2BZ-w3PkmvLoYRFqmWK0n6GvkkHvPjcc0M,32680
|
|
1994
|
+
scitex/scholar/pipelines/ScholarPipelineSearchSingle.py,sha256=9flKll9nK0VrhSkgaE_cN3z2z-ZcsZNNJ_9Al2ogyfM,19711
|
|
1995
|
+
scitex/scholar/pipelines/ScholarPipelineSingle.py,sha256=_i5UZaJbIGNET3ZVRdcwKpNTIRwt3qvtMNugXuR5miU,26935
|
|
1996
|
+
scitex/scholar/pipelines/SearchQueryParser.py,sha256=jk8rI2CdtSa6-W336pBhw2ftPvvaxeMflpgdj2pRAJc,10018
|
|
1907
1997
|
scitex/scholar/pipelines/__init__.py,sha256=2739ioL2pNmtGCLmDr0mVd2M5c-N_9z27IfG8xVyKKY,2079
|
|
1908
|
-
scitex/scholar/search_engines/ScholarSearchEngine.py,sha256=
|
|
1909
|
-
scitex/scholar/search_engines/_BaseSearchEngine.py,sha256=
|
|
1998
|
+
scitex/scholar/search_engines/ScholarSearchEngine.py,sha256=lh-jhjq-o995yujcIk0wvcBuxMBOOAT7VchBfNSzfhQ,8964
|
|
1999
|
+
scitex/scholar/search_engines/_BaseSearchEngine.py,sha256=dAD2J-G5ZtYdGQAyRS4eBLLlGy0Sh66TnjQRy4DRoOQ,5589
|
|
1910
2000
|
scitex/scholar/search_engines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1911
|
-
scitex/scholar/search_engines/individual/ArXivSearchEngine.py,sha256=
|
|
1912
|
-
scitex/scholar/search_engines/individual/CrossRefSearchEngine.py,sha256=
|
|
1913
|
-
scitex/scholar/search_engines/individual/OpenAlexSearchEngine.py,sha256=
|
|
1914
|
-
scitex/scholar/search_engines/individual/PubMedSearchEngine.py,sha256=
|
|
1915
|
-
scitex/scholar/search_engines/individual/SemanticScholarSearchEngine.py,sha256=
|
|
2001
|
+
scitex/scholar/search_engines/individual/ArXivSearchEngine.py,sha256=Mxh8WeAihv2yzfefFqjeRl_DfTDrrfFCuLUkYVJzHyw,6163
|
|
2002
|
+
scitex/scholar/search_engines/individual/CrossRefSearchEngine.py,sha256=xwCrEFr4nf7A7vtK-qJJ_20iSul-PzJ0GCDkFugDunM,5506
|
|
2003
|
+
scitex/scholar/search_engines/individual/OpenAlexSearchEngine.py,sha256=7P9r1U4jxm3in_EX0-sHX2E0lrSTxnAi4lqPsVpcgt4,5939
|
|
2004
|
+
scitex/scholar/search_engines/individual/PubMedSearchEngine.py,sha256=VcIfmZngojXqPECeK1_MkTqCl_ajDnuXmJ2B-Uhb1EE,6065
|
|
2005
|
+
scitex/scholar/search_engines/individual/SemanticScholarSearchEngine.py,sha256=XCi7Fk2P56DS6ON3wzTijIENK__TAc0gJt7tiLEC27o,5432
|
|
1916
2006
|
scitex/scholar/search_engines/individual/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1917
|
-
scitex/scholar/storage/BibTeXHandler.py,sha256=
|
|
1918
|
-
scitex/scholar/storage/PaperIO.py,sha256=
|
|
1919
|
-
scitex/scholar/storage/ScholarLibrary.py,sha256=
|
|
1920
|
-
scitex/scholar/storage/_DeduplicationManager.py,sha256=
|
|
1921
|
-
scitex/scholar/storage/_LibraryCacheManager.py,sha256=
|
|
1922
|
-
scitex/scholar/storage/_LibraryManager.py,sha256=
|
|
2007
|
+
scitex/scholar/storage/BibTeXHandler.py,sha256=uMtz3dVwT8aKcb3bod0HJjBhw2JaP7rilvG6C4inuVg,41393
|
|
2008
|
+
scitex/scholar/storage/PaperIO.py,sha256=jIdphWGdOt0r30dHmh-vylMxqtMyc3lKz_s6xzSKJYo,14180
|
|
2009
|
+
scitex/scholar/storage/ScholarLibrary.py,sha256=Jec4I4eQET-TynGr66SdeOkmSUccdXuIn7e7vOY9tFM,8516
|
|
2010
|
+
scitex/scholar/storage/_DeduplicationManager.py,sha256=22omS85fm_97XQMyVnkE6B5qvYapdVN4YfvlVRoJK9k,20812
|
|
2011
|
+
scitex/scholar/storage/_LibraryCacheManager.py,sha256=Ker_FKMgLLWdAjoreK5y8yJoxZ7dtxSrQ1aLiaoDUJQ,25450
|
|
2012
|
+
scitex/scholar/storage/_LibraryManager.py,sha256=a2b0ITyH9h1GGnos0gOUV5umavUoV7uoozabU39YnIY,68796
|
|
1923
2013
|
scitex/scholar/storage/__init__.py,sha256=Ypb-L1wIsONCLRXoJBWlw2-mNVy_GDVY-dTDnmDwhiE,787
|
|
1924
2014
|
scitex/scholar/url_finder/README.md,sha256=CGQpOktqpQF_5z_u-pIKMYBAeQZXT9Eh24XaPtfV6HM,2016
|
|
1925
|
-
scitex/scholar/url_finder/ScholarURLFinder.py,sha256=
|
|
2015
|
+
scitex/scholar/url_finder/ScholarURLFinder.py,sha256=C9lpYefs-9YoGcYYYBDB8GrGQyp27LmLTIv_WelDJgI,11840
|
|
1926
2016
|
scitex/scholar/url_finder/__init__.py,sha256=FV9ocQPE6520WUVVMV2u7hci_-2ha1KLJHzRUUlWGBw,93
|
|
1927
2017
|
scitex/scholar/url_finder/.tmp/open_url/KNOWN_RESOLVERS.py,sha256=n37aHjOq6YrtgR0DGN0iznKy8EWCjzgBODVm7pINc-w,12926
|
|
1928
2018
|
scitex/scholar/url_finder/.tmp/open_url/README.md,sha256=4CyiK7Zbdd23WjsYUU7J7FLPmhxwxA1PWc7enL9dGug,6836
|
|
@@ -1933,28 +2023,28 @@ scitex/scholar/url_finder/.tmp/open_url/__init__.py,sha256=d1umAnLQNFGYX7oui5Jl8
|
|
|
1933
2023
|
scitex/scholar/url_finder/docs/CORE_URL_TYPES.md,sha256=bRd2AfoypJiO4xgJBqpbC0GR6BhO4dEBo8D4fg7oDo0,6651
|
|
1934
2024
|
scitex/scholar/url_finder/docs/URL_SCHEMA.md,sha256=MDSUpqJzVwll9Mpspp2RhvYIv6bq_VCTktmTxk_DKk4,7696
|
|
1935
2025
|
scitex/scholar/url_finder/strategies/__init__.py,sha256=UIfUjfZbFhDZzfEHl3uCuIBUgMEdUMYaC9NbMEDG2Hs,1439
|
|
1936
|
-
scitex/scholar/url_finder/strategies/find_pdf_urls_by_direct_links.py,sha256=
|
|
2026
|
+
scitex/scholar/url_finder/strategies/find_pdf_urls_by_direct_links.py,sha256=T_QzXcnyulgFylWz_37ncA6J9LQc1SFu3o4yE_-Voqk,9668
|
|
1937
2027
|
scitex/scholar/url_finder/strategies/find_pdf_urls_by_dropdown.py,sha256=JA908Bk2yUVacO4kPcgHkkolOaoVHlgMuGpl1S9P2xQ,1943
|
|
1938
|
-
scitex/scholar/url_finder/strategies/find_pdf_urls_by_href.py,sha256=
|
|
1939
|
-
scitex/scholar/url_finder/strategies/find_pdf_urls_by_navigation.py,sha256=
|
|
1940
|
-
scitex/scholar/url_finder/strategies/find_pdf_urls_by_publisher_patterns.py,sha256=
|
|
1941
|
-
scitex/scholar/url_finder/strategies/find_pdf_urls_by_zotero_translators.py,sha256=
|
|
1942
|
-
scitex/scholar/url_finder/strategies/find_supplementary_urls_by_href.py,sha256=
|
|
2028
|
+
scitex/scholar/url_finder/strategies/find_pdf_urls_by_href.py,sha256=vVBF9NEXUQytCAKj3uPn6KC-47nGOcoFDKlzsBfwpL8,7680
|
|
2029
|
+
scitex/scholar/url_finder/strategies/find_pdf_urls_by_navigation.py,sha256=EfZXqX9pIdQT3S4cbkMaDSgBGFZJ4uBZRrjCMqXl86w,8280
|
|
2030
|
+
scitex/scholar/url_finder/strategies/find_pdf_urls_by_publisher_patterns.py,sha256=n-IU0cOs-94cIPdN1WYAzen2UiuqII6E9XnyAb4XQi4,5449
|
|
2031
|
+
scitex/scholar/url_finder/strategies/find_pdf_urls_by_zotero_translators.py,sha256=e9FlszPO0Pa-bKRvVwVxk2OOZSS16oMc32fQz5WKiks,5397
|
|
2032
|
+
scitex/scholar/url_finder/strategies/find_supplementary_urls_by_href.py,sha256=6CFVRAWqJ8DmPZ6m3H2MdkIFwqMYAuBE6zqq65vdzf4,2133
|
|
1943
2033
|
scitex/scholar/url_finder/translators/__init__.py,sha256=KqdvknMfAIiir0wmfrh-t36Hb1-X6Ym3ef1EY7wNXFA,1002
|
|
1944
2034
|
scitex/scholar/url_finder/translators/core/__init__.py,sha256=xT3WWvfBgFP1XYX082YZ83tOgzDyHWIS1_BM-n37leE,173
|
|
1945
2035
|
scitex/scholar/url_finder/translators/core/base.py,sha256=SLH_PVXOh34IIbs6BEfIBpHn4lRSww_ZSeUJOZiY9IM,1271
|
|
1946
|
-
scitex/scholar/url_finder/translators/core/patterns.py,sha256=
|
|
1947
|
-
scitex/scholar/url_finder/translators/core/registry.py,sha256=
|
|
1948
|
-
scitex/scholar/url_finder/translators/individual/BOFiP_Impots.py,sha256=
|
|
1949
|
-
scitex/scholar/url_finder/translators/individual/Baidu_Scholar.py,sha256=
|
|
1950
|
-
scitex/scholar/url_finder/translators/individual/Bangkok_Post.py,sha256=
|
|
1951
|
-
scitex/scholar/url_finder/translators/individual/Baruch_Foundation.py,sha256=
|
|
1952
|
-
scitex/scholar/url_finder/translators/individual/Beobachter.py,sha256=
|
|
1953
|
-
scitex/scholar/url_finder/translators/individual/Bezneng_Gajit.py,sha256=
|
|
1954
|
-
scitex/scholar/url_finder/translators/individual/BibLaTeX.py,sha256=
|
|
1955
|
-
scitex/scholar/url_finder/translators/individual/BibTeX.py,sha256=
|
|
1956
|
-
scitex/scholar/url_finder/translators/individual/Biblio_com.py,sha256=
|
|
1957
|
-
scitex/scholar/url_finder/translators/individual/Bibliontology_RDF.py,sha256=
|
|
2036
|
+
scitex/scholar/url_finder/translators/core/patterns.py,sha256=XTtLOx8h3B4mpbFj8o8noK4WT5AqyZD4qNOJaewaG8Y,1020
|
|
2037
|
+
scitex/scholar/url_finder/translators/core/registry.py,sha256=KmBy2fVhMXcy2pVre8jg_wppCVh3KMEoMBoTaenPFmA,14181
|
|
2038
|
+
scitex/scholar/url_finder/translators/individual/BOFiP_Impots.py,sha256=PFZISTRootFg5zq_bREPk4sZxvJqD9ivnet56HFM8dI,6863
|
|
2039
|
+
scitex/scholar/url_finder/translators/individual/Baidu_Scholar.py,sha256=URkeHNZHhX4TZHNMpSsVhqY0PWfV9zBR8XtsetYBGow,7226
|
|
2040
|
+
scitex/scholar/url_finder/translators/individual/Bangkok_Post.py,sha256=e9zmKq5rit2U-uOky1tOhL9k-d0CDHocICEf9IImyjE,4881
|
|
2041
|
+
scitex/scholar/url_finder/translators/individual/Baruch_Foundation.py,sha256=B14LfLKancBc8dY-mji-TOGStWIORZSDJdpYNZhLKD4,6138
|
|
2042
|
+
scitex/scholar/url_finder/translators/individual/Beobachter.py,sha256=kz8gJzAy56a41qINM6PQ7OqmV1qCxvQS_NUQk-huzk8,5865
|
|
2043
|
+
scitex/scholar/url_finder/translators/individual/Bezneng_Gajit.py,sha256=hEhpfyS9NTZ12pLR8ebSc_xqAPfpwHxh0cFhImDtFAI,6491
|
|
2044
|
+
scitex/scholar/url_finder/translators/individual/BibLaTeX.py,sha256=rNpwWWM3Kzp_Prqu5SWVTWa3NvMfCiaLVJ-kD6J8hq8,9539
|
|
2045
|
+
scitex/scholar/url_finder/translators/individual/BibTeX.py,sha256=gEprX9OAMTPw0VdlCTYeZTZory3hohHs17o2LDILadg,10236
|
|
2046
|
+
scitex/scholar/url_finder/translators/individual/Biblio_com.py,sha256=IXLh2X7sKUSuGCZ-I7okFuc7WOap671W3n9WRfyeed8,6749
|
|
2047
|
+
scitex/scholar/url_finder/translators/individual/Bibliontology_RDF.py,sha256=mPwPGvXv3MMw1eqBrh3VTg-XA5Ttp-e-qLscuVsbroM,7744
|
|
1958
2048
|
scitex/scholar/url_finder/translators/individual/CLASE.py,sha256=U5ej4yxaMbelYG773F268xJlI_z7eaWfD-vIALeHuBo,542
|
|
1959
2049
|
scitex/scholar/url_finder/translators/individual/COBISS.py,sha256=dSZfVXdFNS6MNYdbleKAUhkWH2aHRDaZdOKv9WrbeqQ,554
|
|
1960
2050
|
scitex/scholar/url_finder/translators/individual/COinS.py,sha256=8cb7zdiQnrPcnnSX3u1FpiP05Ii1GYqeBiXP4lYW8Cg,518
|
|
@@ -1964,33 +2054,33 @@ scitex/scholar/url_finder/translators/individual/CSL_JSON.py,sha256=wz19CduMZGII
|
|
|
1964
2054
|
scitex/scholar/url_finder/translators/individual/CSV.py,sha256=jWd4_rtRlQTmePuXQ54PmPOO28myGGxf-5OA8hzWmEU,516
|
|
1965
2055
|
scitex/scholar/url_finder/translators/individual/CalMatters.py,sha256=wJPoyrrT7noyJ8g4vbwSuGKAqGX-Y0AZgc3eU2ahB98,562
|
|
1966
2056
|
scitex/scholar/url_finder/translators/individual/Calisphere.py,sha256=NxeZPqhg9IlC9XIwnA8lA9u7HkFf4kxdHaXEI0w5G9g,576
|
|
1967
|
-
scitex/scholar/url_finder/translators/individual/Camara_Brasileira_do_Livro_ISBN.py,sha256=
|
|
1968
|
-
scitex/scholar/url_finder/translators/individual/CanLII.py,sha256=
|
|
1969
|
-
scitex/scholar/url_finder/translators/individual/Canada_com.py,sha256=
|
|
1970
|
-
scitex/scholar/url_finder/translators/individual/Canadian_Letters_and_Images.py,sha256=
|
|
1971
|
-
scitex/scholar/url_finder/translators/individual/Canadiana_ca.py,sha256=
|
|
1972
|
-
scitex/scholar/url_finder/translators/individual/Cascadilla_Proceedings_Project.py,sha256=
|
|
1973
|
-
scitex/scholar/url_finder/translators/individual/Central_and_Eastern_European_Online_Library_Journals.py,sha256=
|
|
1974
|
-
scitex/scholar/url_finder/translators/individual/Champlain_Society_Collection.py,sha256=
|
|
1975
|
-
scitex/scholar/url_finder/translators/individual/Chicago_Journal_of_Theoretical_Computer_Science.py,sha256=
|
|
1976
|
-
scitex/scholar/url_finder/translators/individual/Christian_Science_Monitor.py,sha256=
|
|
1977
|
-
scitex/scholar/url_finder/translators/individual/Columbia_University_Press.py,sha256=
|
|
1978
|
-
scitex/scholar/url_finder/translators/individual/Common_Place.py,sha256=
|
|
1979
|
-
scitex/scholar/url_finder/translators/individual/Cornell_LII.py,sha256=
|
|
1980
|
-
scitex/scholar/url_finder/translators/individual/Cornell_University_Press.py,sha256=
|
|
1981
|
-
scitex/scholar/url_finder/translators/individual/CourtListener.py,sha256=
|
|
1982
|
-
scitex/scholar/url_finder/translators/individual/DAI_Zenon.py,sha256
|
|
2057
|
+
scitex/scholar/url_finder/translators/individual/Camara_Brasileira_do_Livro_ISBN.py,sha256=V18rFk7LYr8TvDlcg-pOyRvH8iBCIK1jfnFTb2eI0XM,9436
|
|
2058
|
+
scitex/scholar/url_finder/translators/individual/CanLII.py,sha256=eBz6liV0eIZF2R-2KSEAngL7X0EKckbKWWqO0o0o0mY,4858
|
|
2059
|
+
scitex/scholar/url_finder/translators/individual/Canada_com.py,sha256=o5z1_zoTYzwVZeoo2meEJZBwpzW5HsjoTzmVf9WrfI0,4008
|
|
2060
|
+
scitex/scholar/url_finder/translators/individual/Canadian_Letters_and_Images.py,sha256=Um3-42Fo4MUAaWAvFEh2Wa8RsONSmxpvvFSjHxRyAMU,5223
|
|
2061
|
+
scitex/scholar/url_finder/translators/individual/Canadiana_ca.py,sha256=jYSMXGDzc1ERBpk8x6BzoZAbnws1BZeG_tZNN4EAKTo,6670
|
|
2062
|
+
scitex/scholar/url_finder/translators/individual/Cascadilla_Proceedings_Project.py,sha256=eDZWBdzVHjQnhFhneaFKosKFcbRsPhlJIVguDjoWixk,7098
|
|
2063
|
+
scitex/scholar/url_finder/translators/individual/Central_and_Eastern_European_Online_Library_Journals.py,sha256=DsGGR_jzulA3KaOe6CDbifvpGgPT2Zun5mMCAgALXls,5997
|
|
2064
|
+
scitex/scholar/url_finder/translators/individual/Champlain_Society_Collection.py,sha256=bel6g4nJcCySXwRGdu-QfnGApWP745vNdSD7z69dizY,5699
|
|
2065
|
+
scitex/scholar/url_finder/translators/individual/Chicago_Journal_of_Theoretical_Computer_Science.py,sha256=f309rDfvFeUakZo91_W5DNgnm6D8U_fw5Ep2Su88G88,7191
|
|
2066
|
+
scitex/scholar/url_finder/translators/individual/Christian_Science_Monitor.py,sha256=PuNY0QpGSip2mf6hAWWoQJC8-8hp-zKT12AKxKb1Tr0,3650
|
|
2067
|
+
scitex/scholar/url_finder/translators/individual/Columbia_University_Press.py,sha256=wbs0F77BK7ygpc22pNR9v2Nw7AEnhSDMN5-hDV79reI,7699
|
|
2068
|
+
scitex/scholar/url_finder/translators/individual/Common_Place.py,sha256=hLtOaciyB6i3MDybC05FAIm3Ua3kDD4focyJTX81ezU,8446
|
|
2069
|
+
scitex/scholar/url_finder/translators/individual/Cornell_LII.py,sha256=8PIog4-P_mTJyXybps0nkW8rqalKVGqPOgRq7IZdEgA,6184
|
|
2070
|
+
scitex/scholar/url_finder/translators/individual/Cornell_University_Press.py,sha256=FHJpa7_1bI9kmWlKqKgftlS3s4JkFseeBISkc-3WQFs,5401
|
|
2071
|
+
scitex/scholar/url_finder/translators/individual/CourtListener.py,sha256=4guclJuoP2GUp6NkkKB4z-aWynPVb7L9F6c_QrnX248,5877
|
|
2072
|
+
scitex/scholar/url_finder/translators/individual/DAI_Zenon.py,sha256=-4pqwE3dvwDmsl4TFYMQW4_-gWvO68k5GclMHUCqBCU,5145
|
|
1983
2073
|
scitex/scholar/url_finder/translators/individual/FULL_DOWNLOAD_LOG.txt,sha256=s1Ej8RoZxeChpD3UKGGpj9NDwkbrNNUseWr2mPrUAUU,37
|
|
1984
2074
|
scitex/scholar/url_finder/translators/individual/FULL_DOWNLOAD_LOG_colored.txt,sha256=f9v6QkfMWaXWSJ3kg5a2PA8ncVynnr3VexTquagE9dQ,13
|
|
1985
2075
|
scitex/scholar/url_finder/translators/individual/__init__.py,sha256=aS5UuwF7G9-IQdx-c8cZlYSX7G9QFzyGhKoPgAPMuWU,802
|
|
1986
2076
|
scitex/scholar/url_finder/translators/individual/abc_news_australia.py,sha256=lLECWY8IX03L7T6NZ9dAHZ7YUtAPZ9-bRmQO6a6-T3Q,602
|
|
1987
2077
|
scitex/scholar/url_finder/translators/individual/access_engineering.py,sha256=g4-utHL9DBRzy3ljsffutfTHoLiqHhuwGm5c0CPInZo,612
|
|
1988
|
-
scitex/scholar/url_finder/translators/individual/access_medicine.py,sha256=
|
|
2078
|
+
scitex/scholar/url_finder/translators/individual/access_medicine.py,sha256=5Mb7Vnq6Rw_8EVdHbIBHAkDepOD2-PEuRIbIZrTpCLw,8416
|
|
1989
2079
|
scitex/scholar/url_finder/translators/individual/access_science.py,sha256=MYLLxZzlV2KXhEH6Z4ui_IdMmKfiSN5C1xUUkPWIW1U,585
|
|
1990
2080
|
scitex/scholar/url_finder/translators/individual/acls_humanities_ebook.py,sha256=wv3NB-ryxtOjjKmPrqJRPxPVl5A8T2HK6XbktIbRq2Y,606
|
|
1991
2081
|
scitex/scholar/url_finder/translators/individual/aclweb.py,sha256=DR-WYQznh65yGf34SRtOKHqxsZBSRU6xwBk4r9o4Mo0,580
|
|
1992
|
-
scitex/scholar/url_finder/translators/individual/acm.py,sha256=
|
|
1993
|
-
scitex/scholar/url_finder/translators/individual/acm_digital_library.py,sha256=
|
|
2082
|
+
scitex/scholar/url_finder/translators/individual/acm.py,sha256=VU59de65_Ryz0IRJq-BbTMTkG0Kcw591ir8oySeopv8,318
|
|
2083
|
+
scitex/scholar/url_finder/translators/individual/acm_digital_library.py,sha256=r_OWRtgsxpNlb2uA0OJuqXKw_fD1rdlPO-NQEQfND0Y,13452
|
|
1994
2084
|
scitex/scholar/url_finder/translators/individual/acs.py,sha256=o-QDw8Khqaa5KpjoyLT6syQTxN-FUp5piTu7yL2_ngg,678
|
|
1995
2085
|
scitex/scholar/url_finder/translators/individual/acs_publications.py,sha256=wpu5O0Y5H2w7EPB40FIsCjW5aOQuzjZIZIKzmQ-ycj8,690
|
|
1996
2086
|
scitex/scholar/url_finder/translators/individual/adam_matthew_digital.py,sha256=dAzb8rYUjLqp_gOrlhDSM4VeeyKIG8dLHU0BG6M2h8w,616
|
|
@@ -2001,7 +2091,7 @@ scitex/scholar/url_finder/translators/individual/agris.py,sha256=ANeveWmbgPA2MJT
|
|
|
2001
2091
|
scitex/scholar/url_finder/translators/individual/ahval_news.py,sha256=MDWcGTRJLZe6bRFUaxg8CFcbnEM9dw-HslCGZuQVrIk,560
|
|
2002
2092
|
scitex/scholar/url_finder/translators/individual/aip.py,sha256=vq2wVCbSZTD4KkvxVVl9YXZgWHOHhVMufwQjP9UWUfA,557
|
|
2003
2093
|
scitex/scholar/url_finder/translators/individual/air_university_journals.py,sha256=9vQrLCf2zqzMoc6NX3IooZpL5cU22t9YekF_ttwgjmE,634
|
|
2004
|
-
scitex/scholar/url_finder/translators/individual/airiti.py,sha256=
|
|
2094
|
+
scitex/scholar/url_finder/translators/individual/airiti.py,sha256=i7S9aW4zd2BbhDLUfR6Ca8Ld85NLIXOLV2wlb-a3GxU,601
|
|
2005
2095
|
scitex/scholar/url_finder/translators/individual/alexander_street_press.py,sha256=8RXgkFwMge-DhyKututyG__jXUJPuIuEfU8D3XpBJow,615
|
|
2006
2096
|
scitex/scholar/url_finder/translators/individual/all_africa.py,sha256=6J90-tMZZ4LSwyh1F8J51pGM7YGiH-K6_BeKh6U1WyM,581
|
|
2007
2097
|
scitex/scholar/url_finder/translators/individual/allafrica.py,sha256=XpUIuVif14suwswfhb9yGEsvneYOoHVg-hEYw9mcv9k,581
|
|
@@ -2019,7 +2109,7 @@ scitex/scholar/url_finder/translators/individual/ancestry_com_us_federal_census.
|
|
|
2019
2109
|
scitex/scholar/url_finder/translators/individual/ancestry_us_federal_census.py,sha256=XuUV6_BUgU9ALC3csYA8AOzKaMe9pL3YXzt3SvDBAgE,641
|
|
2020
2110
|
scitex/scholar/url_finder/translators/individual/annual_reviews.py,sha256=-LP0hMt6bM4mtLOkep4Cs_Zlv3KAby0hlztXZxi92_o,662
|
|
2021
2111
|
scitex/scholar/url_finder/translators/individual/antikvarium_hu.py,sha256=BJ4KG5679YRJij53UQOje9fOZbfalPwscBlbcpL1k_c,585
|
|
2022
|
-
scitex/scholar/url_finder/translators/individual/aosic.py,sha256=
|
|
2112
|
+
scitex/scholar/url_finder/translators/individual/aosic.py,sha256=vkDW5LCWVmwuco-8IC62U5HixG-5bpl6k421VCbnCv8,779
|
|
2023
2113
|
scitex/scholar/url_finder/translators/individual/apa_psycnet.py,sha256=zV-DDBs3PTqREQ_VTR8Ra7FEIKsATybhrPR6a74t4d4,573
|
|
2024
2114
|
scitex/scholar/url_finder/translators/individual/apn_ru.py,sha256=0HOlRZxFZRTQA9U_1MsiZURw7x8EIB3KoEsF74t6PpA,545
|
|
2025
2115
|
scitex/scholar/url_finder/translators/individual/aps.py,sha256=BsplpOzIVAGIuXAbtEiH9jiN96cjUvSJ8GqYzX_oSmU,609
|
|
@@ -2027,74 +2117,74 @@ scitex/scholar/url_finder/translators/individual/aps_physics.py,sha256=-GxiYFDag
|
|
|
2027
2117
|
scitex/scholar/url_finder/translators/individual/aquadocs.py,sha256=VLYAJ6KQur3GWGEd_xgwR6jOQikHfjxSdkyHE4_ZLTk,576
|
|
2028
2118
|
scitex/scholar/url_finder/translators/individual/archeion.py,sha256=KQrSojQ95G13sF87Uow2raFXh8XBPkTTjSFGIPJbgbw,582
|
|
2029
2119
|
scitex/scholar/url_finder/translators/individual/archiv_fuer_sozialgeschichte.py,sha256=_yECcr8iAzRnh4ZrTtr6ukUSN_n9giLVDC6NoAdU5-U,641
|
|
2030
|
-
scitex/scholar/url_finder/translators/individual/archive_ouverte_aosic.py,sha256=
|
|
2031
|
-
scitex/scholar/url_finder/translators/individual/archive_ouverte_en_sciences_de_l_information_et_de_la_communication___aosic_.py,sha256=
|
|
2120
|
+
scitex/scholar/url_finder/translators/individual/archive_ouverte_aosic.py,sha256=PEQzK7g5-yflS5mX3P-PtQKTjFtb--ksSvs1X15A5Wk,793
|
|
2121
|
+
scitex/scholar/url_finder/translators/individual/archive_ouverte_en_sciences_de_l_information_et_de_la_communication___aosic_.py,sha256=wYaeMNITjbWFlgh4EhfOsMZFoVh6pQKWagNsOUA80Tg,845
|
|
2032
2122
|
scitex/scholar/url_finder/translators/individual/archives_canada.py,sha256=LJZAY-FHaZKUdt2sRJXW7ZWtarVqz3qovI4CxR7C6kY,591
|
|
2033
2123
|
scitex/scholar/url_finder/translators/individual/ariana_news.py,sha256=rs009_0S1VmHAv7R5RIg_0j2UeUMwtKVIHPCrxE76Uw,563
|
|
2034
2124
|
scitex/scholar/url_finder/translators/individual/art_institute_of_chicago.py,sha256=bbaykYNucohIsyZNU4sJfS7kat--fKw1dld420N3J-I,640
|
|
2035
2125
|
scitex/scholar/url_finder/translators/individual/artefacts_canada.py,sha256=yKOjajgNSoDTXe5RO0SmmmSfK4vgaVhb4Z7RgLXjGRk,599
|
|
2036
2126
|
scitex/scholar/url_finder/translators/individual/artfl_encyclopedie.py,sha256=N09EPjd1D98_JUa7p9XhjVrCOZ-Mk7SLjgXsx8_nzf4,649
|
|
2037
|
-
scitex/scholar/url_finder/translators/individual/artforum.py,sha256=
|
|
2127
|
+
scitex/scholar/url_finder/translators/individual/artforum.py,sha256=gsfGPV-t_rS2Qz-mr-O1Tt0Sl75JT1SX2uqjk1Xd130,4958
|
|
2038
2128
|
scitex/scholar/url_finder/translators/individual/artnet.py,sha256=D9fy5pixpkGc3zBITK-HwYN6vwhbYnGjJai8EZp7YN0,549
|
|
2039
2129
|
scitex/scholar/url_finder/translators/individual/artnews.py,sha256=oJax-JDrhwh9jFSWiJ8miFyphKSnp_EEd3F6AkkQ9Hk,554
|
|
2040
2130
|
scitex/scholar/url_finder/translators/individual/artstor.py,sha256=2uU672Ji1dkHiHcWo4SqbMouBl_POoenn3zhsXkwNcA,556
|
|
2041
|
-
scitex/scholar/url_finder/translators/individual/arxiv.py,sha256=
|
|
2042
|
-
scitex/scholar/url_finder/translators/individual/arxiv_org.py,sha256=
|
|
2131
|
+
scitex/scholar/url_finder/translators/individual/arxiv.py,sha256=Obf5qwd6jCxcxOtFunUixjzNyyL1qny76zNM74k1uGE,1141
|
|
2132
|
+
scitex/scholar/url_finder/translators/individual/arxiv_org.py,sha256=dd3-aGKUMBKIsTEOx3Kl23zlArFDwIYH2jrXYSZ_Dl8,4458
|
|
2043
2133
|
scitex/scholar/url_finder/translators/individual/asce.py,sha256=8CcR2tYxpUDuGks5EhcRK7KW-WvmloacW4LAVLQjczM,564
|
|
2044
2134
|
scitex/scholar/url_finder/translators/individual/asco_meeting_library.py,sha256=SxBpZUOK9_KPk05Ze4vN3cakFwVgPnNLtvzrwIGVBsk,626
|
|
2045
2135
|
scitex/scholar/url_finder/translators/individual/astis.py,sha256=Xk95HQ6nWTxE8tmgW3svo3biobD7mXYxM85ffZzjcXY,553
|
|
2046
|
-
scitex/scholar/url_finder/translators/individual/atlanta_journal_constitution.py,sha256=
|
|
2136
|
+
scitex/scholar/url_finder/translators/individual/atlanta_journal_constitution.py,sha256=AwFr-RvyFiJTqxBUel9i8BwMR6qtaXA9A85_rr_CbNo,4351
|
|
2047
2137
|
scitex/scholar/url_finder/translators/individual/ats_international_journal.py,sha256=w0y8nkxf_fRFENfoyhEPZJBvvxzYyIHtHi1sggZnOso,641
|
|
2048
2138
|
scitex/scholar/url_finder/translators/individual/atypon.py,sha256=EJx3QGbQUXBVkeSYFTyHl5VTn84RbXyzZy1CqBiMQAA,661
|
|
2049
|
-
scitex/scholar/url_finder/translators/individual/atypon_journals.py,sha256=
|
|
2050
|
-
scitex/scholar/url_finder/translators/individual/austlii_and_nzlii.py,sha256=
|
|
2051
|
-
scitex/scholar/url_finder/translators/individual/australian_dictionary_of_biography.py,sha256=
|
|
2052
|
-
scitex/scholar/url_finder/translators/individual/bailii.py,sha256=
|
|
2053
|
-
scitex/scholar/url_finder/translators/individual/bbc.py,sha256=
|
|
2054
|
-
scitex/scholar/url_finder/translators/individual/bbc_genome.py,sha256=
|
|
2139
|
+
scitex/scholar/url_finder/translators/individual/atypon_journals.py,sha256=kcBRcuLHkm6Mw9ETyuEphLp5o8YxmcDZlH7-bSouL9o,8678
|
|
2140
|
+
scitex/scholar/url_finder/translators/individual/austlii_and_nzlii.py,sha256=cqg31b1aLPwTycGNqSXVqL-WStFjnyEBki2K4Xn7S6Y,8553
|
|
2141
|
+
scitex/scholar/url_finder/translators/individual/australian_dictionary_of_biography.py,sha256=0l4fDjacRl8sfvwGaEhZMsLWSJcMI1YFJ5GE1WV2WiE,3701
|
|
2142
|
+
scitex/scholar/url_finder/translators/individual/bailii.py,sha256=jxjuwzyQ7K3oCevyTlwf7T13TcDjrj0YGe0vYBdG_74,3573
|
|
2143
|
+
scitex/scholar/url_finder/translators/individual/bbc.py,sha256=w_8P--_XXk97qDp8US-CumH1jTR-lvKTwziOic9CH2c,7523
|
|
2144
|
+
scitex/scholar/url_finder/translators/individual/bbc_genome.py,sha256=fyvMv4waJ9XyLaVzaMfWSLpfYbndVVduoAKoznCs334,5366
|
|
2055
2145
|
scitex/scholar/url_finder/translators/individual/beck_online.py,sha256=A-GPTAenZUBzgPCWe9KSTh5rjHanvSbeTQVPOIo_42M,574
|
|
2056
|
-
scitex/scholar/url_finder/translators/individual/biblioteca_nacional_de_maestros.py,sha256=
|
|
2057
|
-
scitex/scholar/url_finder/translators/individual/bibliotheque_archives_nationale_quebec_pistard.py,sha256=
|
|
2058
|
-
scitex/scholar/url_finder/translators/individual/bibliotheque_archives_nationales_quebec.py,sha256=
|
|
2146
|
+
scitex/scholar/url_finder/translators/individual/biblioteca_nacional_de_maestros.py,sha256=qF-aYEWi3oH7O2XNLvFRY31Mg1bh4oC5VF0Js7BwUdA,4226
|
|
2147
|
+
scitex/scholar/url_finder/translators/individual/bibliotheque_archives_nationale_quebec_pistard.py,sha256=iNJnuu6HIBTH9XHPeVVjNTi8OJDjiTzCBm5srwzGnLg,4402
|
|
2148
|
+
scitex/scholar/url_finder/translators/individual/bibliotheque_archives_nationales_quebec.py,sha256=lX4YsM513Hh_pTGG_bOpANaQ9H_Ne5eVjy6GIp5dY4s,6854
|
|
2059
2149
|
scitex/scholar/url_finder/translators/individual/bibliotheque_et_archives_nationale_du_quebec__pistard_.py,sha256=TNbih_d_btGjC0tjgr99Dp_WWy4lxU1l_xL_wXGMams,735
|
|
2060
2150
|
scitex/scholar/url_finder/translators/individual/bibliotheque_et_archives_nationales_du_quebec.py,sha256=S_nHVe1ytoCrNm86SgYg9luhxui8dhLHsdbzcyTGUjc,705
|
|
2061
2151
|
scitex/scholar/url_finder/translators/individual/bibliotheque_nationale_de_france.py,sha256=6bTM7ETW6cxLTx2nG0fJDaufa1mT9LW5o7xYSw1wTEk,654
|
|
2062
|
-
scitex/scholar/url_finder/translators/individual/bibliotheque_nationale_france.py,sha256=
|
|
2063
|
-
scitex/scholar/url_finder/translators/individual/bibsys.py,sha256
|
|
2064
|
-
scitex/scholar/url_finder/translators/individual/bioconductor.py,sha256=
|
|
2065
|
-
scitex/scholar/url_finder/translators/individual/biomed_central.py,sha256=
|
|
2152
|
+
scitex/scholar/url_finder/translators/individual/bibliotheque_nationale_france.py,sha256=kHkOSYgCMfP1yhli90CioCSqKNQorm_TSaI_nSlgHdk,5386
|
|
2153
|
+
scitex/scholar/url_finder/translators/individual/bibsys.py,sha256=-6DR6VHkeSWswHG1767jbqfAuy_Uz5PYMLDhfrDER2A,4974
|
|
2154
|
+
scitex/scholar/url_finder/translators/individual/bioconductor.py,sha256=96oVo02hKqaKfe_aMVbmhF8kiBThR8zgOpNmuBmX81U,6321
|
|
2155
|
+
scitex/scholar/url_finder/translators/individual/biomed_central.py,sha256=eXiLi9kbxEZAWmcZgDrI2HayxjBUTH-UYXOZQVxlJN4,5224
|
|
2066
2156
|
scitex/scholar/url_finder/translators/individual/bioone.py,sha256=ghHtMb70AKTMXFsDalSkd2mDrYO1TmUMsqwcjR-wXHA,563
|
|
2067
|
-
scitex/scholar/url_finder/translators/individual/biorxiv.py,sha256=
|
|
2157
|
+
scitex/scholar/url_finder/translators/individual/biorxiv.py,sha256=k9rswFtn8GjWkaA7yE5ZA5WnAAaZywOu5t-secZTfSE,5389
|
|
2068
2158
|
scitex/scholar/url_finder/translators/individual/blaetter.py,sha256=Z1RHpBuuZyGp41XyG-C_PTNjSA5fO-vhlSxEa-u21vI,555
|
|
2069
|
-
scitex/scholar/url_finder/translators/individual/blogger.py,sha256=
|
|
2070
|
-
scitex/scholar/url_finder/translators/individual/bloomberg.py,sha256=
|
|
2071
|
-
scitex/scholar/url_finder/translators/individual/bloomsbury_food_library.py,sha256=
|
|
2072
|
-
scitex/scholar/url_finder/translators/individual/bluesky.py,sha256=
|
|
2073
|
-
scitex/scholar/url_finder/translators/individual/bnf_isbn.py,sha256=
|
|
2074
|
-
scitex/scholar/url_finder/translators/individual/bocc.py,sha256=
|
|
2075
|
-
scitex/scholar/url_finder/translators/individual/boe.py,sha256=
|
|
2159
|
+
scitex/scholar/url_finder/translators/individual/blogger.py,sha256=RqvrM182BUhSxDiIQ2ZWForc2FYhiqW5KZmbxMiHzbA,4490
|
|
2160
|
+
scitex/scholar/url_finder/translators/individual/bloomberg.py,sha256=cup8I5_XL9-keMFjNpPI7JxqFjDpnAgQ1Pbj-Lyhj6E,5452
|
|
2161
|
+
scitex/scholar/url_finder/translators/individual/bloomsbury_food_library.py,sha256=x1i3AtHbMoMuUWj7rKnVrEj0fdYtfzd8op_Zs52ODBQ,4181
|
|
2162
|
+
scitex/scholar/url_finder/translators/individual/bluesky.py,sha256=rF7y8QYYXS8HogFYMuPI9E5riyOjBVqk0-lnI27G-ec,4085
|
|
2163
|
+
scitex/scholar/url_finder/translators/individual/bnf_isbn.py,sha256=fohq91e2hhap73lsxCJd2v6H2ue-AFjZbTxgYMBlzxU,3239
|
|
2164
|
+
scitex/scholar/url_finder/translators/individual/bocc.py,sha256=K8LkOgN6C0DT9Hv3FV_J-yU7WujdXCtKAZNhglHevsI,6920
|
|
2165
|
+
scitex/scholar/url_finder/translators/individual/boe.py,sha256=8gIi9uiC1XR0Hk6AqcSwcSIDMD0Ls_Fmv7sti4V6ZnM,6016
|
|
2076
2166
|
scitex/scholar/url_finder/translators/individual/bookmarks.py,sha256=_OOqtpxiPUKf3x75xlVLYSbZW0C02YrIfmnhQt-OaHY,536
|
|
2077
2167
|
scitex/scholar/url_finder/translators/individual/bookshop_org.py,sha256=Zz8Y_rZ2Gmr1LtihR8RfpVCl3yRO1zWzz_ivwA37wsk,571
|
|
2078
2168
|
scitex/scholar/url_finder/translators/individual/boston_review.py,sha256=tgDsCVo-emjm8Rcaa1TOg9Ng5E2wpf5pougWdRFoZ60,583
|
|
2079
2169
|
scitex/scholar/url_finder/translators/individual/bosworth_toller_anglo_saxon_dictionary.py,sha256=tjn5K698_u8i1TkSIjnp0QV7rWc1wopB8szqosXCgss,700
|
|
2080
2170
|
scitex/scholar/url_finder/translators/individual/bosworth_toller_s_anglo_saxon_dictionary_online.py,sha256=BrOryBPMpMJWovZ5KI89FGu8rswwzrUKzmkz6go18cs,707
|
|
2081
2171
|
scitex/scholar/url_finder/translators/individual/bracero_history_archive.py,sha256=kJ2rNLo_5iQRIHgEv4SGtkzJ9Mo22jxd9w2f-KFhV4w,615
|
|
2082
|
-
scitex/scholar/url_finder/translators/individual/brill.py,sha256=
|
|
2172
|
+
scitex/scholar/url_finder/translators/individual/brill.py,sha256=QbzqVBLfAitXYUpxwIafSVsSH5NyiMAVrLR0eAVMXKo,604
|
|
2083
2173
|
scitex/scholar/url_finder/translators/individual/brukerhandboken.py,sha256=9kBfhAYu8-mJgIykXIviwJAbHq-gskNnKj2T_nY_uiw,598
|
|
2084
2174
|
scitex/scholar/url_finder/translators/individual/bryn_mawr_classical_review.py,sha256=ZZgoK4v9YMrR29zkCTUL-ILccrISeIiKtBhL2BgceYo,627
|
|
2085
2175
|
scitex/scholar/url_finder/translators/individual/bundesgesetzblatt.py,sha256=4AdLm4O8NYHpzSwjEq9GNhNPNoefk_gb7qOPmux75B4,588
|
|
2086
|
-
scitex/scholar/url_finder/translators/individual/business_standard.py,sha256=
|
|
2176
|
+
scitex/scholar/url_finder/translators/individual/business_standard.py,sha256=uhsu8G53WHky1SeJtCOezbdlGP26TnbXusCLi9guaHk,5501
|
|
2087
2177
|
scitex/scholar/url_finder/translators/individual/cabi___cab_abstracts.py,sha256=I1m6XUqxcFSg-ziYlQfYWdGFhtIlS5dXdRk3FS5fQuc,615
|
|
2088
|
-
scitex/scholar/url_finder/translators/individual/cabi_cab_abstracts.py,sha256=
|
|
2178
|
+
scitex/scholar/url_finder/translators/individual/cabi_cab_abstracts.py,sha256=Jy0SD08hTjlwRvqgXvJzV1SRGcAEppm-fxVIfSKXFcE,5411
|
|
2089
2179
|
scitex/scholar/url_finder/translators/individual/cairn.py,sha256=MnU9YPddnoYjH4n2Bfw04PErwGNPnnNCH384MNeROWc,558
|
|
2090
2180
|
scitex/scholar/url_finder/translators/individual/cairn_info.py,sha256=RCOO332l3XmAnqZOgbCnRcKFDqi027h1F9SoLAj5QME,562
|
|
2091
|
-
scitex/scholar/url_finder/translators/individual/cambridge.py,sha256=
|
|
2092
|
-
scitex/scholar/url_finder/translators/individual/cambridge_core.py,sha256=
|
|
2181
|
+
scitex/scholar/url_finder/translators/individual/cambridge.py,sha256=nKG3_RjWTtty_d1nocSGtB7lBzcI4ZkzgBF6zEfyNVE,637
|
|
2182
|
+
scitex/scholar/url_finder/translators/individual/cambridge_core.py,sha256=qDDwqhnFXGRpf9yFZ1VYcoDE4NEOgOWs6yEpzQA7HLs,6613
|
|
2093
2183
|
scitex/scholar/url_finder/translators/individual/cambridge_engage_preprints.py,sha256=5X97RH-KSldbS5kACj_0-erfH5FGS51ZQ3V68T4cqGM,649
|
|
2094
|
-
scitex/scholar/url_finder/translators/individual/caod.py,sha256=
|
|
2095
|
-
scitex/scholar/url_finder/translators/individual/cbc.py,sha256=
|
|
2184
|
+
scitex/scholar/url_finder/translators/individual/caod.py,sha256=FSYz-cjPOxG0l8qE_-Y8djFfhpE0HP76SseshGlI7tM,7074
|
|
2185
|
+
scitex/scholar/url_finder/translators/individual/cbc.py,sha256=SmUA_XaGAW78MdkGxtPz46XX-Wx5SCXW5WxshXa2BFI,8527
|
|
2096
2186
|
scitex/scholar/url_finder/translators/individual/ccfr__bnf_.py,sha256=J6Ydkw6yzK15ioY7mAJu2iu6l8fHNAuWZZRcjLcFc4U,626
|
|
2097
|
-
scitex/scholar/url_finder/translators/individual/ccfr_bnf.py,sha256=
|
|
2187
|
+
scitex/scholar/url_finder/translators/individual/ccfr_bnf.py,sha256=1R-4GLvU-eJFWxYsSf8N6iiPG2D4d0313jfAlccj7cM,6875
|
|
2098
2188
|
scitex/scholar/url_finder/translators/individual/cell_press.py,sha256=qZtAMhK5xDpPQHg4jxguIPyd54MpGeivWrY6xLs45KM,579
|
|
2099
2189
|
scitex/scholar/url_finder/translators/individual/cern_document_server.py,sha256=qqKEOI_KhiEKm0-_QlQnQ1b5mZKjd5GzoqfFBf03haw,628
|
|
2100
2190
|
scitex/scholar/url_finder/translators/individual/ceur_workshop_proceedings.py,sha256=FZPpVB2W2nvorbRcawVJLpq1QiFqjPE7hWtU3MuP-LI,620
|
|
@@ -2102,7 +2192,7 @@ scitex/scholar/url_finder/translators/individual/cff.py,sha256=V-Agynb2EVa33UGV6
|
|
|
2102
2192
|
scitex/scholar/url_finder/translators/individual/cff_references.py,sha256=JmgCJkmHnad0f6YITAcakFZLbOgzIQLLFhHvC9qwN88,554
|
|
2103
2193
|
scitex/scholar/url_finder/translators/individual/champlain_society___collection.py,sha256=7beuu3VObELjIklTyoJ0xBLUspCCAHqxgZ4J72h2ckw,649
|
|
2104
2194
|
scitex/scholar/url_finder/translators/individual/chronicling_america.py,sha256=ohDJH5DD6jKhc89ItEoru3gg_VERoXmQyRIULy9qRwI,609
|
|
2105
|
-
scitex/scholar/url_finder/translators/individual/cia_world_factbook.py,sha256=
|
|
2195
|
+
scitex/scholar/url_finder/translators/individual/cia_world_factbook.py,sha256=tXsjV9K9msvWm_FI6XlRKAegRKFtErrIeuKEfN9qGbc,5110
|
|
2106
2196
|
scitex/scholar/url_finder/translators/individual/cinii_research.py,sha256=ea4KhqnL4wHK4425Ezb24YgN_GvzW9tvUzP6jKmHGMs,578
|
|
2107
2197
|
scitex/scholar/url_finder/translators/individual/citavi_5_xml.py,sha256=iH0Gow2MYUtACVCkH7z9aXqJQzN-0pxETv3o4zCIRfs,545
|
|
2108
2198
|
scitex/scholar/url_finder/translators/individual/citeseer.py,sha256=yaK0GiXu9vQ0N_ws77Ou6RGHGU4zSHCC3T--O-b4cUE,563
|
|
@@ -2118,79 +2208,79 @@ scitex/scholar/url_finder/translators/individual/code4lib_journal.py,sha256=whrQ
|
|
|
2118
2208
|
scitex/scholar/url_finder/translators/individual/colorado_state_legislature.py,sha256=3aB6U4ZWvAv6gunYXix0jiyTEG5R0qKHPjPV6F3XfKQ,646
|
|
2119
2209
|
scitex/scholar/url_finder/translators/individual/computer_history_museum_archive.py,sha256=CqgBrv4sGuRUq9u8ux3ddlgBar3yDZNJtIOyuodmWxA,665
|
|
2120
2210
|
scitex/scholar/url_finder/translators/individual/copernicus.py,sha256=hRxcD02QKIOTOTnQVDez_MUJpNR9R284_YDTJxlHNDc,570
|
|
2121
|
-
scitex/scholar/url_finder/translators/individual/crossref_rest.py,sha256=
|
|
2211
|
+
scitex/scholar/url_finder/translators/individual/crossref_rest.py,sha256=_qM5CTOSeJ4qLdLAMQenSOuOptfuiZsdMcR90PldRK0,20397
|
|
2122
2212
|
scitex/scholar/url_finder/translators/individual/crossref_unixref_xml.py,sha256=ThGqe3DVk3Q3CyWq4DzATbzIKT64tLBnsAu0bGUmym4,577
|
|
2123
2213
|
scitex/scholar/url_finder/translators/individual/csiro_publishing.py,sha256=wP7e-ksuY56NJuARFpIXJ9VmyAwrwgPiGqp61fzHeOI,596
|
|
2124
2214
|
scitex/scholar/url_finder/translators/individual/csiro_publishing_dup.py,sha256=wP7e-ksuY56NJuARFpIXJ9VmyAwrwgPiGqp61fzHeOI,596
|
|
2125
|
-
scitex/scholar/url_finder/translators/individual/current_affairs.py,sha256=
|
|
2126
|
-
scitex/scholar/url_finder/translators/individual/dabi.py,sha256=
|
|
2127
|
-
scitex/scholar/url_finder/translators/individual/dagens_nyheter.py,sha256=
|
|
2128
|
-
scitex/scholar/url_finder/translators/individual/dagstuhl.py,sha256=
|
|
2215
|
+
scitex/scholar/url_finder/translators/individual/current_affairs.py,sha256=Xy3HZ7_DJLBb6r9NZdUI6Mdsh_573RU5p_9Do-OSBaM,3714
|
|
2216
|
+
scitex/scholar/url_finder/translators/individual/dabi.py,sha256=bLt_f7DGQgI6ai29Bj5q1WUiwmlGx9lvP7SSZhSagmk,6549
|
|
2217
|
+
scitex/scholar/url_finder/translators/individual/dagens_nyheter.py,sha256=htPRZgI7Fk0XztH_S5AbbcS107-hd34PTBtn1-YmE2I,629
|
|
2218
|
+
scitex/scholar/url_finder/translators/individual/dagstuhl.py,sha256=XxO--p1Lfywe_Pj0t9nL4xyzkyG2Bhws-XS0AV3JpWo,4124
|
|
2129
2219
|
scitex/scholar/url_finder/translators/individual/dagstuhl_research_online_publication_server.py,sha256=CDIA_9IJjgmEfRxtThC32psBVnaElVBp7kSPn7AWzy4,702
|
|
2130
|
-
scitex/scholar/url_finder/translators/individual/dar_almandumah.py,sha256=
|
|
2131
|
-
scitex/scholar/url_finder/translators/individual/dart_europe.py,sha256=
|
|
2132
|
-
scitex/scholar/url_finder/translators/individual/data_gov.py,sha256=
|
|
2133
|
-
scitex/scholar/url_finder/translators/individual/databrary.py,sha256=
|
|
2134
|
-
scitex/scholar/url_finder/translators/individual/datacite_json.py,sha256=
|
|
2135
|
-
scitex/scholar/url_finder/translators/individual/dataverse.py,sha256=
|
|
2136
|
-
scitex/scholar/url_finder/translators/individual/daum_news.py,sha256=
|
|
2137
|
-
scitex/scholar/url_finder/translators/individual/dblp.py,sha256=
|
|
2138
|
-
scitex/scholar/url_finder/translators/individual/dblp_computer_science_bibliography.py,sha256=
|
|
2139
|
-
scitex/scholar/url_finder/translators/individual/dbpia.py,sha256=
|
|
2220
|
+
scitex/scholar/url_finder/translators/individual/dar_almandumah.py,sha256=Sk92qE29k9Np8N8rU-Rftw9exqlN_-IUU6TyrbWyu7o,4322
|
|
2221
|
+
scitex/scholar/url_finder/translators/individual/dart_europe.py,sha256=J0QD4dsGEmYeM68-tEbWveMB8xIdB2cL3G6ZGBQWsVA,4919
|
|
2222
|
+
scitex/scholar/url_finder/translators/individual/data_gov.py,sha256=88MC1x038q0k4GR_-werb8dbsxRXhrYhks9u60ZhlPo,3852
|
|
2223
|
+
scitex/scholar/url_finder/translators/individual/databrary.py,sha256=WwBj7RPlYZFV3NrAZKQxEqxoegg-VL-uz1J4aS0lZXw,4295
|
|
2224
|
+
scitex/scholar/url_finder/translators/individual/datacite_json.py,sha256=pzbb5FLm2C5wU5viNnkkm-xmPSy24nOubl6YQuLaN7M,9254
|
|
2225
|
+
scitex/scholar/url_finder/translators/individual/dataverse.py,sha256=g__FJGeymdXZMQm6E7SOqx-e0lfzrK6tu3o1NsZmAno,7093
|
|
2226
|
+
scitex/scholar/url_finder/translators/individual/daum_news.py,sha256=8vrodTD274gRbb_SPT-XgNoYg1e4R_egNhc55VWunj8,4010
|
|
2227
|
+
scitex/scholar/url_finder/translators/individual/dblp.py,sha256=NrZe2HvXGTuLfFdav05I_MgiRxU5kjfgQkQ9X42XUvs,4506
|
|
2228
|
+
scitex/scholar/url_finder/translators/individual/dblp_computer_science_bibliography.py,sha256=NwJpHH_DY5GQqqXV_73xlY25xMWXWLVuc_c6axbnLFs,3275
|
|
2229
|
+
scitex/scholar/url_finder/translators/individual/dbpia.py,sha256=vo5JPJK8h4hj_7Wzb49wM3uuW77KsXG00EVj4ME1RKs,2677
|
|
2140
2230
|
scitex/scholar/url_finder/translators/individual/de_gruyter_brill.py,sha256=_-clSyjPXh7JvfuMQVqy-343AyPYBJa5dDZIkEz2Uqs,593
|
|
2141
|
-
scitex/scholar/url_finder/translators/individual/defense_technical_information_center.py,sha256=
|
|
2231
|
+
scitex/scholar/url_finder/translators/individual/defense_technical_information_center.py,sha256=9sME4z7tot6M0RgET-jm_mD42Es_RToBkKzh-QIvhbk,3515
|
|
2142
2232
|
scitex/scholar/url_finder/translators/individual/dejure_org.py,sha256=YHvi3tNYo0xGEqBk-5hpznIAzAOPJv3n4w3B1WkqGJs,557
|
|
2143
|
-
scitex/scholar/url_finder/translators/individual/delpher.py,sha256=
|
|
2144
|
-
scitex/scholar/url_finder/translators/individual/demographic_research.py,sha256=
|
|
2145
|
-
scitex/scholar/url_finder/translators/individual/denik_cz.py,sha256=
|
|
2146
|
-
scitex/scholar/url_finder/translators/individual/depatisnet.py,sha256=
|
|
2147
|
-
scitex/scholar/url_finder/translators/individual/der_freitag.py,sha256=
|
|
2148
|
-
scitex/scholar/url_finder/translators/individual/der_spiegel.py,sha256=
|
|
2233
|
+
scitex/scholar/url_finder/translators/individual/delpher.py,sha256=3KSZ0XnDQ24iGLjyrd1eXd83mV7wNGt3_zuyanLS0JM,7574
|
|
2234
|
+
scitex/scholar/url_finder/translators/individual/demographic_research.py,sha256=klsursR_7RMb_uwvWQjND6-zz_j21TKYDt8R4Krm4Xw,4840
|
|
2235
|
+
scitex/scholar/url_finder/translators/individual/denik_cz.py,sha256=p0TqR__JWrQlbk2nQDsM7qX-MMiyOfpHUGl6KL1f6fE,5192
|
|
2236
|
+
scitex/scholar/url_finder/translators/individual/depatisnet.py,sha256=pfUmNeGXuyzo-rPWjCkeGQfeyoURtluLjm0CEa1yadM,4037
|
|
2237
|
+
scitex/scholar/url_finder/translators/individual/der_freitag.py,sha256=CPamXLTqL7-sSjWdHl4970J84clHKkJdatt_KrLjXBM,7036
|
|
2238
|
+
scitex/scholar/url_finder/translators/individual/der_spiegel.py,sha256=dnWVy_w-chxJLTnqXkZoC_nrMR4m7413o9yB2SF6lS8,6217
|
|
2149
2239
|
scitex/scholar/url_finder/translators/individual/desiring_god.py,sha256=xYNbdJR33Cvn3NQ3X52L1GT9ANiybygNTXQQgYJJrJo,578
|
|
2150
2240
|
scitex/scholar/url_finder/translators/individual/deutsche_fotothek.py,sha256=rz6YYFimiwrYQmR1FqWSemgZYWM1InJilPI8_UYVX28,599
|
|
2151
2241
|
scitex/scholar/url_finder/translators/individual/deutsche_nationalbibliothek.py,sha256=Jc57D9zUBNH1taCQBCuDp2QcRby0yyUH9_0-MLU-QAg,693
|
|
2152
2242
|
scitex/scholar/url_finder/translators/individual/dhistory.py,sha256=5aqbF9dXcQvem5K3HPXjS-SlqK6Sqfln6QVaWeKTLkg,582
|
|
2153
2243
|
scitex/scholar/url_finder/translators/individual/dialnet.py,sha256=ExDmP0hK5gaMqCTsedShUMKuRPpwd-wDKBBNgD4wsvQ,556
|
|
2154
2244
|
scitex/scholar/url_finder/translators/individual/die_zeit.py,sha256=5QdhaZEhD41RsDrI8h6YlC0F8nSrIhtYaNCJwFIEcgA,551
|
|
2155
|
-
scitex/scholar/url_finder/translators/individual/digibib_net.py,sha256=
|
|
2245
|
+
scitex/scholar/url_finder/translators/individual/digibib_net.py,sha256=2LqXf3hZyTGRujDx-hfM83lKJK79SBLM_i4KNTXDlT0,629
|
|
2156
2246
|
scitex/scholar/url_finder/translators/individual/digital_humanities_quarterly.py,sha256=hV0WG2kWZfoPuqycp7OHo2xT1y-kHBAAqVCACVrvGJs,653
|
|
2157
2247
|
scitex/scholar/url_finder/translators/individual/digital_spy.py,sha256=52A7IqejSemODyxQ848u7Nj5s5-QaLa4qRRJBYzzSHU,572
|
|
2158
|
-
scitex/scholar/url_finder/translators/individual/digizeitschriften.py,sha256=
|
|
2248
|
+
scitex/scholar/url_finder/translators/individual/digizeitschriften.py,sha256=0Q5DbSTxnAzjpH33omhKHye_SC8PhU7XxzkKNoCB8Wg,651
|
|
2159
2249
|
scitex/scholar/url_finder/translators/individual/dimensions.py,sha256=tOpLzI9W-qSKsfWlG_yL__iwfJfYByfzMVINxcxByMQ,566
|
|
2160
2250
|
scitex/scholar/url_finder/translators/individual/dlibra.py,sha256=w_Sq4dJm_3PzjQz_G9x2R6ESDjB8DSQO0soesMR6AYo,606
|
|
2161
2251
|
scitex/scholar/url_finder/translators/individual/doaj.py,sha256=7DaPcq_2G14IQrokIbqdUUx5kC8fuy3Z5v6Eg7MMEoE,557
|
|
2162
2252
|
scitex/scholar/url_finder/translators/individual/doi.py,sha256=Gg1aLHOxAlM7ja0DbzBvv2WJdzF_QRQiJduLXk4pTcg,534
|
|
2163
2253
|
scitex/scholar/url_finder/translators/individual/doi_content_negotiation.py,sha256=Ans2leuSpefiQlSShCkks077o_tWnsLbMaszIINsUtU,588
|
|
2164
2254
|
scitex/scholar/url_finder/translators/individual/douban.py,sha256=UFlkv6oiV5Jb-qPYUp3AnQayR7eDKIDF4npJ8RTudfU,668
|
|
2165
|
-
scitex/scholar/url_finder/translators/individual/dpla.py,sha256=
|
|
2255
|
+
scitex/scholar/url_finder/translators/individual/dpla.py,sha256=l6qHKBzSwLzWQmyAVwfppwriwgwOZJGQQlCdc5P_rns,5376
|
|
2166
2256
|
scitex/scholar/url_finder/translators/individual/dreier_neuerscheinungsdienst.py,sha256=khV74LpIg78QroNP6bPQZxZ_L0nQL4ZgCjeHK__oeDU,640
|
|
2167
2257
|
scitex/scholar/url_finder/translators/individual/drugbank_ca.py,sha256=qGNYC_rfxBnY_3lPasyTLQ_muGZ841vDrj0G2SwLU6g,576
|
|
2168
2258
|
scitex/scholar/url_finder/translators/individual/dryad.py,sha256=mwnOios4ZjRwU7S5h8GyxbBBmP1zTDlo4c5M-2xDGcE,606
|
|
2169
2259
|
scitex/scholar/url_finder/translators/individual/dryad_digital_repository.py,sha256=DJap-3_6MCP5YzNb0qnLqVR39myT1wOXcQHo8rHa8I4,623
|
|
2170
|
-
scitex/scholar/url_finder/translators/individual/dspace.py,sha256=
|
|
2260
|
+
scitex/scholar/url_finder/translators/individual/dspace.py,sha256=GvBvFwh5TbNqv_NcoYnYIoWqkWecLoQBugCvYCrlMcU,2783
|
|
2171
2261
|
scitex/scholar/url_finder/translators/individual/dspace_intermediate_metadata.py,sha256=ngy6Zgm3C1nADiIWVtJKqmIyGa5AuWlZR7FBxu9WCoA,609
|
|
2172
2262
|
scitex/scholar/url_finder/translators/individual/duke_university_press_books.py,sha256=AQWXwPJIZt0H5gsKG65BQmZpvTVqHpMLlY1_zyPHMWs,632
|
|
2173
2263
|
scitex/scholar/url_finder/translators/individual/e_periodica_switzerland.py,sha256=Lu0SWeHXI0PQqjkP00lGFWJg3HNosCIZnzuNQ5pSv38,626
|
|
2174
2264
|
scitex/scholar/url_finder/translators/individual/eastview.py,sha256=dGgO1wRATHXAnHH9TCcQeU2rep1SzKlEg7FNTK_F6CM,614
|
|
2175
|
-
scitex/scholar/url_finder/translators/individual/ebrary.py,sha256=
|
|
2265
|
+
scitex/scholar/url_finder/translators/individual/ebrary.py,sha256=xNJba5MroXmULUr-N-RRRIS6kGcRdutiVvRt2BJYVn8,601
|
|
2176
2266
|
scitex/scholar/url_finder/translators/individual/ebsco_discovery_layer.py,sha256=zXKKdlU1clPzie1fHBWjXvD1OxpUx-TPTTeZjBWcDKU,621
|
|
2177
|
-
scitex/scholar/url_finder/translators/individual/ebscohost.py,sha256=
|
|
2267
|
+
scitex/scholar/url_finder/translators/individual/ebscohost.py,sha256=rS2Swy_DpX_446LGdG6qINxJoS-btp0J0JoBJaPuktQ,613
|
|
2178
2268
|
scitex/scholar/url_finder/translators/individual/edinburgh_university_press_journals.py,sha256=c_FOruFtYzEHsamZxdlmwJlYa_0ZKc4Vypkh55ZpKo0,667
|
|
2179
2269
|
scitex/scholar/url_finder/translators/individual/education_week.py,sha256=bQKouwTZaG0eJ-AAPNJ-Ae3XEf17iUQsGe0rl9juvI0,591
|
|
2180
2270
|
scitex/scholar/url_finder/translators/individual/eidr.py,sha256=wZej2CyV7lRrkZyBG9JGOnQg6eDf1k8lNSvHTOAE8PI,514
|
|
2181
2271
|
scitex/scholar/url_finder/translators/individual/el_comercio__peru_.py,sha256=P6SPgIwf0r23LcJRuzIFEWvpyFBRVfCTxI5_GRJNCrg,588
|
|
2182
2272
|
scitex/scholar/url_finder/translators/individual/el_pais.py,sha256=yVhZpCVrSHjQk7Q0bcg461Y1kyNGprpj-IToZWRfzD4,554
|
|
2183
|
-
scitex/scholar/url_finder/translators/individual/electronic_colloquium_on_computational_complexity.py,sha256=
|
|
2273
|
+
scitex/scholar/url_finder/translators/individual/electronic_colloquium_on_computational_complexity.py,sha256=yKi-q_ARhVB8yDP27yA9vJzDSYLaji9d73AwXFRTBPw,771
|
|
2184
2274
|
scitex/scholar/url_finder/translators/individual/elibrary_ru.py,sha256=Gc9UFDPScK-rq-sIEPXhjTd9dhjMVlaoNVdT1cDMObs,570
|
|
2185
2275
|
scitex/scholar/url_finder/translators/individual/elicit.py,sha256=1aelCZjnmVe3wXBhtdcJMufUpfdCAPD-nmHbh7MHfvE,541
|
|
2186
|
-
scitex/scholar/url_finder/translators/individual/elife.py,sha256=
|
|
2276
|
+
scitex/scholar/url_finder/translators/individual/elife.py,sha256=GnxE0LNWa3p_uawQeRF-6cdO3nDe7csdUOY9qOyon_Y,605
|
|
2187
2277
|
scitex/scholar/url_finder/translators/individual/elsevier_health.py,sha256=P-QY_6_xdP-9P9OmC91iIjVEJz1Oi4sMdfwobl_UTHs,691
|
|
2188
|
-
scitex/scholar/url_finder/translators/individual/elsevier_health_journals.py,sha256=
|
|
2278
|
+
scitex/scholar/url_finder/translators/individual/elsevier_health_journals.py,sha256=99X3_bz0MWVDQmP6d8J7cBDDkm-UDvvVz8omWmAwFBU,677
|
|
2189
2279
|
scitex/scholar/url_finder/translators/individual/elsevier_pure.py,sha256=X_r349MmNWVMsZKXPV0bunZH44lWOR0hVmoEyoTTif4,590
|
|
2190
2280
|
scitex/scholar/url_finder/translators/individual/embedded_metadata.py,sha256=XMJW8e9kx-m91JuAoPsPm_DGwHKjC-THitaHdGjp7Tw,565
|
|
2191
2281
|
scitex/scholar/url_finder/translators/individual/emedicine.py,sha256=S1RBh674SVsDH6K4SVZFfIR99yzEEs_k4ywJSXJhCcU,575
|
|
2192
|
-
scitex/scholar/url_finder/translators/individual/emerald.py,sha256=
|
|
2193
|
-
scitex/scholar/url_finder/translators/individual/emerald_insight.py,sha256=
|
|
2282
|
+
scitex/scholar/url_finder/translators/individual/emerald.py,sha256=f6HnsSZhJXcIEee9xMEW57z4GNcHSPB3yjADV_gqROY,632
|
|
2283
|
+
scitex/scholar/url_finder/translators/individual/emerald_insight.py,sha256=jI2DKccHXYdlGbdcFiLsv3rTrzsIQ0pYE4oVVa9SAcg,639
|
|
2194
2284
|
scitex/scholar/url_finder/translators/individual/emja.py,sha256=GygevAFHVNn5zKfkZUM5fF0vUPBAxTETFZMmJnPhpnk,540
|
|
2195
2285
|
scitex/scholar/url_finder/translators/individual/encyclopedia_of_chicago.py,sha256=4EbwSS4cklfUv6zeKkEQNQHYtWKOP5FUZKJscpeWLnE,635
|
|
2196
2286
|
scitex/scholar/url_finder/translators/individual/encyclopedia_of_korean_culture.py,sha256=8x5UsfONRA45jR0PtD25Sma_veUajNpJu0ckR_QF2sY,662
|
|
@@ -2198,7 +2288,7 @@ scitex/scholar/url_finder/translators/individual/endnote_xml.py,sha256=1ZtB4cCy5
|
|
|
2198
2288
|
scitex/scholar/url_finder/translators/individual/engineering_village.py,sha256=W9HWv5AaKyGDEbZjMaSg_RFAZdWUKpVdUL4LUaarEf4,623
|
|
2199
2289
|
scitex/scholar/url_finder/translators/individual/envidat.py,sha256=dHeXkmLDrdu8QX5IYCMIrh6e688HIL7B7neTte3P0jE,552
|
|
2200
2290
|
scitex/scholar/url_finder/translators/individual/epa_national_library_catalog.py,sha256=YGFX7nn2IiXSj8HJQXxKusSOBu4dlXZ3Q3FivKgRmi8,634
|
|
2201
|
-
scitex/scholar/url_finder/translators/individual/epicurious.py,sha256=
|
|
2291
|
+
scitex/scholar/url_finder/translators/individual/epicurious.py,sha256=fTZlfH21fX5lhGg0TxUPJ65-NmPR1zZhP35zTIZYX3U,623
|
|
2202
2292
|
scitex/scholar/url_finder/translators/individual/eprint_iacr.py,sha256=fSa8Bm7GkHGkzTNuQ6ltUQjSSLi1WURYQufMPcZ52ZA,566
|
|
2203
2293
|
scitex/scholar/url_finder/translators/individual/eric.py,sha256=DV08WuPXWK41SdeV90DHgcmQS-sjciZxTDukKIpOag8,544
|
|
2204
2294
|
scitex/scholar/url_finder/translators/individual/erudit.py,sha256=zVYAcGuVnUjB2pKAUCj6e5M5d-JXLPxQeHGpHOZvMFs,550
|
|
@@ -2207,11 +2297,11 @@ scitex/scholar/url_finder/translators/individual/etatar_ru.py,sha256=k9tQmKxEv4O
|
|
|
2207
2297
|
scitex/scholar/url_finder/translators/individual/euclid.py,sha256=jElsuDTIO-W_KYrBQPu-3TZYskWqRgXG6kzV2op-ozQ,559
|
|
2208
2298
|
scitex/scholar/url_finder/translators/individual/eur_lex.py,sha256=V5--c7MUjzL1q3yqLnwve5QmJtL3-MfhANa59QvvHkg,613
|
|
2209
2299
|
scitex/scholar/url_finder/translators/individual/eurasianet.py,sha256=OEhKTE10DNiHAArlx5V5c7RqsLz22bPtl3HlP_oaH30,567
|
|
2210
|
-
scitex/scholar/url_finder/translators/individual/eurogamerusgamer.py,sha256=
|
|
2300
|
+
scitex/scholar/url_finder/translators/individual/eurogamerusgamer.py,sha256=klwpg-mF53vDBR6SMm6HSVqXovdwkQsQUxQIb-_GtHU,641
|
|
2211
2301
|
scitex/scholar/url_finder/translators/individual/europe_pmc.py,sha256=QTBKHBBtDUKhCOy9baJPjzNeFxxTjr1Ul0fwgcqkeS4,560
|
|
2212
2302
|
scitex/scholar/url_finder/translators/individual/evernote.py,sha256=UxoQQNWyvZbCJbjFjua6PTs8J_8TGP-WVr2ZVPu_mnc,532
|
|
2213
2303
|
scitex/scholar/url_finder/translators/individual/f1000_research.py,sha256=37i8U3oT3bBFm8inA_8XMdwl20rMyRKxK27EGzC7-jk,683
|
|
2214
|
-
scitex/scholar/url_finder/translators/individual/fachportal_padagogik.py,sha256=
|
|
2304
|
+
scitex/scholar/url_finder/translators/individual/fachportal_padagogik.py,sha256=PDw7TWaECT2kjXg7xyHLnW3zTA3ANIzGYWXZsW-GwaE,664
|
|
2215
2305
|
scitex/scholar/url_finder/translators/individual/factiva.py,sha256=YoD5P_Ou1OHWlGlK3NG6Y74A384zcZ3KkLw35RbY1Fg,620
|
|
2216
2306
|
scitex/scholar/url_finder/translators/individual/failed_architecture.py,sha256=aV6P9dcKH3WnkCcSTVuL5yBN_6HIlIepz3DYb3FZ94g,605
|
|
2217
2307
|
scitex/scholar/url_finder/translators/individual/fairfax_australia.py,sha256=UsJ4bO6PNS7HOMrXeWJC097FtA8sT8OFwI2Q7VpAFJw,622
|
|
@@ -2230,8 +2320,8 @@ scitex/scholar/url_finder/translators/individual/fr_online_de.py,sha256=YoHRW3ok
|
|
|
2230
2320
|
scitex/scholar/url_finder/translators/individual/freecite.py,sha256=Ycon9e2FKTL93NettaygJz0OPoniWCBvCV0IDl7Bt_I,584
|
|
2231
2321
|
scitex/scholar/url_finder/translators/individual/freepatentsonline.py,sha256=aKraW6TplYwuIMNqwYCOba2qObkS6aoz2lI-nQeLYq4,602
|
|
2232
2322
|
scitex/scholar/url_finder/translators/individual/frieze.py,sha256=ApUoS4cmBNzbNnfNvrdQrYSWfmcfr0U8MqJZ5rmPHBk,550
|
|
2233
|
-
scitex/scholar/url_finder/translators/individual/frontiers.py,sha256=
|
|
2234
|
-
scitex/scholar/url_finder/translators/individual/gale_databases.py,sha256=
|
|
2323
|
+
scitex/scholar/url_finder/translators/individual/frontiers.py,sha256=RfJIkdxkyZPsDZ7qU2iMW6xYmGnYIsSOzHOKM7BOjm8,2364
|
|
2324
|
+
scitex/scholar/url_finder/translators/individual/gale_databases.py,sha256=n1Bi-XDOenDEJcB_uVjwceAcuBImzWVWWNoBtCL6ywc,639
|
|
2235
2325
|
scitex/scholar/url_finder/translators/individual/galegdc.py,sha256=QMewkEkDsAukMbS5gV9fFchsjk4h99aAgHXYO3gDI5M,559
|
|
2236
2326
|
scitex/scholar/url_finder/translators/individual/galegroup.py,sha256=z4Obr7YyI2kjuLMYwPYuo8ubiljr07ZLrtWXq0L39-M,589
|
|
2237
2327
|
scitex/scholar/url_finder/translators/individual/gallica.py,sha256=GMoti0UH7z0krnmcdCDek1SpcMwTW4yHwLiFzYx22xA,550
|
|
@@ -2244,7 +2334,7 @@ scitex/scholar/url_finder/translators/individual/gene_ontology.py,sha256=kRCg6m6
|
|
|
2244
2334
|
scitex/scholar/url_finder/translators/individual/github.py,sha256=DeKcs0DyJN01ezzeMTns9CldzWa7n1__ROR81nK1Uu0,572
|
|
2245
2335
|
scitex/scholar/url_finder/translators/individual/globes.py,sha256=E2FpF5cmTZkQFtCdprTBOJTsWBaOPYSlnestST9Uuzw,560
|
|
2246
2336
|
scitex/scholar/url_finder/translators/individual/gmail.py,sha256=DlbFXepVKfJ7q6gyD7Omol1DNJxvT36Qfxwxa-z5k6E,544
|
|
2247
|
-
scitex/scholar/url_finder/translators/individual/gms_german_medical_science.py,sha256=
|
|
2337
|
+
scitex/scholar/url_finder/translators/individual/gms_german_medical_science.py,sha256=bEG27LEQtN_X-c_TfUVCxdhj-KHpq6j6VNQt6k907Lw,3569
|
|
2248
2338
|
scitex/scholar/url_finder/translators/individual/goodreads.py,sha256=-uuqvEZPUiNYYnoWd-hMZlw4WglhsBuGlcg-Gw0W214,583
|
|
2249
2339
|
scitex/scholar/url_finder/translators/individual/google_books.py,sha256=2ahfqSzZYIjUDPplI7qMXqbgY542QrYRYwYTykRgt3s,755
|
|
2250
2340
|
scitex/scholar/url_finder/translators/individual/google_patents.py,sha256=sPFEx5wMBsdSSw9q201P6xw0A-Xd7kRB2fGPK0B8jxQ,590
|
|
@@ -2284,8 +2374,8 @@ scitex/scholar/url_finder/translators/individual/human_rights_watch.py,sha256=Ri
|
|
|
2284
2374
|
scitex/scholar/url_finder/translators/individual/ibisworld.py,sha256=OtMZrk2xM1So5g2M8t1Q66m0O5CVyfswESZ-0PCnjGw,584
|
|
2285
2375
|
scitex/scholar/url_finder/translators/individual/idea_alm.py,sha256=ix_37nhN7f3PCo-hnZZm_EN8XxLkj0-VogKVTASFbmw,559
|
|
2286
2376
|
scitex/scholar/url_finder/translators/individual/idref.py,sha256=TDuF5AbTB5ioyvNjCK9u9N6h7F-e5KRj7K7rU-M9VA8,541
|
|
2287
|
-
scitex/scholar/url_finder/translators/individual/ieee_computer_society.py,sha256=
|
|
2288
|
-
scitex/scholar/url_finder/translators/individual/ieee_xplore.py,sha256=
|
|
2377
|
+
scitex/scholar/url_finder/translators/individual/ieee_computer_society.py,sha256=gKRdqIT5_uQuoT5V-9TBcLbrSubKoLwQ3k1ADQa6PQ4,3988
|
|
2378
|
+
scitex/scholar/url_finder/translators/individual/ieee_xplore.py,sha256=wzxsU-MWSYUrMCUMvofHI9SRo3r87bDqdwO25eoXQ3U,10318
|
|
2289
2379
|
scitex/scholar/url_finder/translators/individual/ietf.py,sha256=KqSX6mDFNK1OsVUd8KtVXgOwFl7jtuGfAMI3Azjs1j0,618
|
|
2290
2380
|
scitex/scholar/url_finder/translators/individual/ign.py,sha256=y5ouBPL_5CkkyA8EiG2BuN8DvTqNBjrQyixyPDoH22o,544
|
|
2291
2381
|
scitex/scholar/url_finder/translators/individual/imdb.py,sha256=1swz_GFp5coBvFXfkL48n2f425wFuxEF63xPdWbWScg,537
|
|
@@ -2303,7 +2393,7 @@ scitex/scholar/url_finder/translators/individual/institute_of_contemporary_art.p
|
|
|
2303
2393
|
scitex/scholar/url_finder/translators/individual/institute_of_physics.py,sha256=SgwwiZx097yBD3QBmJ0_S8q0Qgm4aaHlvkgfDAS5r6M,652
|
|
2304
2394
|
scitex/scholar/url_finder/translators/individual/integrum.py,sha256=VJKywh0YLG7GKrD94ElYwtNZDdmeCy6xdwSys2ZUpBc,559
|
|
2305
2395
|
scitex/scholar/url_finder/translators/individual/intellixir.py,sha256=jjgi8UGBVq2he3Cs6pZU6EMntLrCM3lqPnFApGibsz4,589
|
|
2306
|
-
scitex/scholar/url_finder/translators/individual/inter_research_science_center.py,sha256=
|
|
2396
|
+
scitex/scholar/url_finder/translators/individual/inter_research_science_center.py,sha256=F3ZLrcNq-EIhrzMHl8rgHHRMKnfSRnoM3pcZn2Xeem8,3847
|
|
2307
2397
|
scitex/scholar/url_finder/translators/individual/international_nuclear_information_system.py,sha256=NacAnZRHjDZCP8GqIbTsWMPUbuSDpn9sCNNaH7LEktk,679
|
|
2308
2398
|
scitex/scholar/url_finder/translators/individual/internet_archive.py,sha256=QhXSKveJ62rbw2EkhN-Mh6nGeHc2c1NVrb9ll0EnyDo,590
|
|
2309
2399
|
scitex/scholar/url_finder/translators/individual/internet_archive_scholar.py,sha256=wktwy3WC_LgMkwo_TdA3OPi_9xAztoCSazopbHxY94Q,621
|
|
@@ -2320,14 +2410,14 @@ scitex/scholar/url_finder/translators/individual/j_stage.py,sha256=Iqx2k70P327SF
|
|
|
2320
2410
|
scitex/scholar/url_finder/translators/individual/jahrbuch.py,sha256=5Ibr5Fb7quUuTTU_RF1RUpBPur03z6qyOrEqDtkKhy4,575
|
|
2321
2411
|
scitex/scholar/url_finder/translators/individual/japan_times_online.py,sha256=7uA9hVay5E3m4i75B8v5CElwGsmP45VwlHCVnF6ehLo,688
|
|
2322
2412
|
scitex/scholar/url_finder/translators/individual/jets.py,sha256=cTJkRr_bZBe3EkTb0J1iGtFpQK8nDiJ0wrtgzGyGy4Q,543
|
|
2323
|
-
scitex/scholar/url_finder/translators/individual/jisc_historical_texts.py,sha256=
|
|
2413
|
+
scitex/scholar/url_finder/translators/individual/jisc_historical_texts.py,sha256=_nbC7OOCbpcN0eBzLeSx9Sr9zipjpz2XMLwmpVrQk0c,664
|
|
2324
2414
|
scitex/scholar/url_finder/translators/individual/journal_of_electronic_publishing.py,sha256=SJ18g3oakl__HrVXudCCYjj-ljqbuCh9TSLJeL2gK7Q,658
|
|
2325
2415
|
scitex/scholar/url_finder/translators/individual/journal_of_extension.py,sha256=Abz9SY9c9dJQzNt7JhEK_7TRSdPKDNYKGuEH2UhAMeM,598
|
|
2326
2416
|
scitex/scholar/url_finder/translators/individual/journal_of_machine_learning_research.py,sha256=y0r7-n8An8PXTc1q5iRFnb59DvjjqqbJwl1Wus2kYwM,729
|
|
2327
2417
|
scitex/scholar/url_finder/translators/individual/journal_of_religion_and_society.py,sha256=UFy5Uz5kKCTfVpchh2BERL66JIxAjybG_nvs6d42lXI,659
|
|
2328
2418
|
scitex/scholar/url_finder/translators/individual/jrc_publications_repository.py,sha256=krvNA_QeADxj0lBo4d90o6gVVQgH7pEZFp8L60vNL84,699
|
|
2329
2419
|
scitex/scholar/url_finder/translators/individual/jstage.py,sha256=Iqx2k70P327SFV3hXz196j3ktdcsMQLdqtWdZKH36mc,558
|
|
2330
|
-
scitex/scholar/url_finder/translators/individual/jstor.py,sha256=
|
|
2420
|
+
scitex/scholar/url_finder/translators/individual/jstor.py,sha256=t_HlfDGsME50KbiWGfjUqRKZGOq0zyWDLrZQnfvTylw,6473
|
|
2331
2421
|
scitex/scholar/url_finder/translators/individual/juricaf.py,sha256=doZQltMwDGlVqMc_Ozn93j0oB2KquKzSXpQRHkXw87o,573
|
|
2332
2422
|
scitex/scholar/url_finder/translators/individual/jurion.py,sha256=OoeM2svzuXr_ELO1PeH8PAH9SJAOIEUAie1VbNrxgk0,553
|
|
2333
2423
|
scitex/scholar/url_finder/translators/individual/juris.py,sha256=rqARj1yy7pwUeodDFesqT54iEpfmvCXcySmstJ9mQO4,557
|
|
@@ -2338,16 +2428,16 @@ scitex/scholar/url_finder/translators/individual/karger.py,sha256=_m-XIl-epnlFzT
|
|
|
2338
2428
|
scitex/scholar/url_finder/translators/individual/khaama_press.py,sha256=XuyAnLphB3DuI2_d_d6lnP7K_uQuEAbstYByckzDQpc,570
|
|
2339
2429
|
scitex/scholar/url_finder/translators/individual/kitapyurdu_com.py,sha256=JePlgIYPxHE6rrkw0IhoqHh_hOHttQ-JHZrK_8H8OMc,582
|
|
2340
2430
|
scitex/scholar/url_finder/translators/individual/kommersant.py,sha256=VB5xWOZbu-kb3znTY2XqzwuBXD1hSGUxGmpH3oo92ZA,569
|
|
2341
|
-
scitex/scholar/url_finder/translators/individual/korean_national_library.py,sha256=
|
|
2431
|
+
scitex/scholar/url_finder/translators/individual/korean_national_library.py,sha256=ENvJ8Z3SrxPbmb95n14SSMA5KgY9huS9o6WmkHzpQ5Q,664
|
|
2342
2432
|
scitex/scholar/url_finder/translators/individual/kstudy.py,sha256=7q1jGb9d9chSP605ZGvACis_gbLaWXDEHlBSYR33HU8,548
|
|
2343
2433
|
scitex/scholar/url_finder/translators/individual/l_annee_philologique.py,sha256=4ZDMXrUur-HmPdsnxC5z_OyQGllfQN3DUh34m6SaAWQ,608
|
|
2344
2434
|
scitex/scholar/url_finder/translators/individual/la_croix.py,sha256=ceEiuIujgHOhC6SzYXY6KD0HrZvgV_oMW_rE_73OhGM,555
|
|
2345
2435
|
scitex/scholar/url_finder/translators/individual/la_nacion__argentina_.py,sha256=iDKVUjNhWJLcjVwrQ738DOK1feAdwuTTKqwV_lScdrU,608
|
|
2346
2436
|
scitex/scholar/url_finder/translators/individual/la_presse.py,sha256=eLt04emzt10NngLL9RE4kWcTmjn0VHrO3M_zPkOAt8Y,571
|
|
2347
2437
|
scitex/scholar/url_finder/translators/individual/la_republica__peru_.py,sha256=KOkRtr3zQSvk7zGmIUGDxzGzzLiHc1og8YStU5VP760,594
|
|
2348
|
-
scitex/scholar/url_finder/translators/individual/la_times.py,sha256=
|
|
2438
|
+
scitex/scholar/url_finder/translators/individual/la_times.py,sha256=Vg9GLZK4_ipd0_pEjgmUKbH4vWypZZ19IPoxb_m9Ghg,608
|
|
2349
2439
|
scitex/scholar/url_finder/translators/individual/lagen_nu.py,sha256=-u29Kw76Dv3Nu3O3PIwPC79ALxbxRvkp06lJDO9NoTM,547
|
|
2350
|
-
scitex/scholar/url_finder/translators/individual/landesbibliographie_baden_wurttemberg.py,sha256=
|
|
2440
|
+
scitex/scholar/url_finder/translators/individual/landesbibliographie_baden_wurttemberg.py,sha256=W8SXf6L_DRwdlQFXZddq4ZusN_s5BX9G_vn1pIQV6n4,729
|
|
2351
2441
|
scitex/scholar/url_finder/translators/individual/lapham_s_quarterly.py,sha256=Uuje_d5IbKkYf7WeuZmMCwps4jbfY1ZNX2Yhj7fl18k,603
|
|
2352
2442
|
scitex/scholar/url_finder/translators/individual/le_devoir.py,sha256=RbVPQRM7ASX_j5OK4pJ6DWilPgiY0ZEOIK8o9tCXXqw,559
|
|
2353
2443
|
scitex/scholar/url_finder/translators/individual/le_figaro.py,sha256=9JwIhsPV4JYBm1HF6XJ7KWVhPoZYVu0DZX1i5iXnuns,559
|
|
@@ -2355,10 +2445,10 @@ scitex/scholar/url_finder/translators/individual/le_maitron.py,sha256=YZTSnFCpue
|
|
|
2355
2445
|
scitex/scholar/url_finder/translators/individual/le_monde.py,sha256=apT_wtl3wA7G2pXcZUYhwr9sUGE7sUTKyYAbQItPAWA,569
|
|
2356
2446
|
scitex/scholar/url_finder/translators/individual/le_monde_diplomatique.py,sha256=uEIrcfgYE7QAwa8PakpPWqduH7xnkhYxo9M-oWOx4OE,618
|
|
2357
2447
|
scitex/scholar/url_finder/translators/individual/legifrance.py,sha256=AGhWDUeggmRmoC-aJBjqg_hlZ2WJaQZP4q0XvTBPmPU,575
|
|
2358
|
-
scitex/scholar/url_finder/translators/individual/legislative_insight.py,sha256=
|
|
2448
|
+
scitex/scholar/url_finder/translators/individual/legislative_insight.py,sha256=D8NE_Fj9s_9P4_ZPxU-Y0iJKTkMX2TLlLCtozpxDEh0,662
|
|
2359
2449
|
scitex/scholar/url_finder/translators/individual/lexis_.py,sha256=5bCQBPgzjX60kEZnHTnd9WO0jSsvyqSt__v8fXwyAWc,545
|
|
2360
2450
|
scitex/scholar/url_finder/translators/individual/lexisnexis.py,sha256=zWOxoE4WOOofngO7FQDICSLj9p13KVyu2cHlmWYOXcw,568
|
|
2361
|
-
scitex/scholar/url_finder/translators/individual/libraries_tasmania.py,sha256=
|
|
2451
|
+
scitex/scholar/url_finder/translators/individual/libraries_tasmania.py,sha256=MX7QYpqFOfZDPyJOvxbBxIZc1gBtT3CCjoagnt5Lr2M,645
|
|
2362
2452
|
scitex/scholar/url_finder/translators/individual/library_catalog__aleph_.py,sha256=nxbDeVdbHufc4mjCG68_lWs1hus9qKlQhxMLt2kDkL4,675
|
|
2363
2453
|
scitex/scholar/url_finder/translators/individual/library_catalog__amicus_.py,sha256=sQWcZBVsTUHh_8poMIJSpCbdAdJ1s0EVl7cOa_buK_c,644
|
|
2364
2454
|
scitex/scholar/url_finder/translators/individual/library_catalog__aquabrowser_.py,sha256=VIT3aIPg3PH9p3PXx2YAeWu54SXqmkHsjj6V3E8D2oU,658
|
|
@@ -2369,7 +2459,7 @@ scitex/scholar/url_finder/translators/individual/library_catalog__dra_.py,sha256
|
|
|
2369
2459
|
scitex/scholar/url_finder/translators/individual/library_catalog__dynix_.py,sha256=J9FAJbLyinu6xZ_ZhoieSMn-dGwlI8aDihe2eUEthxM,638
|
|
2370
2460
|
scitex/scholar/url_finder/translators/individual/library_catalog__encore_.py,sha256=30-S36isquRP2oi_Y7jo5R3k3PVWx6y3NeGG6-_8Vq0,615
|
|
2371
2461
|
scitex/scholar/url_finder/translators/individual/library_catalog__innopac_.py,sha256=eggAa1vNfyGOutrWCmFtRQQdnxPHIqmgs3OCajueE80,705
|
|
2372
|
-
scitex/scholar/url_finder/translators/individual/library_catalog__koha_.py,sha256=
|
|
2462
|
+
scitex/scholar/url_finder/translators/individual/library_catalog__koha_.py,sha256=AGVOKg0UgQu-3AIxnICnoV_G3xSV8A0Bx4tDOeEwG3U,659
|
|
2373
2463
|
scitex/scholar/url_finder/translators/individual/library_catalog__mango_.py,sha256=wf_bwHjRR3rTCWTCH0S_TBr-rvLGjFVA7tgAl6vAfzU,614
|
|
2374
2464
|
scitex/scholar/url_finder/translators/individual/library_catalog__opals_.py,sha256=ihEbutla6FYcTsdY-bhVDF801NiYmTnuqQUdTtRLOg8,620
|
|
2375
2465
|
scitex/scholar/url_finder/translators/individual/library_catalog__pica2_.py,sha256=1Bv7pjcFHYH_bT12LdP9iEWtbxAbfS4DNESCSddd-8Y,610
|
|
@@ -2393,7 +2483,7 @@ scitex/scholar/url_finder/translators/individual/library_hub_discover.py,sha256=
|
|
|
2393
2483
|
scitex/scholar/url_finder/translators/individual/library_of_congress_digital_collections.py,sha256=65JF-d3Mtj8iadNIRzPKmABoHkdH7PjTUNEHg87_5rs,672
|
|
2394
2484
|
scitex/scholar/url_finder/translators/individual/library_of_congress_isbn.py,sha256=qfrngLl8yr9FUOs0xqy0Phb74JsFAW7W67fWbmGtQVI,591
|
|
2395
2485
|
scitex/scholar/url_finder/translators/individual/libris_isbn.py,sha256=1tSJ9OnPzm8fiElRzGgqGb4_qDjTritTD2V1cnknc_c,541
|
|
2396
|
-
scitex/scholar/url_finder/translators/individual/lingbuzz.py,sha256=
|
|
2486
|
+
scitex/scholar/url_finder/translators/individual/lingbuzz.py,sha256=8WRJfyEH2nSSW1IlXqZBfYgvSYyhtR0QT7KaOJjh4Uo,7147
|
|
2397
2487
|
scitex/scholar/url_finder/translators/individual/lippincott_williams_and_wilkins.py,sha256=cxHz4VFIkGXlS-oI69HbJlWjxuUP-G6LOqSUtbx6IzA,654
|
|
2398
2488
|
scitex/scholar/url_finder/translators/individual/literary_hub.py,sha256=BQZN3JrKP3Mxng8MTMZFTRP9n0Jvv_8ORVm4WcxLxjw,565
|
|
2399
2489
|
scitex/scholar/url_finder/translators/individual/litres.py,sha256=KHFRJDpGlCXTwATKuaVBesTjaZnPGz13OjjqVsQJbPI,548
|
|
@@ -2412,9 +2502,9 @@ scitex/scholar/url_finder/translators/individual/marc.py,sha256=3-vlH8JvaDTqSIkj
|
|
|
2412
2502
|
scitex/scholar/url_finder/translators/individual/marcxml.py,sha256=Qiz-JJ6fr9H5aWrUsNdSkiFrgMy2rcyGEMqLeqMUHcU,527
|
|
2413
2503
|
scitex/scholar/url_finder/translators/individual/mastodon.py,sha256=f1UgpPQdnY6WdAjenbp1mScLfxLuZIX2xSgpvdOz70g,539
|
|
2414
2504
|
scitex/scholar/url_finder/translators/individual/matbugat_ru.py,sha256=EAQALLpVGwK4RcGa37Dfq6ryXNh4qih14XSNQrIP8Gw,570
|
|
2415
|
-
scitex/scholar/url_finder/translators/individual/max_planck_institute_for_the_history_of_science_virtual_laboratory_library.py,sha256=
|
|
2505
|
+
scitex/scholar/url_finder/translators/individual/max_planck_institute_for_the_history_of_science_virtual_laboratory_library.py,sha256=hvTfSYdyvtAWbfiaiW6WjMkhV0cYY2QSxirlamSESE8,833
|
|
2416
2506
|
scitex/scholar/url_finder/translators/individual/mcv.py,sha256=mCsbqmejyvapbXOKxSrzKNl9Pa1eeLiPDJUO2OKBgsg,536
|
|
2417
|
-
scitex/scholar/url_finder/translators/individual/mdpi.py,sha256=
|
|
2507
|
+
scitex/scholar/url_finder/translators/individual/mdpi.py,sha256=Ovs3KNJVxeo_2qjZuIUszSKxoO-Hsk40mN2aRI0qLAM,2453
|
|
2418
2508
|
scitex/scholar/url_finder/translators/individual/mdpi_journals.py,sha256=FANgUqtNNkckGs55nk0rJAAk-YRj5WZ9nSPDX4BJWwU,571
|
|
2419
2509
|
scitex/scholar/url_finder/translators/individual/medes.py,sha256=4x242qMfNzUcMVzPd0DTqv0x1jzbtL-D8nRmrLTPB40,545
|
|
2420
2510
|
scitex/scholar/url_finder/translators/individual/medium.py,sha256=3Z0v_npgh86IDyKJQ8qqiytNSWiYNo-EiQaCsdhfKIw,551
|
|
@@ -2423,16 +2513,16 @@ scitex/scholar/url_finder/translators/individual/medlinenbib.py,sha256=A4VAWAt1N
|
|
|
2423
2513
|
scitex/scholar/url_finder/translators/individual/medra.py,sha256=nRbQlYR9502TxNJsfnLtki4WGuiXqdSkRK0uCkZTI1Y,556
|
|
2424
2514
|
scitex/scholar/url_finder/translators/individual/metalib.py,sha256=MBHMrRhyynVeP9umgeemkQ788k3oa_G-upHMGK2PUno,542
|
|
2425
2515
|
scitex/scholar/url_finder/translators/individual/mets.py,sha256=NZ5MXQluX-Z12pOAoBQeIrmQnTQc308BB4Q5dUIetEs,515
|
|
2426
|
-
scitex/scholar/url_finder/translators/individual/microbiology_society_journals.py,sha256=
|
|
2516
|
+
scitex/scholar/url_finder/translators/individual/microbiology_society_journals.py,sha256=RJXvxvKbfqX0UTKObh2t5ixO_omSQN8JkS4oywTjUYo,703
|
|
2427
2517
|
scitex/scholar/url_finder/translators/individual/microsoft_academic.py,sha256=9s7W0b0r4MvT6sHiIQwmvGmld9ap-Viaq_OvSwGD2SQ,601
|
|
2428
|
-
scitex/scholar/url_finder/translators/individual/midas_journals.py,sha256=
|
|
2518
|
+
scitex/scholar/url_finder/translators/individual/midas_journals.py,sha256=aQRZk-Z4BW2B4d0OexSPwAYj1-SuyqmOSS-xUTNthdk,632
|
|
2429
2519
|
scitex/scholar/url_finder/translators/individual/mikromarc.py,sha256=IhXZLho3G17I4xNgj-AkvYWTqpYKFVoQbE5wEx_pZOA,574
|
|
2430
2520
|
scitex/scholar/url_finder/translators/individual/milli_kutuphane.py,sha256=jIzQe86c20T-9j8q9FzStTSAfWcX312tEkVXXFf1B9k,596
|
|
2431
2521
|
scitex/scholar/url_finder/translators/individual/mit_press_books.py,sha256=F-EskIolphVsONy9WhvS9kGc1hKON2cHS1mpD7UT7VM,589
|
|
2432
2522
|
scitex/scholar/url_finder/translators/individual/mods.py,sha256=MUPX-4YspP4hVBhLijMbY0H_88KfPazjG8nQgErQS5s,515
|
|
2433
2523
|
scitex/scholar/url_finder/translators/individual/mpg_pure.py,sha256=Yh6AYXLckir-XyLZzlRIJSdWDfaOIEbCCpBg3gdT03E,551
|
|
2434
2524
|
scitex/scholar/url_finder/translators/individual/musee_du_louvre.py,sha256=AzOaa47i0jGSMbZGBm1WMR2SiKWTY6qNqOu7_oLGp6I,588
|
|
2435
|
-
scitex/scholar/url_finder/translators/individual/nagoya_university_opac.py,sha256=
|
|
2525
|
+
scitex/scholar/url_finder/translators/individual/nagoya_university_opac.py,sha256=RintgXEn8nUzMk-Ul_czUrlCSz55ysIylly2VIGfCHk,667
|
|
2436
2526
|
scitex/scholar/url_finder/translators/individual/nasa_ads.py,sha256=CgRT7sDrng1CHn-2QlwX_BHjgpGZloDUHGCiki1DlGU,617
|
|
2437
2527
|
scitex/scholar/url_finder/translators/individual/nasa_ntrs.py,sha256=t0OneZuOBECBcucezn0-vHeoU0bvPB4xW_TJC1AE5LM,576
|
|
2438
2528
|
scitex/scholar/url_finder/translators/individual/national_academies_press.py,sha256=o5ZQp2trCYDUSsEd2T2cQF-3WMuf_kmH1V6AZsDlw7U,628
|
|
@@ -2451,7 +2541,7 @@ scitex/scholar/url_finder/translators/individual/national_post.py,sha256=ztXrjhO
|
|
|
2451
2541
|
scitex/scholar/url_finder/translators/individual/national_technical_reports_library.py,sha256=7p1-4IVq8rKIz3T6dE5aCMPq0PoKZPksgCSY2kvLRlA,660
|
|
2452
2542
|
scitex/scholar/url_finder/translators/individual/national_transportation_library_rosa_p.py,sha256=t4YeMzabqGsA6bP9Umhk2I8i3dWsFu-PB7gGXaFxRTU,675
|
|
2453
2543
|
scitex/scholar/url_finder/translators/individual/nature.py,sha256=r7sSaJJaa4p5JbNz-pjnmr8HgXdzvARvG8svOLHoG1c,699
|
|
2454
|
-
scitex/scholar/url_finder/translators/individual/nature_publishing_group.py,sha256=
|
|
2544
|
+
scitex/scholar/url_finder/translators/individual/nature_publishing_group.py,sha256=b6Tsrxemlxzpl9fCfcnOEAx3ryGsZ1N5szxGHLdACU0,7085
|
|
2455
2545
|
scitex/scholar/url_finder/translators/individual/nber.py,sha256=VaSTms6uQFEpn9Bo3s0cLA3RoWpRvWCs5WSdt_Hs5Qk,713
|
|
2456
2546
|
scitex/scholar/url_finder/translators/individual/ncbi_nucleotide.py,sha256=afYGTj1qFeMu3wPKjvTACWUJ3ddsesGxO_pKeYPqdsI,601
|
|
2457
2547
|
scitex/scholar/url_finder/translators/individual/neural_information_processing_systems.py,sha256=Ev41cbcPMLGzNs42exQZVCeHyPTVNVfvpZ1TIOaStkY,688
|
|
@@ -2470,7 +2560,7 @@ scitex/scholar/url_finder/translators/individual/notre_dame_philosophical_review
|
|
|
2470
2560
|
scitex/scholar/url_finder/translators/individual/npr.py,sha256=YicK3tlbDQ4h432-0Mt_j_5VAZO41DQvQSUp588TVsw,532
|
|
2471
2561
|
scitex/scholar/url_finder/translators/individual/nrc_nl.py,sha256=8YKI-NRDBun-HkswdnLAZ_W0c9GHNl5cmoWEnaMJntI,541
|
|
2472
2562
|
scitex/scholar/url_finder/translators/individual/nrc_research_press.py,sha256=unPoB4NcciUfMcvUPXaxNvEftQpdlvjjAdIS2AjNwTw,602
|
|
2473
|
-
scitex/scholar/url_finder/translators/individual/ntsb_accident_reports.py,sha256=
|
|
2563
|
+
scitex/scholar/url_finder/translators/individual/ntsb_accident_reports.py,sha256=pe__e-iSMboBMN00Swaa3yO0bU6CVFzobhjmR9EQgWI,659
|
|
2474
2564
|
scitex/scholar/url_finder/translators/individual/nypl_menus.py,sha256=VfDXqdjomthC5wWqXDtlgmGSyxrhhLhUANp5skyo2To,562
|
|
2475
2565
|
scitex/scholar/url_finder/translators/individual/nypl_research_catalog.py,sha256=kAHyU1kHjRQuNc_wlzwPE6peN_7Qvj9GhokXQxMcJJg,628
|
|
2476
2566
|
scitex/scholar/url_finder/translators/individual/nytimes_com.py,sha256=j8li4jMTdrK-D5BxcPQqLI5Hv6eg_TCRB9SHhqxpROI,641
|
|
@@ -2486,23 +2576,23 @@ scitex/scholar/url_finder/translators/individual/open_worldcat.py,sha256=IwFmVe7
|
|
|
2486
2576
|
scitex/scholar/url_finder/translators/individual/openalex.py,sha256=T8VRcuQcf75Gm75absNqVAEMdrs0aD09h9OV2TKWa1Q,556
|
|
2487
2577
|
scitex/scholar/url_finder/translators/individual/openalex_json.py,sha256=NjQa-vaain0T0yIaJe-oJd0zsocNrnyBgKgEWFgXxfE,551
|
|
2488
2578
|
scitex/scholar/url_finder/translators/individual/openedition_books.py,sha256=h45O_KaAWx4AFbdwJ60Mj5sRGb_m757WSrKbsVfQXEY,597
|
|
2489
|
-
scitex/scholar/url_finder/translators/individual/openedition_journals.py,sha256=
|
|
2579
|
+
scitex/scholar/url_finder/translators/individual/openedition_journals.py,sha256=mG_6oBPGYvPS7_uLR5seygKl6X6cVDP-8M-O0gKnmYU,5786
|
|
2490
2580
|
scitex/scholar/url_finder/translators/individual/openjur.py,sha256=Ul5ZSlVj0APTZSsqM-lNKAt5NJBr6EG_Bcthfytrs-I,546
|
|
2491
2581
|
scitex/scholar/url_finder/translators/individual/optical_society_of_america.py,sha256=dk5vL9QGPEsQFdwMmC_MsrhaA-pKqGSpt9gmg_F3Nug,647
|
|
2492
2582
|
scitex/scholar/url_finder/translators/individual/optimization_online.py,sha256=x3W5kie0U3ZetQaStTpFNrZs9Bqrlgr16Jd3HV7Yp2o,606
|
|
2493
|
-
scitex/scholar/url_finder/translators/individual/orcid.py,sha256=
|
|
2583
|
+
scitex/scholar/url_finder/translators/individual/orcid.py,sha256=HuEBvhRlzbFiZgT3_Bb4BCenlpPpwVpo7WbrS6LUN8Y,9315
|
|
2494
2584
|
scitex/scholar/url_finder/translators/individual/osa.py,sha256=UoSQfvRG258BBFVWDRNOm0d9cG109w2ircQAIGtrfEI,627
|
|
2495
2585
|
scitex/scholar/url_finder/translators/individual/osf_preprints.py,sha256=K76B0IpsjkCjqldzggtRYsnIVkX7FGmdkORQ7PYmOqk,741
|
|
2496
2586
|
scitex/scholar/url_finder/translators/individual/osti_energy_citations.py,sha256=PMFp3GErbNLqmNGlBTQ2Ulibsklb9Vix0v_o3O4jdv4,628
|
|
2497
2587
|
scitex/scholar/url_finder/translators/individual/ovid.py,sha256=U1mKjguyZJTEtKrjTztp0G4QG1To-QgNdItCin1NUKA,552
|
|
2498
2588
|
scitex/scholar/url_finder/translators/individual/ovid_tagged.py,sha256=BcZy_soTQmNDVdg_dRQF3OwPfNmrx1-6R49cS7P0azk,542
|
|
2499
|
-
scitex/scholar/url_finder/translators/individual/oxford.py,sha256=
|
|
2500
|
-
scitex/scholar/url_finder/translators/individual/oxford_dictionaries_premium.py,sha256=
|
|
2589
|
+
scitex/scholar/url_finder/translators/individual/oxford.py,sha256=IH8eN2TQiCOjOnj368u7E-VatMPtN4bgoW-Vi8g0eLE,5392
|
|
2590
|
+
scitex/scholar/url_finder/translators/individual/oxford_dictionaries_premium.py,sha256=EvNj4Bw7_o0rNuRKurmYmcNwRsubljX5KjLQCcEDbSE,684
|
|
2501
2591
|
scitex/scholar/url_finder/translators/individual/oxford_english_dictionary.py,sha256=1p2-P58E-LvtiDAoe1xBWAgaKQzUNIbdNF1mIirm4ag,621
|
|
2502
2592
|
scitex/scholar/url_finder/translators/individual/oxford_music_and_art_online.py,sha256=ESglWXBiwk-wq2uxlQ43rr39XQQxSaqAl1i3ICXhkic,654
|
|
2503
2593
|
scitex/scholar/url_finder/translators/individual/oxford_reference.py,sha256=eKYbnvGpxiiuYJqWcAlFRgRGPSwd3ZSthyO71jGEwXE,595
|
|
2504
2594
|
scitex/scholar/url_finder/translators/individual/oxford_university_press.py,sha256=AgBsXPCbvPKdBbbm8upuWT6sr835nWFSSu7qL7aR4Gk,622
|
|
2505
|
-
scitex/scholar/url_finder/translators/individual/ozon_ru.py,sha256
|
|
2595
|
+
scitex/scholar/url_finder/translators/individual/ozon_ru.py,sha256=-Q2px8Lj1Dl-FtCMYv38kWEXAMmn3NowMlviZwbnSLw,600
|
|
2506
2596
|
scitex/scholar/url_finder/translators/individual/pajhwok_afghan_news.py,sha256=sgf3Qkog0PXoFGzLg2hlqydhacm7vjKZFK2obUBwXUw,593
|
|
2507
2597
|
scitex/scholar/url_finder/translators/individual/papers_past.py,sha256=MW5sZY9NyGlAJ3WBY641VhLp20MTD_S181uRpG_j0Ik,586
|
|
2508
2598
|
scitex/scholar/url_finder/translators/individual/paris_review.py,sha256=XMPcghF3SnupaOPmYlWq47aU6Vd0wEEPJ7TmK8zUDOw,578
|
|
@@ -2519,30 +2609,30 @@ scitex/scholar/url_finder/translators/individual/philosopher_s_imprint.py,sha256
|
|
|
2519
2609
|
scitex/scholar/url_finder/translators/individual/philpapers.py,sha256=WN2vTZWV6nk7zfOGTiaTtaM93M2gmB8hid0pUmiflQ4,572
|
|
2520
2610
|
scitex/scholar/url_finder/translators/individual/pkp_catalog_systems.py,sha256=1HHw77GpiDKt69t3sxpOluZy8iAf2XGymQQAqjRehJk,651
|
|
2521
2611
|
scitex/scholar/url_finder/translators/individual/pleade.py,sha256=jloimaKGbY3Gu09_5tq5A7iPJby8MXJxaU-E5T6Pv0c,576
|
|
2522
|
-
scitex/scholar/url_finder/translators/individual/plos.py,sha256=
|
|
2612
|
+
scitex/scholar/url_finder/translators/individual/plos.py,sha256=nkzFhoPRLpBGnlY1ikysBYtxgOmWEkF9iCXIho_gSis,3825
|
|
2523
2613
|
scitex/scholar/url_finder/translators/individual/plos_journals.py,sha256=NnS9Jk2ET-C0QcNkFSi_Z6G8FBrOxOYQP-2xg_BhOzQ,676
|
|
2524
2614
|
scitex/scholar/url_finder/translators/individual/pnas.py,sha256=N0Z0UQ9jVVwS1GmgnCL2MjR5TOcaQ59b01PuFlLLVic,540
|
|
2525
|
-
scitex/scholar/url_finder/translators/individual/polygon.py,sha256=
|
|
2615
|
+
scitex/scholar/url_finder/translators/individual/polygon.py,sha256=dUdwXbMJ_RQYA-gIrrpwMTa8o9-g-JhLZ44fmPraJ6I,615
|
|
2526
2616
|
scitex/scholar/url_finder/translators/individual/potsdamer_neueste_nachrichten.py,sha256=eJ3rKFAgpRNKravm1lvfqREyeHoz4ROUxvoOGN3riTU,632
|
|
2527
2617
|
scitex/scholar/url_finder/translators/individual/prc_history_review.py,sha256=7iakjVpS1HHSyAMkDkWoOeQAvfkugyqe4kJLQFnm6q0,600
|
|
2528
2618
|
scitex/scholar/url_finder/translators/individual/preprints_org.py,sha256=zBBQXpBibGSMwrnT1O43lNSwfn0sM7gUB0DEWhMyOkw,576
|
|
2529
|
-
scitex/scholar/url_finder/translators/individual/primo.py,sha256=
|
|
2619
|
+
scitex/scholar/url_finder/translators/individual/primo.py,sha256=MzIKhiWcs_RCeD6dr41WpvDhTHUvqoZOo3huzvxVbrM,596
|
|
2530
2620
|
scitex/scholar/url_finder/translators/individual/primo_2018.py,sha256=wEZEagWEX_OE50MqTuEn-yWQX20FTcu7u3pORjBHpCc,687
|
|
2531
2621
|
scitex/scholar/url_finder/translators/individual/primo_normalized_xml.py,sha256=hgoqrHofWOUlOVm6oavs03kks1XyRLRd-C5gVNNgw1s,577
|
|
2532
2622
|
scitex/scholar/url_finder/translators/individual/probing_the_past.py,sha256=LukOW2Ef2iD8OYEP_slBip64RZHro1cUbZw4rxfh7l4,600
|
|
2533
2623
|
scitex/scholar/url_finder/translators/individual/project_gutenberg.py,sha256=mJnKZzO7blsBrA1s4iMjYy6md2p4wxq-KZnuAorSFsA,592
|
|
2534
|
-
scitex/scholar/url_finder/translators/individual/project_muse.py,sha256=
|
|
2624
|
+
scitex/scholar/url_finder/translators/individual/project_muse.py,sha256=_jprLeZ-Cv-5vEvLmGfy72TIZtkPDMUco_HQnLmSUwM,626
|
|
2535
2625
|
scitex/scholar/url_finder/translators/individual/promed.py,sha256=zbl3QJntRxwzMgPJyu5YW2nVx0Ua8lr3Q1B00ozKj_A,550
|
|
2536
2626
|
scitex/scholar/url_finder/translators/individual/proquest.py,sha256=bvy3uPXRuhD2KhsKCNxq1ypTiH9ffnMOmD6CSs2dbU4,686
|
|
2537
2627
|
scitex/scholar/url_finder/translators/individual/proquest_ebook_central.py,sha256=MAGW7Tb-sJzRJI-3E-tX4S7trcn1O_uo6fB6zbSn7Uk,631
|
|
2538
2628
|
scitex/scholar/url_finder/translators/individual/proquest_policyfile.py,sha256=PPIAH6Gjm1ZvMNzCylsVxG36w2JTbC73Hhjv6dkB8Dw,601
|
|
2539
2629
|
scitex/scholar/url_finder/translators/individual/protein_data_bank.py,sha256=zLXXgBu16b5g4TMqWBB_zKmowK4O-Wxvh9T9Ok8f6gE,597
|
|
2540
|
-
scitex/scholar/url_finder/translators/individual/pubfactory_journals.py,sha256=
|
|
2630
|
+
scitex/scholar/url_finder/translators/individual/pubfactory_journals.py,sha256=bTv3OQhkECSZm87pH4c393LqTiKyUSvOgTdz_s82yvM,655
|
|
2541
2631
|
scitex/scholar/url_finder/translators/individual/public_record_office_victoria.py,sha256=V8RiIUKxUvzWj2VFS61XbxHybSrLlLgybSRPbTr8A5g,663
|
|
2542
2632
|
scitex/scholar/url_finder/translators/individual/publications_du_quebec.py,sha256=HmBw2gXy68QLAtqvwzj6CwKoMlEJvR09w6otYShukeA,626
|
|
2543
2633
|
scitex/scholar/url_finder/translators/individual/publications_office_of_the_european_union.py,sha256=naUP2Q41rJTemtBZM0EY1IdUrFai8xO5IVLV9EjKTko,680
|
|
2544
|
-
scitex/scholar/url_finder/translators/individual/pubmed.py,sha256
|
|
2545
|
-
scitex/scholar/url_finder/translators/individual/pubmed_central.py,sha256=
|
|
2634
|
+
scitex/scholar/url_finder/translators/individual/pubmed.py,sha256=IQaPfXM6vjcFPzFeLxxRvLVPPDulDLkYB1uRKewtQ38,12192
|
|
2635
|
+
scitex/scholar/url_finder/translators/individual/pubmed_central.py,sha256=in7n-b16lU7_i-ZdKyWgYBFI-Zsso_gSLkNQkLXClGc,2337
|
|
2546
2636
|
scitex/scholar/url_finder/translators/individual/pubmed_xml.py,sha256=n02N6B8xrVSRNhbwNa9SMGNPJAzCkTtdlt8xkbjhRLk,538
|
|
2547
2637
|
scitex/scholar/url_finder/translators/individual/pubpub.py,sha256=hOnijWMMaA-ZaG-Mw1kHOKOhK6CQ-3YAfzMDcYqHvJE,580
|
|
2548
2638
|
scitex/scholar/url_finder/translators/individual/pypi.py,sha256=k1ZZNG0kS3nJoIotWu9RYqdkAS6C6DeX-I7U5qq4pCo,548
|
|
@@ -2552,7 +2642,7 @@ scitex/scholar/url_finder/translators/individual/r_packages.py,sha256=nJmxFzkrbX
|
|
|
2552
2642
|
scitex/scholar/url_finder/translators/individual/radio_free_europe__radio_liberty.py,sha256=9obuX1-zlnqS39o8bhP5uPDQZPHRagki0DT7h51ROsg,621
|
|
2553
2643
|
scitex/scholar/url_finder/translators/individual/rand.py,sha256=6jfrqZzo-HQoviCVcGPG0X8qpXv3Zyw4Zkftkb9qq1A,556
|
|
2554
2644
|
scitex/scholar/url_finder/translators/individual/rdf.py,sha256=2dSfTTqDCizc4k9Q96dIqpyICRTP5qKrArCps5LrN40,511
|
|
2555
|
-
scitex/scholar/url_finder/translators/individual/rechtspraak_nl.py,sha256=
|
|
2645
|
+
scitex/scholar/url_finder/translators/individual/rechtspraak_nl.py,sha256=Xepi2yuJoWgm5Zio5XGkeZ9nBr9pWgzD7yRMB_9K7Qo,628
|
|
2556
2646
|
scitex/scholar/url_finder/translators/individual/redalyc.py,sha256=huBRrckNn4ojG-kc6jr0JooRwHa6MoxBWsYkWoZzb18,569
|
|
2557
2647
|
scitex/scholar/url_finder/translators/individual/reddit.py,sha256=IIpyL9aateAzQmLy3tjql4Zq1_09s4m9Nb8vcFyTHXA,549
|
|
2558
2648
|
scitex/scholar/url_finder/translators/individual/referbibix.py,sha256=hcUd7lDaFmuNxJpFHEAEjUwX081cj9i_Ie7U7LdJeCc,539
|
|
@@ -2575,7 +2665,7 @@ scitex/scholar/url_finder/translators/individual/sacramento_bee.py,sha256=pTHjD2
|
|
|
2575
2665
|
scitex/scholar/url_finder/translators/individual/sae_papers.py,sha256=_N3MqScFvpVWcNbfLGIs--dWvbew0HK3hLvj6ayNe_M,568
|
|
2576
2666
|
scitex/scholar/url_finder/translators/individual/safari_books_online.py,sha256=92-Sd4RWlkdxJuFLdcug6z6ZjyAYtTGT83Gpme7UdBE,619
|
|
2577
2667
|
scitex/scholar/url_finder/translators/individual/sage.py,sha256=MwjT_24i4SGmJCmz7Gbjx6d6y2IrdwqPDkrYJAdvPUU,625
|
|
2578
|
-
scitex/scholar/url_finder/translators/individual/sage_journals.py,sha256=
|
|
2668
|
+
scitex/scholar/url_finder/translators/individual/sage_journals.py,sha256=zTitq4d7h8G5xSCoMI2ypCoF3knmljHi3tY1smq6ppY,6500
|
|
2579
2669
|
scitex/scholar/url_finder/translators/individual/sage_knowledge.py,sha256=o1zKPtKA4s32OmTYiWWf-7308Q4Rivsjxbi1Mx1RvJc,578
|
|
2580
2670
|
scitex/scholar/url_finder/translators/individual/saildart.py,sha256=SZMJ_eui3ZPIhedfJHjzaLPkASqK62hfTPDWATM8OV4,560
|
|
2581
2671
|
scitex/scholar/url_finder/translators/individual/salt_research_archives.py,sha256=QqlDXiBLnOEgmUR0wNAfyuW_kliE_kNV8ErDC5mf-3o,620
|
|
@@ -2584,26 +2674,26 @@ scitex/scholar/url_finder/translators/individual/scholars_portal_journals.py,sha
|
|
|
2584
2674
|
scitex/scholar/url_finder/translators/individual/scholia.py,sha256=VjWhd8qah5DtEwv5QajlcxNv4Tao4_vbAO2IWbGNv1E,564
|
|
2585
2675
|
scitex/scholar/url_finder/translators/individual/schweizer_radio_und_fernsehen_srf.py,sha256=vds2neAWH9I8djz0B1gl7BPbxC6xV69gJbyvytu9RE0,660
|
|
2586
2676
|
scitex/scholar/url_finder/translators/individual/scielo.py,sha256=iSLf5U-yeksApljTK0RayOY6Pv3BreDKRaLn47Zf3W8,651
|
|
2587
|
-
scitex/scholar/url_finder/translators/individual/sciencedirect.py,sha256=
|
|
2677
|
+
scitex/scholar/url_finder/translators/individual/sciencedirect.py,sha256=ua0E9PfVl8Pqb6y6gslrhNoJoIRuZRh0UeYyq9oClTs,4589
|
|
2588
2678
|
scitex/scholar/url_finder/translators/individual/scinapse.py,sha256=_1FWZvVHEUHsN3l9Ox5THivKQB-ho4g8fHh7q1aT514,3451
|
|
2589
2679
|
scitex/scholar/url_finder/translators/individual/scopus.py,sha256=Pnymsg0vPkPx50a7Q4rbPb9es7e43M8nuHO4BmCKoS8,547
|
|
2590
2680
|
scitex/scholar/url_finder/translators/individual/semantic_scholar.py,sha256=CwNnDmHRjGvr2MalVsZC5e2ntG_zBEHfD3rm7CFCwXE,681
|
|
2591
|
-
scitex/scholar/url_finder/translators/individual/semantics_visual_library.py,sha256=
|
|
2681
|
+
scitex/scholar/url_finder/translators/individual/semantics_visual_library.py,sha256=mjkVfCt-GI6OqHea47QT1FAvKVsl4P9uc5E8NGYoG0A,676
|
|
2592
2682
|
scitex/scholar/url_finder/translators/individual/sfu_ipinch.py,sha256=vbF-FbiFvknc8fkdn-fb0L8z4gl6GpKZcs8LXORh32c,591
|
|
2593
|
-
scitex/scholar/url_finder/translators/individual/silverchair.py,sha256=
|
|
2683
|
+
scitex/scholar/url_finder/translators/individual/silverchair.py,sha256=YAVidF4seUxzuqSY5h_PAtZ0h5iZcAr21uyzmnMH43I,11905
|
|
2594
2684
|
scitex/scholar/url_finder/translators/individual/sipri.py,sha256=OPb8cXzMyd0uQF4M9aYahtuGr-KyCHKTMNxi5xw0Jws,545
|
|
2595
2685
|
scitex/scholar/url_finder/translators/individual/sirs_knowledge_source.py,sha256=oNDO_pG5B7lNQHlJZBeI6hVp3EEesZ_Uu1DFJ31W9NM,613
|
|
2596
2686
|
scitex/scholar/url_finder/translators/individual/slate.py,sha256=CeZm162GAipxYGl_sTfs4SFmoKmOP1PfAr7qfzcVd18,537
|
|
2597
2687
|
scitex/scholar/url_finder/translators/individual/slideshare.py,sha256=X0_dE5jbANS6h_nShf6RxC0DBp6yAPb8biekR6VZHT0,567
|
|
2598
2688
|
scitex/scholar/url_finder/translators/individual/slub_dresden.py,sha256=4N5Cu178g_ucWZdyev54MTZ5Lz2Dd_DNgs_qivyhb9A,578
|
|
2599
|
-
scitex/scholar/url_finder/translators/individual/sora.py,sha256=
|
|
2600
|
-
scitex/scholar/url_finder/translators/individual/springer.py,sha256=
|
|
2689
|
+
scitex/scholar/url_finder/translators/individual/sora.py,sha256=CeLr7PWEYw69_sLxX93roMTdt7ZmM139RnvNYK7XMj0,590
|
|
2690
|
+
scitex/scholar/url_finder/translators/individual/springer.py,sha256=LsozRMZ4j25hYBBeg76_R380RXXGLYtWbelL2mGj5vY,4262
|
|
2601
2691
|
scitex/scholar/url_finder/translators/individual/springer_link.py,sha256=I2un7cNLZiEN63O7DeDVHkquKCN-jBej4SikQ23Allo,675
|
|
2602
2692
|
scitex/scholar/url_finder/translators/individual/ssoar.py,sha256=-iCCBCDhxBeFjAYOH252r8kqcsxFbD6EUliaZhSQKes,543
|
|
2603
|
-
scitex/scholar/url_finder/translators/individual/ssrn.py,sha256=
|
|
2693
|
+
scitex/scholar/url_finder/translators/individual/ssrn.py,sha256=FnS6cVyQPONNOvl1Q9VC5fNnQX5O8jPWZyShyafBBSU,1950
|
|
2604
2694
|
scitex/scholar/url_finder/translators/individual/stack_exchange.py,sha256=y9rxLjQG2-7RobMmZZjlghcNbNX3-FHmd9PUL4AYOJI,666
|
|
2605
2695
|
scitex/scholar/url_finder/translators/individual/standard_ebooks.py,sha256=NRAshZTI44N04veDbFi8Bkk5ts_PYFuGKzFKUvRAb2I,585
|
|
2606
|
-
scitex/scholar/url_finder/translators/individual/stanford_encyclopedia_of_philosophy.py,sha256=
|
|
2696
|
+
scitex/scholar/url_finder/translators/individual/stanford_encyclopedia_of_philosophy.py,sha256=ZpbuF5G5anY5tOf0qNhE5tRYZgHU8gvMpIAkhCvEuSs,722
|
|
2607
2697
|
scitex/scholar/url_finder/translators/individual/stanford_university_press.py,sha256=sAW1yBI0FqZRRviShIiJxNpBCfcyS-GgV9Z15ivxqN4,632
|
|
2608
2698
|
scitex/scholar/url_finder/translators/individual/state_records_office_of_western_australia.py,sha256=I3h-tFuWJFRj9b3NGBLZeX-ph9f_YmRlublJdkbt2SU,690
|
|
2609
2699
|
scitex/scholar/url_finder/translators/individual/state_records_office_wa.py,sha256=3pd7xOeDlA2-WPZrRfMeF1JY8zzvQh9NYEknihmthV0,674
|
|
@@ -2614,7 +2704,7 @@ scitex/scholar/url_finder/translators/individual/substack.py,sha256=ne_yxjgKzzZf
|
|
|
2614
2704
|
scitex/scholar/url_finder/translators/individual/sud_ouest.py,sha256=7DUGT2RfdJUzT637CHByEfKNXWxM8_5AN8Kck4KFpMg,559
|
|
2615
2705
|
scitex/scholar/url_finder/translators/individual/sueddeutsche_de.py,sha256=0e9F1Mg8cxw3dCPYIQjUWDLRNBjkh8q8Rn5e1d2h7ow,586
|
|
2616
2706
|
scitex/scholar/url_finder/translators/individual/summon_2.py,sha256=d87yC-sbzilRXFzLEppZo3IA77o4--QEiJ5ARjR0t5w,577
|
|
2617
|
-
scitex/scholar/url_finder/translators/individual/superlib.py,sha256=
|
|
2707
|
+
scitex/scholar/url_finder/translators/individual/superlib.py,sha256=_CtyoWn7Sa-3w4UqelKwZtr_sRm8CuWm0AGgZWwm8m4,611
|
|
2618
2708
|
scitex/scholar/url_finder/translators/individual/svenska_dagbladet.py,sha256=1whRRBa-NyfdgiGfuGx02JPAMU6BLRWF2Re5S8AI4QI,585
|
|
2619
2709
|
scitex/scholar/url_finder/translators/individual/sveriges_radio.py,sha256=m5Oz36fyQ8OpCxY2ObVsG6xA_y61J9oKGJaJo9aj5tw,594
|
|
2620
2710
|
scitex/scholar/url_finder/translators/individual/svt_nyheter.py,sha256=AzDvR0xPaAjOpuZ0hs-gu7YEQdLzdk5nCoDCIdBkAWY,570
|
|
@@ -2666,7 +2756,7 @@ scitex/scholar/url_finder/translators/individual/tony_blair_institute.py,sha256=
|
|
|
2666
2756
|
scitex/scholar/url_finder/translators/individual/tony_blair_institute_for_global_change.py,sha256=0hj-stq_f9KfIA4K_X0SzfACGhMwmrWKZUdYZ_PevNs,670
|
|
2667
2757
|
scitex/scholar/url_finder/translators/individual/toronto_star.py,sha256=mzcaafLWnLFjjoXpQ7enpa3dU6_wixvW8wn0-fL9bGg,571
|
|
2668
2758
|
scitex/scholar/url_finder/translators/individual/transportation_research_board.py,sha256=r_85XbmW-KpGsQirEeNQVykqHxZS_7vnnOvCoR6pft0,641
|
|
2669
|
-
scitex/scholar/url_finder/translators/individual/treesearch.py,sha256=
|
|
2759
|
+
scitex/scholar/url_finder/translators/individual/treesearch.py,sha256=ou0yF2YNne9Q2GkfUOs6ljjrA5vW2PvZjDvRwf2wFbU,619
|
|
2670
2760
|
scitex/scholar/url_finder/translators/individual/trove.py,sha256=XpCRW5__boBgggf5zqGqTdsU0Z0Zvhm4FyuRw5Er6k4,622
|
|
2671
2761
|
scitex/scholar/url_finder/translators/individual/tumblr.py,sha256=X78JlSCLSsOWxJGWus-mg7f3bGh_wKKJl0lJPmST5NU,549
|
|
2672
2762
|
scitex/scholar/url_finder/translators/individual/tv_by_the_numbers.py,sha256=FeSlU49hRJWRQ8BhSKDIW7mQVWt5UGumuHRbaAer-Vc,599
|
|
@@ -2677,7 +2767,7 @@ scitex/scholar/url_finder/translators/individual/uchicago_vufind.py,sha256=aRKv5
|
|
|
2677
2767
|
scitex/scholar/url_finder/translators/individual/unapi.py,sha256=98n8UZuN0UsnEQxnCpCs-D2dYc9tEOKHSa2E-KUPlfI,518
|
|
2678
2768
|
scitex/scholar/url_finder/translators/individual/unesco.py,sha256=Byb1A-n-7we4PgyU4ubll3wASAk9TLPkUpVOn2iOayc,572
|
|
2679
2769
|
scitex/scholar/url_finder/translators/individual/university_of_california_press_books.py,sha256=6pcl8xsFlJfFQPOLvPvurWE614JfUX7z3sVg9wqeEGc,684
|
|
2680
|
-
scitex/scholar/url_finder/translators/individual/university_of_chicago_press_books.py,sha256=
|
|
2770
|
+
scitex/scholar/url_finder/translators/individual/university_of_chicago_press_books.py,sha256=NLmiPGTM-vDMPXWlcvh7XCcvnAw5_K5GrIARfJBzKd0,709
|
|
2681
2771
|
scitex/scholar/url_finder/translators/individual/university_of_wisconsin_madison_libraries_catalog.py,sha256=IxFS63c2FAcyR7-N_pcPhJgTGmzxot7HaqbahyQo7zo,740
|
|
2682
2772
|
scitex/scholar/url_finder/translators/individual/university_press_scholarship.py,sha256=FmX7qAc24TjOkFeZyvH5pxGflPQMghwo6rnbb8rPNhs,655
|
|
2683
2773
|
scitex/scholar/url_finder/translators/individual/unqualified_dublin_core_rdf.py,sha256=KRlkHM1tmru39uHqw1cEWhIObmr_96JJwrpyf2BdQH8,604
|
|
@@ -2693,14 +2783,14 @@ scitex/scholar/url_finder/translators/individual/verso_books.py,sha256=bN-Ecw2PR
|
|
|
2693
2783
|
scitex/scholar/url_finder/translators/individual/vice.py,sha256=8_fOfT08HS1l1Ag1hX5H0_Y3nXHkWLu6W6bzp_dVQ2o,540
|
|
2694
2784
|
scitex/scholar/url_finder/translators/individual/victoria___albert_museum.py,sha256=G46x-x9s1DDMAETZvsYozQkG4yudt1GnoiG9OMpxjIY,622
|
|
2695
2785
|
scitex/scholar/url_finder/translators/individual/vimeo.py,sha256=uSSMe2-gDisuzNL5yyyFqTdEIVoEmWJc9Qqc_NlVcRE,544
|
|
2696
|
-
scitex/scholar/url_finder/translators/individual/vlex.py,sha256=
|
|
2786
|
+
scitex/scholar/url_finder/translators/individual/vlex.py,sha256=ovj28iK0HztM7B9kvOy19LzoL_hXFOAyRe9FXxE8juY,603
|
|
2697
2787
|
scitex/scholar/url_finder/translators/individual/voxeu.py,sha256=ei9SEuqSC7D7Kvogi12uDhijK0nIuzFSEUzj33YP9jg,544
|
|
2698
2788
|
scitex/scholar/url_finder/translators/individual/wall_street_journal.py,sha256=ftOQhs7i4yz9AU7Ym5A8WLhkNt0Kw-OkAolMecTWjhA,610
|
|
2699
2789
|
scitex/scholar/url_finder/translators/individual/wanfang_data.py,sha256=kSJWYmMwk4hUN-P9NT2ot4w--TL6pkhatOrMbDtHCBM,585
|
|
2700
2790
|
scitex/scholar/url_finder/translators/individual/washington_monthly.py,sha256=lTMPZnEkZwPCUb4OJlTX8vwnI4CUq4iyL1K-u01MFig,607
|
|
2701
2791
|
scitex/scholar/url_finder/translators/individual/washington_post.py,sha256=LdxsVG_ZkkSAEYFFpQCe8lKR4owKb_nDsueG4gpH2DQ,590
|
|
2702
|
-
scitex/scholar/url_finder/translators/individual/web_of_science.py,sha256=
|
|
2703
|
-
scitex/scholar/url_finder/translators/individual/web_of_science_nextgen.py,sha256=
|
|
2792
|
+
scitex/scholar/url_finder/translators/individual/web_of_science.py,sha256=LxMPGSmFysFl_yRiPjSipUtwQkXZmvnXxyrGQE7ZR_0,638
|
|
2793
|
+
scitex/scholar/url_finder/translators/individual/web_of_science_nextgen.py,sha256=Bmx6vk5iGdvRr6qmqdTMi_sAN5cy2EmmeFHljWcSxDc,659
|
|
2704
2794
|
scitex/scholar/url_finder/translators/individual/web_of_science_tagged.py,sha256=CI6XEzuXUe09AK-y7EhFH6YDp5oJ-JdNoioQFIhhgtw,580
|
|
2705
2795
|
scitex/scholar/url_finder/translators/individual/welt_online.py,sha256=lK3UJUUtzhUFwwQb5wM95mFeDL-eOMC8ITUlns78RX8,562
|
|
2706
2796
|
scitex/scholar/url_finder/translators/individual/westlaw_uk.py,sha256=DuNXECLXhw8nvhKMH1z2QnMICQ9v5yQzyc7PZiAmxdA,570
|
|
@@ -2715,9 +2805,9 @@ scitex/scholar/url_finder/translators/individual/wikisource.py,sha256=i8ZX9XWdsW
|
|
|
2715
2805
|
scitex/scholar/url_finder/translators/individual/wikiwand.py,sha256=vfE79IXyp_v9vbZ4UPFugWhSFI3wYX37cjPxQDeAlHc,570
|
|
2716
2806
|
scitex/scholar/url_finder/translators/individual/wiktionary.py,sha256=izfR1iKJpXzhlTwB9a6tnrQy-CdVnwBkL79XDlR2GpM,569
|
|
2717
2807
|
scitex/scholar/url_finder/translators/individual/wildlife_biology_in_practice.py,sha256=H_P9eZryWSMReN2jKQ7uHdRBa9X2NrzTWSLy6FXl3qM,655
|
|
2718
|
-
scitex/scholar/url_finder/translators/individual/wiley.py,sha256=
|
|
2808
|
+
scitex/scholar/url_finder/translators/individual/wiley.py,sha256=vmVpVdqtJkMFXPr3Kc177aWOPo4cG3ygeAP2qLpSSPY,7176
|
|
2719
2809
|
scitex/scholar/url_finder/translators/individual/wiley_online_library.py,sha256=U4VPKkEr4o4wGz5ax0I9oqYKGBz3N7jFQLVcnyN_G44,779
|
|
2720
|
-
scitex/scholar/url_finder/translators/individual/wilson_center_digital_archive.py,sha256=
|
|
2810
|
+
scitex/scholar/url_finder/translators/individual/wilson_center_digital_archive.py,sha256=C2r6ST1-ivpF9FzGjfppZzYJNyt3NCWqRSYixNf3Dt0,695
|
|
2721
2811
|
scitex/scholar/url_finder/translators/individual/winnipeg_free_press.py,sha256=wpfKdHXJxuIdjbC7v8OHifTF9j2w7v5mT5ZGP560dnw,607
|
|
2722
2812
|
scitex/scholar/url_finder/translators/individual/wipo.py,sha256=-gEFiIeUdpl779Wy-r33haJ_tgFjTC64lLRU7nR5bVo,544
|
|
2723
2813
|
scitex/scholar/url_finder/translators/individual/wired.py,sha256=UFE5j360X1tQBdYFLcL6Rt1gdi-MEtbLcGq9Zv4adD4,553
|
|
@@ -2744,218 +2834,224 @@ scitex/scholar/url_finder/translators/individual/zoterobib.py,sha256=M0eKQXlVyYg
|
|
|
2744
2834
|
scitex/scholar/utils/__init__.py,sha256=leFMQOthrMMcnaoNvoP6oSYy0HSs0CXsg_Lr6yE2HnE,576
|
|
2745
2835
|
scitex/scholar/utils/create_demo_movie.sh,sha256=NTUZWbhMPxkWk0Tm6KOtPTKoak6BRbrZ4m_xCtZHB4I,1334
|
|
2746
2836
|
scitex/scholar/utils/bibtex/__init__.py,sha256=MM7n6ylcE8LL6tmb7Dl4MUFwnQve53LYnBrEbuicOjQ,177
|
|
2747
|
-
scitex/scholar/utils/bibtex/_parse_bibtex.py,sha256=
|
|
2837
|
+
scitex/scholar/utils/bibtex/_parse_bibtex.py,sha256=7vFpssdgnIRqdO1FVubbcV_Bri5t4qnmXQIl5kjUZPo,2342
|
|
2748
2838
|
scitex/scholar/utils/cleanup/__init__.py,sha256=GDjeZ67TDQ4sR53esq9QXhN_dTJgW3vO5HaN7moiwwM,254
|
|
2749
|
-
scitex/scholar/utils/cleanup/_cleanup_scholar_processes.py,sha256=
|
|
2750
|
-
scitex/scholar/utils/text/_TextNormalizer.py,sha256=
|
|
2839
|
+
scitex/scholar/utils/cleanup/_cleanup_scholar_processes.py,sha256=Ui9nYqBLMVIag4WX-Kvxqn2qzrMYgyI7-s0-jGMZomI,2566
|
|
2840
|
+
scitex/scholar/utils/text/_TextNormalizer.py,sha256=xj71sMS0Xq0x60llmFcU6aik26X7_IlRszzXJPY4NY4,13834
|
|
2751
2841
|
scitex/scholar/utils/text/__init__.py,sha256=LoA-wDNzVXx1r6D8vn5ghSIfJTTjWwyJ65jZZlhTDMw,181
|
|
2752
|
-
scitex/scholar/utils/validation/DOIValidator.py,sha256=
|
|
2842
|
+
scitex/scholar/utils/validation/DOIValidator.py,sha256=F9QIYy-Zgr9gYl1dBNVyC2ipzJMJ0HxbLwz-64mo0fA,9074
|
|
2753
2843
|
scitex/scholar/utils/validation/README.md,sha256=XdrYx9voyAaGyKXKsZX8D7ahQg7xGj61yODZu1iaIrY,5427
|
|
2754
2844
|
scitex/scholar/utils/validation/__init__.py,sha256=3IrRzdn95nGaYFe8mhrkATiA6Hj666fddaVtIWS9ryU,243
|
|
2755
|
-
scitex/scholar/utils/validation/validate_library_dois.py,sha256=
|
|
2756
|
-
scitex/scholar/zotero/__init__.py,sha256=
|
|
2845
|
+
scitex/scholar/utils/validation/validate_library_dois.py,sha256=xLKFbJkoS5UL4uCgDr21vjYyakIGx39q5hesPeHZZzc,7276
|
|
2846
|
+
scitex/scholar/zotero/__init__.py,sha256=jbs9hthqEn2Zu3SHCqw8MCE-gKfR1ksJwsnV3McmWzk,1061
|
|
2757
2847
|
scitex/security/README.md,sha256=nm-NzbDKzqD9RwUSRxOuFXPcTU-4LwSTruCwnEHZQT8,5700
|
|
2758
2848
|
scitex/security/__init__.py,sha256=0ze-_dRZiDs4Hh9gKkjpbtwfaUDKe6tFrUQBbAEOnQk,769
|
|
2759
|
-
scitex/security/cli.py,sha256
|
|
2760
|
-
scitex/security/github.py,sha256=
|
|
2849
|
+
scitex/security/cli.py,sha256=cmI88lVnHgRaj91-Ig6qUY6_fhWM2bwSoOZiVA2G0vU,3535
|
|
2850
|
+
scitex/security/github.py,sha256=7Hpmvfjr7iFfEy16p1nq3cKGAA2XJ995BhkujCTkjfU,11094
|
|
2761
2851
|
scitex/session/README.md,sha256=lcXy_JnOgwA2oRlMrAREAg6w4xxrEz0j3syvatwxoko,6052
|
|
2762
|
-
scitex/session/__init__.py,sha256=
|
|
2763
|
-
scitex/session/_decorator.py,sha256
|
|
2764
|
-
scitex/session/_lifecycle.py,sha256=
|
|
2765
|
-
scitex/session/_manager.py,sha256
|
|
2852
|
+
scitex/session/__init__.py,sha256=7QlA3DqRfcISnmMZHy6Qct5VfbH_VcCyKsSsr95eZ8A,1515
|
|
2853
|
+
scitex/session/_decorator.py,sha256=-cL5oTWYus_sATH02kLeXkWJVzsd77rn_hRT-Lqx5qs,20258
|
|
2854
|
+
scitex/session/_lifecycle.py,sha256=Y3UXl5-tS6qBY9qbpM2lq8bCRYhfnvXLZRCv2khTUoA,25927
|
|
2855
|
+
scitex/session/_manager.py,sha256=-0SPAmfVq3LvMGR2oWhqklI5hN8IzJhgBjVVrpfwlvs,2772
|
|
2766
2856
|
scitex/session/template.py,sha256=JqnYA-8dtq-zUyAbbCJ_8aCIoThgxsn7CXIRWyLO54U,532
|
|
2767
2857
|
scitex/sh/README.md,sha256=G_7S2FDQj9G7ThPKCcDWVRzWV3LPDbyqv-o1ivUYdu0,1404
|
|
2768
|
-
scitex/sh/__init__.py,sha256=
|
|
2769
|
-
scitex/sh/_execute.py,sha256=
|
|
2770
|
-
scitex/sh/_security.py,sha256=
|
|
2771
|
-
scitex/sh/_types.py,sha256=
|
|
2858
|
+
scitex/sh/__init__.py,sha256=TzcEl0LumTyYZ8tdSn_BPbErf0v2S9dTgZpqgY-ZvoA,2565
|
|
2859
|
+
scitex/sh/_execute.py,sha256=Sm3oCL2lj66V2qCmzRQ_FmF5DatDJlxH5Gm0H-pvZ5A,6951
|
|
2860
|
+
scitex/sh/_security.py,sha256=FoW9RtBY69z33prEiusHfflrG4V912gv4JdpA_zaEPE,1753
|
|
2861
|
+
scitex/sh/_types.py,sha256=ydWw3i82K3XmSow3ldAgG40Og-vZ75fPy7NzR2cwBx4,605
|
|
2772
2862
|
scitex/stats/README.md,sha256=v6PMJRE-NI9bnHXfEnzES4dYHLOyTWpSSDLAzsp161I,33416
|
|
2773
|
-
scitex/stats/__init__.py,sha256=
|
|
2774
|
-
scitex/stats/_schema.py,sha256=
|
|
2863
|
+
scitex/stats/__init__.py,sha256=p-lR7r407t7uqbkihAzJhzSjJkPDSjqAoLFcDUdurqg,2432
|
|
2864
|
+
scitex/stats/_schema.py,sha256=zlzpnetogH6v66vOyi8hja2deVcwFFg-8EIsy_TcxTw,1231
|
|
2775
2865
|
scitex/stats/run_all.sh,sha256=Q_fw3q_10mlQAUBRggSNrl0gILFvTFUlFztH2Aicfhs,1381
|
|
2776
|
-
scitex/stats/
|
|
2777
|
-
scitex/stats/
|
|
2778
|
-
scitex/stats/
|
|
2779
|
-
scitex/stats/
|
|
2780
|
-
scitex/stats/
|
|
2781
|
-
scitex/stats/
|
|
2866
|
+
scitex/stats/auto/__init__.py,sha256=5Wb55Sq-1w1F6riYO_gKbJ80dtOon6Va9cYTF7QNzKc,4785
|
|
2867
|
+
scitex/stats/auto/_context.py,sha256=ROHQYzfPTjqafidGufwymiyqXeK84WnpG0Apt3trgio,10090
|
|
2868
|
+
scitex/stats/auto/_formatting.py,sha256=GgJ0HgIFgqCwI0sHn-5oCYuodl79m5ailD4WIoMDvAI,17864
|
|
2869
|
+
scitex/stats/auto/_rules.py,sha256=nkUx4jFkGC93NdJHn-IcmIW2h0thyQuRjQXEjr6F_ls,26502
|
|
2870
|
+
scitex/stats/auto/_selector.py,sha256=UkRkeD_WLrSoNzJ05u1noYqAbmtRKNG3j040zWhhSuk,16442
|
|
2871
|
+
scitex/stats/auto/_styles.py,sha256=Wrrp3KeJoyE8mcW4G1uP8IWFY493ss7WlYqX_Fw0mhU,19514
|
|
2872
|
+
scitex/stats/correct/__init__.py,sha256=siwwEfrElkN3vOAoXam5zPu6t7IKE4etjBegzPb4PY0,534
|
|
2873
|
+
scitex/stats/correct/_correct_bonferroni.py,sha256=aJoEmGrLmd7lisAIEFCdYKAF3co7U3XVdUt4cvZJ_lc,16600
|
|
2874
|
+
scitex/stats/correct/_correct_fdr.py,sha256=XIToE2CmpOI0d-52dIlRGBg3pqh1d2qcff_KYMZ0jvs,19262
|
|
2875
|
+
scitex/stats/correct/_correct_fdr_.py,sha256=8XoLx-qKuSMU0-DOq7Cd2k7js4thsNhngh-QmepsfUI,20039
|
|
2876
|
+
scitex/stats/correct/_correct_holm.py,sha256=AUmcjmDits00N6-K7mF-Es4ULNovcOotyAkTOuQ0c8s,17033
|
|
2877
|
+
scitex/stats/correct/_correct_sidak.py,sha256=pq_lT4nDAv_5azfhCcLjPos86L-TdZnXTHO15sXzgS8,16569
|
|
2782
2878
|
scitex/stats/descriptive/__init__.py,sha256=72GIKpZqdmXB_mMYTx52OyFuUayd4PM1B-6QHsm6Hrs,1338
|
|
2783
|
-
scitex/stats/descriptive/_circular.py,sha256=
|
|
2784
|
-
scitex/stats/descriptive/_describe.py,sha256=
|
|
2785
|
-
scitex/stats/descriptive/_nan.py,sha256=
|
|
2786
|
-
scitex/stats/descriptive/_real.py,sha256=
|
|
2787
|
-
scitex/stats/effect_sizes/__init__.py,sha256=
|
|
2788
|
-
scitex/stats/effect_sizes/_cliffs_delta.py,sha256=
|
|
2789
|
-
scitex/stats/effect_sizes/_cohens_d.py,sha256=
|
|
2790
|
-
scitex/stats/effect_sizes/_epsilon_squared.py,sha256=
|
|
2791
|
-
scitex/stats/effect_sizes/_eta_squared.py,sha256=
|
|
2792
|
-
scitex/stats/effect_sizes/_prob_superiority.py,sha256=
|
|
2793
|
-
scitex/stats/posthoc/__init__.py,sha256=
|
|
2794
|
-
scitex/stats/posthoc/_dunnett.py,sha256=
|
|
2795
|
-
scitex/stats/posthoc/_games_howell.py,sha256=
|
|
2796
|
-
scitex/stats/posthoc/_tukey_hsd.py,sha256
|
|
2797
|
-
scitex/stats/power/__init__.py,sha256=
|
|
2798
|
-
scitex/stats/power/_power.py,sha256=
|
|
2799
|
-
scitex/stats/tests/__init__.py,sha256=
|
|
2800
|
-
scitex/stats/tests/correlation/__init__.py,sha256=
|
|
2801
|
-
scitex/stats/tests/correlation/_test_pearson.py,sha256=
|
|
2802
|
-
scitex/stats/utils/__init__.py,sha256=
|
|
2803
|
-
scitex/stats/utils/_effect_size.py,sha256=
|
|
2804
|
-
scitex/stats/utils/_formatters.py,sha256=
|
|
2805
|
-
scitex/stats/utils/_normalizers.py,sha256=
|
|
2806
|
-
scitex/stats/utils/_power.py,sha256=
|
|
2807
|
-
scitex/str/__init__.py,sha256=
|
|
2808
|
-
scitex/str/_clean_path.py,sha256=
|
|
2879
|
+
scitex/stats/descriptive/_circular.py,sha256=GC6k_DFoBvUZMc5tUBh5DmD-ECi1h85RxDWx9Xpf1Kw,15596
|
|
2880
|
+
scitex/stats/descriptive/_describe.py,sha256=QGsB2qQl2iiC8n86M7N3L9Y8wHpJDy24kUoJdbcB7sQ,5932
|
|
2881
|
+
scitex/stats/descriptive/_nan.py,sha256=sYxYcMGuK2BFTwoMxW3Ym9iTFXaYTzqYLbD-uAeq6YM,16130
|
|
2882
|
+
scitex/stats/descriptive/_real.py,sha256=olW_GH1YvCmaoBFr3Zl2S2CHj1nep3yIr9NQuCtJaJE,4547
|
|
2883
|
+
scitex/stats/effect_sizes/__init__.py,sha256=pMeQK3JBOnC4dN8fWkuYv5zKQ-ZkMTxZj9UA_IyF0Tc,1290
|
|
2884
|
+
scitex/stats/effect_sizes/_cliffs_delta.py,sha256=zWWi_7O48kuvlIroCEfVeZHekVe9fxAm290pkn2JqG4,8782
|
|
2885
|
+
scitex/stats/effect_sizes/_cohens_d.py,sha256=9T3ceXgxNj8_xZfQUgBtjQDuV5XiSCst7w71Dn_L8rA,8998
|
|
2886
|
+
scitex/stats/effect_sizes/_epsilon_squared.py,sha256=gElBl-hNXd1NYvXgtNIG5eRF61Qu34vAlCXtrHerHLA,8390
|
|
2887
|
+
scitex/stats/effect_sizes/_eta_squared.py,sha256=Tg08fXlQtTRNZ4YWeDnwiMKWXlZv5bukLbN_9NXd_dg,7743
|
|
2888
|
+
scitex/stats/effect_sizes/_prob_superiority.py,sha256=g_eOl-so7Uj6Jayh4MuV3TwEimgQTBSpG1gkgJNKm3U,7548
|
|
2889
|
+
scitex/stats/posthoc/__init__.py,sha256=8JOHiur5e7JDF4MVqGxUMgzvIVypZA-R1iBNRSzPGJo,447
|
|
2890
|
+
scitex/stats/posthoc/_dunnett.py,sha256=7uNznE_LIO9GCUBdX50zT9fArN1KRfAaaBD8X8XEQqE,15411
|
|
2891
|
+
scitex/stats/posthoc/_games_howell.py,sha256=T-qpzgqPS0zFoav6VUVxIA8OAG4gmMctRNe0UvLBde4,12481
|
|
2892
|
+
scitex/stats/posthoc/_tukey_hsd.py,sha256=-hAP6Nd0j8aFGyPnA2T4lrxUvKz2vvNg-UkiclWHBXI,11621
|
|
2893
|
+
scitex/stats/power/__init__.py,sha256=CpRG7woBFLZ9h9Bnb-H3cl8wP3h15T7R4h7jmylO9wo,349
|
|
2894
|
+
scitex/stats/power/_power.py,sha256=WKT6Mwg2YqHKIOdfzu2Ux_wsfkUWd52B5qtcDfpXR1c,13425
|
|
2895
|
+
scitex/stats/tests/__init__.py,sha256=NigFAqRvPJCqDl1pJ24ftcfOviF9vRv0yI28XX2t1zw,193
|
|
2896
|
+
scitex/stats/tests/correlation/__init__.py,sha256=UtsPY37DBqJW2pl7xB2mj4Sdq3KvtseQU8-dLsVcgAw,209
|
|
2897
|
+
scitex/stats/tests/correlation/_test_pearson.py,sha256=NyKLONbNiR3OEE-LRUto8w4Ip5WsI5TBnukuw2rgHo4,7292
|
|
2898
|
+
scitex/stats/utils/__init__.py,sha256=8pDjlwSnpnr48HwTvT2C9JcX5NJNxdPAo0s2U7ouka0,1110
|
|
2899
|
+
scitex/stats/utils/_effect_size.py,sha256=h8KLPPxlM0RUHSly5eYBqHk2eIvHqa3c7XPqUZRf9ZE,26664
|
|
2900
|
+
scitex/stats/utils/_formatters.py,sha256=2Y9g5LIazsncDzqApp6Vjgl8P3qivwN7yVip-thgvjM,7761
|
|
2901
|
+
scitex/stats/utils/_normalizers.py,sha256=6BPIrMpcq3Ga1Tryfh0-NbacHhaOsPQtNpmSnl6CeV4,25820
|
|
2902
|
+
scitex/stats/utils/_power.py,sha256=WKT6Mwg2YqHKIOdfzu2Ux_wsfkUWd52B5qtcDfpXR1c,13425
|
|
2903
|
+
scitex/str/__init__.py,sha256=BLrWgcUujEPART6pOLBC1UHLapYMaM-IPWdGYaKKkhw,2629
|
|
2904
|
+
scitex/str/_clean_path.py,sha256=WsWzZOyOAzwCPh6F6W5EcN02_d3WUOiTAnot_Oe4IUM,2035
|
|
2809
2905
|
scitex/str/_color_text.py,sha256=JvnFMgS04fQGntuQVuwEzTXCUX56Bq6-nZ1yX1jo5ng,1307
|
|
2810
2906
|
scitex/str/_decapitalize.py,sha256=qdH4DOu4KJvbthWLrXy-V43N181hkRih7VFGQiXGdx8,1185
|
|
2811
|
-
scitex/str/_factor_out_digits.py,sha256=
|
|
2812
|
-
scitex/str/_format_plot_text.py,sha256=
|
|
2907
|
+
scitex/str/_factor_out_digits.py,sha256=ObTRXCzoexiMK0g2fXrXH66vteLTfmNomnjT0pQhU8s,9054
|
|
2908
|
+
scitex/str/_format_plot_text.py,sha256=rF_p9rNDr7DKv5ocj-fwGXVXPm6FC3QCC6WC20XFKPY,16366
|
|
2813
2909
|
scitex/str/_grep.py,sha256=-aDf5H4MuAjoqUHzQe9LAHIACrvluOnJI-kNN99r_lg,1192
|
|
2814
|
-
scitex/str/_latex.py,sha256=
|
|
2815
|
-
scitex/str/_latex_fallback.py,sha256=
|
|
2910
|
+
scitex/str/_latex.py,sha256=rUY0wq-cSeH3ilaWkhwSH2qJyF0ZvmOL1cwS2syhlUA,4113
|
|
2911
|
+
scitex/str/_latex_fallback.py,sha256=d1U8l4iYAOTe2SJG0ddTQtFVAA7c24KunNyEpAXCv14,16080
|
|
2816
2912
|
scitex/str/_mask_api.py,sha256=3T-XmGBiLPeekutyDGoZ-GertWeeG5l-XD2Cx151LkI,1043
|
|
2817
2913
|
scitex/str/_mask_api_key.py,sha256=NutKTBlxpxjgUH1blGivNO89JHildZDAsRgR1uwtPdA,225
|
|
2818
|
-
scitex/str/_parse.py,sha256=
|
|
2914
|
+
scitex/str/_parse.py,sha256=j5nV4uD3FWNnW3Q_qz0zIh0dWggi1CSJ5odlh8v2VDU,4755
|
|
2819
2915
|
scitex/str/_print_block.py,sha256=mQnFVLEhSxWvxBY0x1DTdijdQMSlloSTPZdCTyFogg4,1285
|
|
2820
|
-
scitex/str/_print_debug.py,sha256=
|
|
2821
|
-
scitex/str/_printc.py,sha256=
|
|
2916
|
+
scitex/str/_print_debug.py,sha256=Z18s1k-ZZJ8XZ_K1dkJ7Ijoh3amHpa4DKLaICcfAIUI,1888
|
|
2917
|
+
scitex/str/_printc.py,sha256=wjWTdgzMl4xSwpa_7vjAayBPhGpcPzGrI8fJvp6lSFY,1706
|
|
2822
2918
|
scitex/str/_readable_bytes.py,sha256=x66dIeXlxiycxl1m-AJCz6sE1WZ5jkUpWuDzvtIA6So,924
|
|
2823
2919
|
scitex/str/_remove_ansi.py,sha256=CvX2ctmLEbvxseM6UTAOemjbq6sG-ga5RM76O6V6QFQ,483
|
|
2824
2920
|
scitex/str/_replace.py,sha256=Bz3BC6Eko0TZNaOkdRPSKBb-J1mm3Cjn4mmjMG3psEU,4222
|
|
2825
|
-
scitex/str/_search.py,sha256=
|
|
2921
|
+
scitex/str/_search.py,sha256=8QvX64cbvKOjk1ydVsrAN-4mFeeoMz8I1zTN9JwIe3U,3977
|
|
2826
2922
|
scitex/str/_squeeze_space.py,sha256=WUDZjdQZjyEzuWMWy1JO6pwqtMzCX7Tgh8DgD64ai38,948
|
|
2827
2923
|
scitex/template/README.md,sha256=ix_UlrV5n4K-hko0kwuvYpdRphtPWThpuiiC9CwUo4g,4808
|
|
2828
|
-
scitex/template/__init__.py,sha256=
|
|
2829
|
-
scitex/template/_clone_project.py,sha256=
|
|
2830
|
-
scitex/template/_copy.py,sha256=
|
|
2831
|
-
scitex/template/_customize.py,sha256=
|
|
2832
|
-
scitex/template/_git_strategy.py,sha256=
|
|
2924
|
+
scitex/template/__init__.py,sha256=HDHgzkA8835KSpTtvzRzJ4rnfYolgaRtnWHVRuFwdTk,3905
|
|
2925
|
+
scitex/template/_clone_project.py,sha256=YZQhpExa3J6vXMnCPywb69tirdiURA5wLgSTK920ha8,5916
|
|
2926
|
+
scitex/template/_copy.py,sha256=hCAj7K6bR8zeQuq73WY9ZSCZ5xDyYY8mEzuInrUXKBI,2809
|
|
2927
|
+
scitex/template/_customize.py,sha256=ImI6kCSR-QxnWS8vqJ3hAjoBAO8YTmzNheLWAB8b9Yw,2955
|
|
2928
|
+
scitex/template/_git_strategy.py,sha256=WYdi46GSL0uAqIDdi__xGgx1z1iUj8p-MqW73SYLytI,3608
|
|
2833
2929
|
scitex/template/_logging_helpers.py,sha256=rCvfxAuoWD4erWtO4tm1YJwrjsYnBzeb36aiS6ZK6DA,2925
|
|
2834
|
-
scitex/template/_rename.py,sha256=
|
|
2835
|
-
scitex/template/clone_pip_project.py,sha256=
|
|
2836
|
-
scitex/template/clone_research.py,sha256=
|
|
2837
|
-
scitex/template/clone_singularity.py,sha256=
|
|
2838
|
-
scitex/template/clone_writer_directory.py,sha256=
|
|
2839
|
-
scitex/template/.legacy/_clone_project.py,sha256=
|
|
2930
|
+
scitex/template/_rename.py,sha256=m2IMBorLWIhmIKPRhti_pLyMHU57k1BFv-0Zq5qUnu4,1785
|
|
2931
|
+
scitex/template/clone_pip_project.py,sha256=cEQkbyD8x-0iVDrL3iCIH2z5e_7mKIXe-uPQSrni1zw,3047
|
|
2932
|
+
scitex/template/clone_research.py,sha256=cWwW6vQp03u19mDlit-P6yMHF30IW6DQf3xXVdd-D1M,3073
|
|
2933
|
+
scitex/template/clone_singularity.py,sha256=CYMjaUU1Bf58tKtU5tlTKgjd1EphaZvmMpqmhIyPtyw,3103
|
|
2934
|
+
scitex/template/clone_writer_directory.py,sha256=WpLjBatB5z-TM0Rhkj_XaENXSgXJhCvM-mwdLaQH23w,3086
|
|
2935
|
+
scitex/template/.legacy/_clone_project.py,sha256=gaShB24hDqBnE7Kn7IBiH9xM7rg7RtLKBGFVXsWimIw,9075
|
|
2840
2936
|
scitex/tex/__init__.py,sha256=SbgOnoIOIgTkXZxiujxbpb6q8qq7XZC8bTGL2OWyCCU,167
|
|
2841
|
-
scitex/tex/_preview.py,sha256=
|
|
2842
|
-
scitex/tex/_to_vec.py,sha256=
|
|
2843
|
-
scitex/torch/__init__.py,sha256=
|
|
2937
|
+
scitex/tex/_preview.py,sha256=XdantIRB_tYIRpRKkceTFqS3SsnpakYARdZM8C7wGFs,3498
|
|
2938
|
+
scitex/tex/_to_vec.py,sha256=iiIPDpoq3XZIr-wFJc6XBh7hERQYH79aXMNRPKDJlew,3552
|
|
2939
|
+
scitex/torch/__init__.py,sha256=6tOtMb0kyKM3kMIefoGixW4l4kE53mj4lr56Rwt9hJ8,404
|
|
2844
2940
|
scitex/torch/_apply_to.py,sha256=Pq7WgyjDMxAO8LpDplAZ1JwiRheqHdsCB18Wxzqicow,905
|
|
2845
2941
|
scitex/torch/_nan_funcs.py,sha256=94tQWXM6rpy54gP6cyqmE0eB_M5H6tjkqzQGJVdUoAU,2330
|
|
2846
|
-
scitex/types/_ArrayLike.py,sha256=
|
|
2942
|
+
scitex/types/_ArrayLike.py,sha256=4Q9pmFhO8Pad37RXDVMsRehZXa2lJJQHYQ3NuPD6jAE,1495
|
|
2847
2943
|
scitex/types/_ColorLike.py,sha256=KBE-k45W4ME_MDK3nDZw6be1c78LkRwbxHvuFWhkcQ0,533
|
|
2848
2944
|
scitex/types/__init__.py,sha256=VdI0QzASeZMy_mUCtSfNO8Ngn9PYQ-oGeweo9NfRmrg,301
|
|
2849
|
-
scitex/types/_is_listed_X.py,sha256=
|
|
2945
|
+
scitex/types/_is_listed_X.py,sha256=4lSFyuqKaZytqDGuyGqUJOqkrFo0Ymql3kfWwIva5L0,1867
|
|
2850
2946
|
scitex/utils/__init__.py,sha256=gzlFQ0VTvug746_rucreyaqKzFvhf3bFWbN2n2lmsc4,512
|
|
2851
|
-
scitex/utils/_compress_hdf5.py,sha256=
|
|
2852
|
-
scitex/utils/_email.py,sha256=
|
|
2947
|
+
scitex/utils/_compress_hdf5.py,sha256=ugcD0HzWeZCs6723aipzki8WJGl0qT7Y0HSAu41bMWM,4598
|
|
2948
|
+
scitex/utils/_email.py,sha256=1fNNZrEZvmSKBOPWy3XIzTP1L1EiyBAwxfnHUgmEVM0,4635
|
|
2853
2949
|
scitex/utils/_grid.py,sha256=7_cf2R7-frK2Htu4Dygu9cC_gFDclBh87-whKF79R2Q,4699
|
|
2854
|
-
scitex/utils/_notify.py,sha256=
|
|
2855
|
-
scitex/utils/_search.py,sha256=
|
|
2856
|
-
scitex/utils/_verify_scitex_format.py,sha256=
|
|
2857
|
-
scitex/utils/_verify_scitex_format_v01.py,sha256=
|
|
2858
|
-
scitex/utils/template.py,sha256=
|
|
2950
|
+
scitex/utils/_notify.py,sha256=MsUwgi1Pb7VFjD9ehGzPP9UnrM3BqOMaR5JDNxHggzk,7033
|
|
2951
|
+
scitex/utils/_search.py,sha256=q1vnYJ9RPBPyLlz8-LSsOghY3TaLZ_Xr49daLsxs5iU,3924
|
|
2952
|
+
scitex/utils/_verify_scitex_format.py,sha256=bPFacXW__WRufgT-MOYXDKKXoZrB3evXBsmFXXwxq6U,17260
|
|
2953
|
+
scitex/utils/_verify_scitex_format_v01.py,sha256=5ibsB_M2bPyAG1yYzZiMZysYCxr5JXuNXIWoWd87k9s,10660
|
|
2954
|
+
scitex/utils/template.py,sha256=Lq6cjdTsLcNjUD35qmKyLYM8XlPmauCvAc-Zwt4X8YQ,2501
|
|
2859
2955
|
scitex/vis/README.md,sha256=I2gHvX0bTAfqujnqGScA9jF7BHwhG29ttM326eqj11s,9140
|
|
2860
2956
|
scitex/vis/__init__.py,sha256=w8EyvZ7FMX55XvdG0nKJZwhP539nFloLjUGqLt3jleA,4650
|
|
2861
|
-
scitex/vis/canvas.py,sha256=
|
|
2862
|
-
scitex/vis/backend/__init__.py,sha256=
|
|
2863
|
-
scitex/vis/backend/
|
|
2864
|
-
scitex/vis/backend/
|
|
2865
|
-
scitex/vis/backend/
|
|
2957
|
+
scitex/vis/canvas.py,sha256=3-b_dY1Ca6XXnV9fXu-3sStl-jXwOZxc4BOOvZ5fAjI,12969
|
|
2958
|
+
scitex/vis/backend/__init__.py,sha256=h-0QPhC37XbtilgzB0dUQA5Tipqlkjz6YfNCCijxn1o,1113
|
|
2959
|
+
scitex/vis/backend/_export.py,sha256=WSHIDn_LjaScBoe0e27vCHgMLkuA3IVXw1I69DwdI_A,3912
|
|
2960
|
+
scitex/vis/backend/_parser.py,sha256=w6z1MvaeEkH60qX9SlmOIAKOnUo6CQ-ZDUGKJcRXfw0,4490
|
|
2961
|
+
scitex/vis/backend/_render.py,sha256=_LEqJ2NmJxzDzi8FfgEWuT-Lvm_YlFRtNt3neKnQnXk,11138
|
|
2866
2962
|
scitex/vis/docs/CANVAS_ARCHITECTURE.md,sha256=LF5GSiUA1ZWriZt1lAc0FNsGEjl__zgqDQLIp6HKkb8,10559
|
|
2867
2963
|
scitex/vis/editor/__init__.py,sha256=WOTzc1pn-_GJb4WOATlI8T48_kbsPqUsLSnHgA3u4HM,578
|
|
2868
|
-
scitex/vis/editor/_dearpygui_editor.py,sha256=
|
|
2869
|
-
scitex/vis/editor/_defaults.py,sha256=
|
|
2870
|
-
scitex/vis/editor/_edit.py,sha256=
|
|
2871
|
-
scitex/vis/editor/_flask_editor.py,sha256=
|
|
2872
|
-
scitex/vis/editor/_mpl_editor.py,sha256=
|
|
2873
|
-
scitex/vis/editor/_qt_editor.py,sha256=
|
|
2874
|
-
scitex/vis/editor/_tkinter_editor.py,sha256=
|
|
2875
|
-
scitex/vis/editor/flask_editor/__init__.py,sha256=
|
|
2876
|
-
scitex/vis/editor/flask_editor/
|
|
2877
|
-
scitex/vis/editor/flask_editor/
|
|
2878
|
-
scitex/vis/editor/flask_editor/
|
|
2879
|
-
scitex/vis/editor/flask_editor/
|
|
2880
|
-
scitex/vis/editor/flask_editor/
|
|
2881
|
-
scitex/vis/editor/flask_editor/templates/__init__.py,sha256=
|
|
2882
|
-
scitex/vis/editor/flask_editor/templates/
|
|
2883
|
-
scitex/vis/editor/flask_editor/templates/
|
|
2884
|
-
scitex/vis/editor/flask_editor/templates/
|
|
2885
|
-
scitex/vis/io/__init__.py,sha256=
|
|
2886
|
-
scitex/vis/io/
|
|
2887
|
-
scitex/vis/io/
|
|
2888
|
-
scitex/vis/io/
|
|
2889
|
-
scitex/vis/io/
|
|
2890
|
-
scitex/vis/io/
|
|
2891
|
-
scitex/vis/io/
|
|
2892
|
-
scitex/vis/io/
|
|
2893
|
-
scitex/vis/model/__init__.py,sha256=
|
|
2894
|
-
scitex/vis/model/
|
|
2895
|
-
scitex/vis/model/
|
|
2896
|
-
scitex/vis/model/
|
|
2897
|
-
scitex/vis/model/
|
|
2898
|
-
scitex/vis/model/
|
|
2899
|
-
scitex/vis/model/
|
|
2900
|
-
scitex/vis/model/
|
|
2901
|
-
scitex/vis/utils/__init__.py,sha256=
|
|
2902
|
-
scitex/vis/utils/
|
|
2903
|
-
scitex/vis/utils/
|
|
2904
|
-
scitex/web/__init__.py,sha256=
|
|
2905
|
-
scitex/web/_scraping.py,sha256=
|
|
2906
|
-
scitex/web/_search_pubmed.py,sha256=
|
|
2964
|
+
scitex/vis/editor/_dearpygui_editor.py,sha256=2ec6TuoPU_qNDn38C37YLk9pGbLzOWv_GrCTHzpmdhQ,76300
|
|
2965
|
+
scitex/vis/editor/_defaults.py,sha256=s4IX0MoDxvoMDK1ujsOLXG3j86pjz6DYjjQqvf1q0zI,7287
|
|
2966
|
+
scitex/vis/editor/_edit.py,sha256=PsnG1hFXQHzp9b_3NVv4ZSjc8xVQiu5n0DygChvAFnM,11081
|
|
2967
|
+
scitex/vis/editor/_flask_editor.py,sha256=ZC_T-6zpB3SXO4I_p8rtEdSEfWckCGU-TsVh5IMf-Vs,848
|
|
2968
|
+
scitex/vis/editor/_mpl_editor.py,sha256=FzouErJ6gernrRDpXLXs0riWsKEC30YjH_uMJamkIzA,7909
|
|
2969
|
+
scitex/vis/editor/_qt_editor.py,sha256=spIVdc26dgeWJRybDAiVAIRbR1POZXqEa5uDXtDphqQ,33327
|
|
2970
|
+
scitex/vis/editor/_tkinter_editor.py,sha256=MiiJCkNOUvYEvRn6ZqCaJWlc8hsTIZBV_9NEepKNFGM,19322
|
|
2971
|
+
scitex/vis/editor/flask_editor/__init__.py,sha256=C-5iDsc5c2xSRhgexgB_XvQqJQBvNrGbzKzxOKSSMkA,531
|
|
2972
|
+
scitex/vis/editor/flask_editor/_bbox.py,sha256=_O7wnLikPTTk55jAdxSEOiVkPKriygZc37XSiOTJXvY,19418
|
|
2973
|
+
scitex/vis/editor/flask_editor/_core.py,sha256=4JJ5P4ygYsIji01szqk3ikNvlfCi6Z8D9uEOgMrfzSQ,6002
|
|
2974
|
+
scitex/vis/editor/flask_editor/_plotter.py,sha256=m0Hm988JVMcUskVxtl0l0etwKd_LKTziBVy34Dw-XsE,19747
|
|
2975
|
+
scitex/vis/editor/flask_editor/_renderer.py,sha256=7AjFHtc3zTJZXVW0llD0PsVgdp29_30mLfyB0r5XUKI,11919
|
|
2976
|
+
scitex/vis/editor/flask_editor/_utils.py,sha256=V9wyfWy61tgnJIFshF2S-d7T8wiNdAgz_CIXCRfBkuI,2513
|
|
2977
|
+
scitex/vis/editor/flask_editor/templates/__init__.py,sha256=5ZVH4RdHBefAO1Y7iEEOcdAWN5WRbftNldayLoIi4eQ,711
|
|
2978
|
+
scitex/vis/editor/flask_editor/templates/_html.py,sha256=MArCrfo2eycgls2YvRY1mb8JEICB7GZzPfXbnQMr0Qg,27487
|
|
2979
|
+
scitex/vis/editor/flask_editor/templates/_scripts.py,sha256=9f_QOiZXm0pwBi-om0t4kKZ7gUTssIvklhqmpXUG_hs,47120
|
|
2980
|
+
scitex/vis/editor/flask_editor/templates/_styles.py,sha256=fMLYLxEorU-q7LwBq1N8Mf7v7n-EljBHaOD1CYGIMnM,17506
|
|
2981
|
+
scitex/vis/io/__init__.py,sha256=9g6wZteg8RjaO4YHgVZlUyWr1F1uBPZQ1WA7dj163QM,2342
|
|
2982
|
+
scitex/vis/io/_canvas.py,sha256=naBDaB8YUIi3yWnG91SBFBl72B31xQwcV746_xHTipA,5721
|
|
2983
|
+
scitex/vis/io/_data.py,sha256=lYfri4QS2cRyrF-RgKFUad8NXCPrjg-qAXqmh7Ew-tI,4827
|
|
2984
|
+
scitex/vis/io/_directory.py,sha256=P6v5Lpef6uyv2V58v0gOfZMmgIertNXRE_gsriLvVg4,5385
|
|
2985
|
+
scitex/vis/io/_export.py,sha256=zUkuJRI6PAFYy5IzGkwpeVyBgitVUkbXSGFehKmah0A,12397
|
|
2986
|
+
scitex/vis/io/_load.py,sha256=M5ef-7eul1zG4XMNXm5CzeU5J8VqcWrOKrpjEyPCsKk,3709
|
|
2987
|
+
scitex/vis/io/_panel.py,sha256=_OeshHzA-eepC395_HtGuo3oiGQwKTFDrI0bTOocC3w,11706
|
|
2988
|
+
scitex/vis/io/_save.py,sha256=85O_lznZYJMspHjnyhBIKiMxF0xTAIQQkl_W3mmMhL8,3051
|
|
2989
|
+
scitex/vis/model/__init__.py,sha256=0VwwKtP_XhmD9mjq3tA_YC7hKntl_mQmmUQhCcJraWY,2539
|
|
2990
|
+
scitex/vis/model/_annotations.py,sha256=q0yOj_ceiZ4BRoLSj2ElYAriIKFYcrTZu1Z6IlTsNHg,3696
|
|
2991
|
+
scitex/vis/model/_axes.py,sha256=PSzQApdB6tJr9dO6bwUxad9NoUaA5Wxy6rY_e9x--vo,4587
|
|
2992
|
+
scitex/vis/model/_figure.py,sha256=Cw4X83_8IvCFxuYvMnMLNvoKusmDA9AKkiwnKnSXmzY,3786
|
|
2993
|
+
scitex/vis/model/_guides.py,sha256=AInUjD70asXdl8Lr_IMdrp4NApPC4qUjM6H8BoG17b8,3422
|
|
2994
|
+
scitex/vis/model/_plot.py,sha256=adfsSyeRDoCPGGxp5I9JKTeP2WG51FS74LXpfG27ZCg,3954
|
|
2995
|
+
scitex/vis/model/_plot_types.py,sha256=zq_PKZuMRhV1sVds51Dy_wraHSEf9y2JNEYgxxRBRhA,14746
|
|
2996
|
+
scitex/vis/model/_styles.py,sha256=GdN1wG_9ncFeHFSTaQitrDTnjdTDZ3AXMl-8j_VeUsQ,6473
|
|
2997
|
+
scitex/vis/utils/__init__.py,sha256=Sq_PCtxDNC04CFsfXpRJ-964UC4fnYnkegfaE-Ie0lg,1677
|
|
2998
|
+
scitex/vis/utils/_defaults.py,sha256=_kX40zMHuOpfYN8kV9c-8WXHtwmh_1PbegHnYzd_JgE,8103
|
|
2999
|
+
scitex/vis/utils/_validate.py,sha256=GEuBy8UfG54WB3c012PQh7NqZG4qblCPo-DHgTPb-8A,5279
|
|
3000
|
+
scitex/web/__init__.py,sha256=EmOj_pHGkGn3LERlbiiLcNTDydZTUrjMWhL0jGc3Cbw,982
|
|
3001
|
+
scitex/web/_scraping.py,sha256=vlCSbO3G0-kPIQPl63vUR1Qf-SN4twgfoayvqx8Lkc4,12455
|
|
3002
|
+
scitex/web/_search_pubmed.py,sha256=tMnl21ukOiEpEeWTylSh-40N-mRdQcE0s4Y02iaBMWo,15044
|
|
2907
3003
|
scitex/web/_summarize_url.py,sha256=PpWBk727pjC_yivI_RVNU_RMxjV_jrqlMNaD6kXQAPk,4489
|
|
2908
3004
|
scitex/writer/README.md,sha256=dGTWYpVmeY7P_E0lyvDod193fKPkgHcRmo7mCiRa_do,14291
|
|
2909
|
-
scitex/writer/Writer.py,sha256=
|
|
2910
|
-
scitex/writer/__init__.py,sha256=
|
|
2911
|
-
scitex/writer/_clone_writer_project.py,sha256=
|
|
2912
|
-
scitex/writer/_compile_async.py,sha256=
|
|
2913
|
-
scitex/writer/_validate_tree_structures.py,sha256=
|
|
2914
|
-
scitex/writer/.legacy/Writer_v01-refactored.py,sha256=
|
|
2915
|
-
scitex/writer/.legacy/_compile.py,sha256=
|
|
2916
|
-
scitex/writer/_compile/__init__.py,sha256=
|
|
2917
|
-
scitex/writer/_compile/_parser.py,sha256=
|
|
2918
|
-
scitex/writer/_compile/_runner.py,sha256=
|
|
2919
|
-
scitex/writer/_compile/_validator.py,sha256=
|
|
2920
|
-
scitex/writer/_compile/manuscript.py,sha256=
|
|
2921
|
-
scitex/writer/_compile/revision.py,sha256=
|
|
2922
|
-
scitex/writer/_compile/supplementary.py,sha256=
|
|
2923
|
-
scitex/writer/_project/__init__.py,sha256=
|
|
2924
|
-
scitex/writer/_project/_create.py,sha256=
|
|
2925
|
-
scitex/writer/_project/_trees.py,sha256=
|
|
2926
|
-
scitex/writer/_project/_validate.py,sha256=
|
|
2927
|
-
scitex/writer/dataclasses/__init__.py,sha256=
|
|
2928
|
-
scitex/writer/dataclasses/config/_CONSTANTS.py,sha256=
|
|
2929
|
-
scitex/writer/dataclasses/config/_WriterConfig.py,sha256=
|
|
3005
|
+
scitex/writer/Writer.py,sha256=d-PtKQu2yx9VuWgFM0dxQ_izhAaJrTovc6ff2K5gd4A,16963
|
|
3006
|
+
scitex/writer/__init__.py,sha256=lIQvUjkjXw1h_iIAWO52Zw1GssITm-hJBH5K7Xgr8vQ,1765
|
|
3007
|
+
scitex/writer/_clone_writer_project.py,sha256=FKkxWwwMNobRJZ8gh9l4yC2R97iwCqy0s6cqmnD9whY,4488
|
|
3008
|
+
scitex/writer/_compile_async.py,sha256=iDD89pIVqCAoo_lU3BC8XcFCeQO5NeP6Vzan1O1HEVg,3794
|
|
3009
|
+
scitex/writer/_validate_tree_structures.py,sha256=zEGfF6nygX6OdFOZ8QRZ7e86U12HBlgKKxfJOBnolAM,5834
|
|
3010
|
+
scitex/writer/.legacy/Writer_v01-refactored.py,sha256=bq_Gfk_qfJfqg4mp52JEwdHCsOyHFvt8TmAyrr2aSE8,5881
|
|
3011
|
+
scitex/writer/.legacy/_compile.py,sha256=WOfOWuI14S2EwfsWqOiL7KT8750yC9dXP7tVwC6vxgE,9994
|
|
3012
|
+
scitex/writer/_compile/__init__.py,sha256=a3AuWJjbN4zrvqwWwhtin79P28tlvW4mFzmkE9AGB4g,1127
|
|
3013
|
+
scitex/writer/_compile/_parser.py,sha256=yRM2eI_Y3jRGwjQXwoMnu6EPRX2B413WGdze0AD-3nk,1543
|
|
3014
|
+
scitex/writer/_compile/_runner.py,sha256=XYOj-2nyetTD1fI6qqa7q5q-Cd3WuogKLCMv8rf3Bs4,13729
|
|
3015
|
+
scitex/writer/_compile/_validator.py,sha256=nyOPOUIONkpMZtWe9JBZjwQxsjuYE4V9qL3IFhD9vns,1045
|
|
3016
|
+
scitex/writer/_compile/manuscript.py,sha256=mC3rfePI5aq58xA3gtvOuaQYCgQ8W_6kR80CeYEokpk,2953
|
|
3017
|
+
scitex/writer/_compile/revision.py,sha256=pq2J-U5LeLoDroWn1H3FiK7kUNosHi8ZxO__ad9B1GI,2191
|
|
3018
|
+
scitex/writer/_compile/supplementary.py,sha256=CNAbCNDg5CzL9OJKEN2YvxalXbYNdWiXMVXYyjD2Ow8,2691
|
|
3019
|
+
scitex/writer/_project/__init__.py,sha256=fdtDxN795DEKeg3yriYwgDE9j-dJ2tr_Sz2FI8RCm3U,735
|
|
3020
|
+
scitex/writer/_project/_create.py,sha256=lfnoSqjVybEeovwqlIHBjQpl75sZw_NzWJjcUf-P0OE,2594
|
|
3021
|
+
scitex/writer/_project/_trees.py,sha256=aozaF4pzYsJUGDJAbaL0lbyidRTTojYBQstDoBB8rXo,1776
|
|
3022
|
+
scitex/writer/_project/_validate.py,sha256=oy8LwEP9UwOGrhMOxdPwfLuTT2w4lG_0yKzCi1O4jP4,1537
|
|
3023
|
+
scitex/writer/dataclasses/__init__.py,sha256=4iCoQlmGrFb830CYna-B1i5XiOq_6FLOlVCRq8upfmc,1087
|
|
3024
|
+
scitex/writer/dataclasses/config/_CONSTANTS.py,sha256=sBPFguqc3eNXAzsllkx0gX1XHwet0mwrl-dYHvr4CZA,1080
|
|
3025
|
+
scitex/writer/dataclasses/config/_WriterConfig.py,sha256=mlJDwD3p8Il65AfEU1yC7SRYq9jOw5wTHDHMS_LMBiM,4481
|
|
2930
3026
|
scitex/writer/dataclasses/config/__init__.py,sha256=0XUYxxOZjVe1M-_fM4ibZ6YXWP9o1w8Rq44PRLM6AVw,208
|
|
2931
|
-
scitex/writer/dataclasses/contents/_ManuscriptContents.py,sha256=
|
|
2932
|
-
scitex/writer/dataclasses/contents/_RevisionContents.py,sha256=
|
|
2933
|
-
scitex/writer/dataclasses/contents/_SupplementaryContents.py,sha256=
|
|
3027
|
+
scitex/writer/dataclasses/contents/_ManuscriptContents.py,sha256=oSrYUAKJX9oS8N-vhgnd6s21Wa1mM1_SKGUzL3TXoSk,7347
|
|
3028
|
+
scitex/writer/dataclasses/contents/_RevisionContents.py,sha256=647iZTCVORb4Hsxkc7L4PBdIesp8WMVYwbpisNI1M4E,4569
|
|
3029
|
+
scitex/writer/dataclasses/contents/_SupplementaryContents.py,sha256=DGzjSfj--Gs5WYFGqIC31NIgvTFM-kzVmVwBf1g6bME,3870
|
|
2934
3030
|
scitex/writer/dataclasses/contents/__init__.py,sha256=6DkwQb1-K_d3rHnNfwhW2w2B2wQCMXV-mTTfnbDnvhQ,252
|
|
2935
|
-
scitex/writer/dataclasses/core/_Document.py,sha256=
|
|
2936
|
-
scitex/writer/dataclasses/core/_DocumentSection.py,sha256=
|
|
3031
|
+
scitex/writer/dataclasses/core/_Document.py,sha256=kOBVv6vF59oR3IVa7DgiYV4zfY3qfuF-lzCq9uCZ7Wo,3762
|
|
3032
|
+
scitex/writer/dataclasses/core/_DocumentSection.py,sha256=oRzuVDm47fMbBpL9UphK9efVlwTDasz-JWZ4rBN_F4g,17079
|
|
2937
3033
|
scitex/writer/dataclasses/core/__init__.py,sha256=8zk7o3UOQxvVjmY3OcOTOp5pcJc7u9leVVoCCUV4j04,132
|
|
2938
|
-
scitex/writer/dataclasses/results/_CompilationResult.py,sha256=
|
|
2939
|
-
scitex/writer/dataclasses/results/_LaTeXIssue.py,sha256=
|
|
2940
|
-
scitex/writer/dataclasses/results/_SaveSectionsResponse.py,sha256=
|
|
2941
|
-
scitex/writer/dataclasses/results/_SectionReadResponse.py,sha256=
|
|
3034
|
+
scitex/writer/dataclasses/results/_CompilationResult.py,sha256=24RLhroQ3Ea59-d0AwmIknm1bcAPL6fwx64ff9qN_Lc,4113
|
|
3035
|
+
scitex/writer/dataclasses/results/_LaTeXIssue.py,sha256=8J8PhNYNz04cHOccLjdA1PBQ7Q_x49aK-xpwTuAaJC8,2274
|
|
3036
|
+
scitex/writer/dataclasses/results/_SaveSectionsResponse.py,sha256=6DTF7eJDcj9UnrbPDFTHSDzDxrN_rPpWWHOoZAZ09qA,3755
|
|
3037
|
+
scitex/writer/dataclasses/results/_SectionReadResponse.py,sha256=LJI5BNdnrt5pG3mJBDCbottOe15UHtb_Z-CzSw-6FTY,3970
|
|
2942
3038
|
scitex/writer/dataclasses/results/__init__.py,sha256=-grYV-nD7gjbuCpP56fG4qpeSeWXi9giec2JYlZe3U8,309
|
|
2943
3039
|
scitex/writer/dataclasses/tree/MINIMUM_FILES.md,sha256=WlkSjEJrc9DHZ_KySYdPCNeDP12aOwvzvSH3rwJ00uQ,4162
|
|
2944
|
-
scitex/writer/dataclasses/tree/_ConfigTree.py,sha256=
|
|
2945
|
-
scitex/writer/dataclasses/tree/_ManuscriptTree.py,sha256=
|
|
2946
|
-
scitex/writer/dataclasses/tree/_RevisionTree.py,sha256=
|
|
2947
|
-
scitex/writer/dataclasses/tree/_ScriptsTree.py,sha256=
|
|
2948
|
-
scitex/writer/dataclasses/tree/_SharedTree.py,sha256=
|
|
2949
|
-
scitex/writer/dataclasses/tree/_SupplementaryTree.py,sha256=
|
|
3040
|
+
scitex/writer/dataclasses/tree/_ConfigTree.py,sha256=wKPBnBOcM9zTaWh2Xw4L2mX7fvbSuk7-bcymckqtT8U,2695
|
|
3041
|
+
scitex/writer/dataclasses/tree/_ManuscriptTree.py,sha256=BjZGQqqsHkJhOa58WMTVShC_vtNRUADCiVq3d6pX4pQ,2476
|
|
3042
|
+
scitex/writer/dataclasses/tree/_RevisionTree.py,sha256=RmqxrVOfMUpo_RAgxlK7ZNCKHpEz_ioxXeJ2prsjka0,2999
|
|
3043
|
+
scitex/writer/dataclasses/tree/_ScriptsTree.py,sha256=pXEQEYP32SAZWSMJ5SNZcfB-Yy4WLf8xKve__9eTlKE,3861
|
|
3044
|
+
scitex/writer/dataclasses/tree/_SharedTree.py,sha256=g2A2aZauG_z-ZCWBsS3vP_ZpC2ID8zd9WzmdSNVu6Jk,3106
|
|
3045
|
+
scitex/writer/dataclasses/tree/_SupplementaryTree.py,sha256=TJCGdNiphzYnklntFDk1ijbRSIh08QDJ4vN2hzRj67g,3267
|
|
2950
3046
|
scitex/writer/dataclasses/tree/__init__.py,sha256=HZjCSa7djOyrz8CfZOoox2dioloPJmRoGMX52171lF0,678
|
|
2951
3047
|
scitex/writer/tests/__init__.py,sha256=8ujJxRSSQLnA-xgWDJKdZNv1TKXWmSS0xKpfSB5f1Hw,52
|
|
2952
|
-
scitex/writer/utils/.legacy_git_retry.py,sha256=
|
|
3048
|
+
scitex/writer/utils/.legacy_git_retry.py,sha256=fsp_5Tiz4KGnz5Sd9kOCl8WJLFWMIWkfKg2sslRlLuw,4045
|
|
2953
3049
|
scitex/writer/utils/__init__.py,sha256=wizvQZbOWHsNnkdDsB8J4-lPInRM3gDdwOCRg1fLIrQ,184
|
|
2954
|
-
scitex/writer/utils/_parse_latex_logs.py,sha256=
|
|
2955
|
-
scitex/writer/utils/_parse_script_args.py,sha256=
|
|
2956
|
-
scitex/writer/utils/_watch.py,sha256=
|
|
2957
|
-
scitex-2.
|
|
2958
|
-
scitex-2.
|
|
2959
|
-
scitex-2.
|
|
2960
|
-
scitex-2.
|
|
2961
|
-
scitex-2.
|
|
3050
|
+
scitex/writer/utils/_parse_latex_logs.py,sha256=Ox52kSK7fCh6tyefRTwkcCvfEMarhMcqM0rsJuJ7UeA,3147
|
|
3051
|
+
scitex/writer/utils/_parse_script_args.py,sha256=Fkx1ze_jlKYIpviLuT7z0hpqE4cdtXXA_7sK3sKpVs4,4593
|
|
3052
|
+
scitex/writer/utils/_watch.py,sha256=nYzPQ-iPAOzbwzAPBtSrrVBLLPMl08e0qxw0mtv0Y8I,2577
|
|
3053
|
+
scitex-2.7.0.dist-info/METADATA,sha256=g2phd6w5qBq8G_6a8eRnscbs_rjU6ii26h3mrJ8dsuM,29692
|
|
3054
|
+
scitex-2.7.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
3055
|
+
scitex-2.7.0.dist-info/entry_points.txt,sha256=jmgM0XEEIfCoMvwDSUNwRHBHaX_cfcJWQgi-lFc-BNU,48
|
|
3056
|
+
scitex-2.7.0.dist-info/licenses/LICENSE,sha256=TfPDBt3ar0uv_f9cqCDMZ5rIzW3CY8anRRd4PkL6ejs,34522
|
|
3057
|
+
scitex-2.7.0.dist-info/RECORD,,
|