scilens 0.1.1__py3-none-any.whl → 0.1.2__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.
@@ -0,0 +1,5 @@
1
+ _A=None
2
+ from typing import Literal
3
+ from pydantic import BaseModel,Field
4
+ CurveParser=Literal['simple_1D','frameseries_2D']
5
+ class ReaderNetcdfConfig(BaseModel):groups_depth:int|_A=Field(default=_A,description='If groups management, specify a group depth to keep for analysis.');curve_parser:CurveParser|_A=Field(default=_A,description='Curve parser to use for the netcdf reader.');curve_x_variable:str|_A=Field(default=_A,description='X axis variable name for the curves (for `simple_1D` and `frameseries_2D`).');curve_step_variable:str|_A=Field(default=_A,description='Step variable name (1D) (for `frameseries_2D` only).');compare_1D:bool=Field(default=False,description='If processor compare, compare vectors (1D) variables.');compare_2D:bool=Field(default=False,description='If processor compare, compare matrixes (2D) variables.')
@@ -1,4 +1,5 @@
1
1
  from pydantic import BaseModel,Field
2
2
  from scilens.config.models.reader_format_txt import ReaderTxtIgnoreConfig,ReaderTxtConfig
3
3
  from scilens.config.models.reader_format_csv import ReaderCsvConfig
4
- class ReadersConfig(BaseModel):txt:ReaderTxtConfig=Field(default=ReaderTxtConfig(),description='Configuration des readers txt.');csv:ReaderCsvConfig=Field(default=ReaderCsvConfig(),description='Configuration des readers csv.')
4
+ from scilens.config.models.reader_format_netcdf import ReaderNetcdfConfig
5
+ class ReadersConfig(BaseModel):txt:ReaderTxtConfig=Field(default=ReaderTxtConfig(),description='Configuration des readers txt.');csv:ReaderCsvConfig=Field(default=ReaderCsvConfig(),description='Configuration des readers csv.');netcdf:ReaderNetcdfConfig=Field(default=ReaderNetcdfConfig(),description='Configuration des readers NetCDF.')
@@ -89,8 +89,8 @@ function load_framesseries(){
89
89
  </script>
90
90
  <script type="text/javascript">
91
91
  const global_framesseries = {
92
- test : [ {% for file in data.files %} {{ file.file_1.framesseries or 'null' }} , {% endfor %} ],
93
- reference : [ {% for file in data.files %} {{ file.file_2.framesseries or 'null' }} , {% endfor %} ],
92
+ test : [ {% for file in data.files %} {{ file.test.framesseries or 'null' }} , {% endfor %} ],
93
+ reference : [ {% for file in data.files %} {{ file.ref.framesseries or 'null' }} , {% endfor %} ],
94
94
  };
95
95
  load_framesseries();
96
96
  </script>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scilens
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A CesGensLaB framework for data collecting and deep analysis
5
5
  Home-page: https://scilens.dev
6
6
  License: Proprietary
@@ -25,8 +25,9 @@ scilens/config/models/execute.py,sha256=pFY-gZuBvLbcjTEcoNhPPO7FMFmKa6_TU5IXyKaf
25
25
  scilens/config/models/execute_and_compare.py,sha256=TWL6yXGvQSaaV6nhHqWLvtr3v396APIoDNt0U1TbMro,582
26
26
  scilens/config/models/file_reader.py,sha256=sDIh1z_q4B5c7PhNC1WvQWLNGR4NMbXr-WhT6zDyLB4,1000
27
27
  scilens/config/models/reader_format_csv.py,sha256=r2ERmC_dWoESr9sCJ_T3dF2F00ypttZfSH8ZFG-PKnw,2208
28
+ scilens/config/models/reader_format_netcdf.py,sha256=NbBFVWKz-1MUL3DugCI2j2c5iPaIB3_pbgLaJY_Ae4E,833
28
29
  scilens/config/models/reader_format_txt.py,sha256=eHg90gwEI_VpqwqEjMRhwlS8dHcl5G4ow-37HjQq_zY,1168
29
- scilens/config/models/readers.py,sha256=5doJjhau8qk7nWFmBa2ixO_yU1rsGNv3wZ77bweDZgo,421
30
+ scilens/config/models/readers.py,sha256=dK_d02jqsrYTe42HO3SHQ6Fyw3SC_jleMafJpelAhdY,605
30
31
  scilens/config/models/report.py,sha256=nTmP2nIwL2Ku5IH9QMwYLPKmfsK2ttu9UK0GnzPUHeM,870
31
32
  scilens/config/models/report_html.py,sha256=9I9iKRDOoLMZRBY0lQV4UFtg5-D-VDfYiFGF1VFAnQ8,1389
32
33
  scilens/config/models/report_output.py,sha256=XoqUe-t-y8GRbUR3_bDwwaWf6hif-rZ-5pKDGdCMugw,875
@@ -62,7 +63,7 @@ scilens/report/templates/compare_11_summary.html,sha256=wskX861ISVQKFyEf3cF5mD53
62
63
  scilens/report/templates/compare_12_sections.html,sha256=m6HK-BL4Sb8VKNbCl-48Kmu9rh-IFkdp-Hckdedp7Gg,5923
63
64
  scilens/report/templates/compare_13_section_numbers copy.html,sha256=0PWK_I2kNX3LjPLkkY4eSYIeB7YFkA28nk-PPLDhnaY,1753
64
65
  scilens/report/templates/compare_13_section_numbers.html,sha256=ocPnazj2YsoroZUaBMNLqluejr7s8Kp71egceDxjzOI,2776
65
- scilens/report/templates/index.html,sha256=LfO-8lkgoynboQthCeW-wMDQj7mHU_yvB3WWuN36O5k,3648
66
+ scilens/report/templates/index.html,sha256=1kN-omesa_ns7uJz25KIFHrOONvNcoBg0lhXDmAesDA,3643
66
67
  scilens/report/templates/js_chartlibs_echarts.js,sha256=6YicVhTNIBmmBpV31XCVN5oBeiD0t29JIosJZRUv01M,907
67
68
  scilens/report/templates/js_chartlibs_plotly.js,sha256=uVAOKUB5XE33-r04phR-LlRkFoaHEIXyQ3jXT5r97Rc,1521
68
69
  scilens/report/templates/js_com_dom.js,sha256=YAJNGmgq2YbF9D3TqB7YSms67-xB88Molp9cKhWlqsI,1228
@@ -89,7 +90,7 @@ scilens/utils/template.py,sha256=9dlXX3nmfzDRUwzPJOkoxk15UXivZ2SW-McdCwokFa4,443
89
90
  scilens/utils/time_tracker.py,sha256=DdVBoMpVLXrX0qZZXyLm4g38EwDVLlRcBqcpNex1mYY,545
90
91
  scilens/utils/vectors.py,sha256=4N2BZSC5n3HgZqPujDGF5NdjVmSL1rOHb_qw4OoABQY,103
91
92
  scilens/utils/web.py,sha256=E4T8Fra65u9g_BpcFANPk4ORvsYavAeiSgWA3vRca2E,804
92
- scilens-0.1.1.dist-info/METADATA,sha256=jkTT1vrBmvy4fQQoOK8naCr32b0fbjbdUjOujsluc3o,1367
93
- scilens-0.1.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
94
- scilens-0.1.1.dist-info/entry_points.txt,sha256=DaKGgxUEUv34GJAoXtta6ecL37ercejep9sCSSRQK2s,48
95
- scilens-0.1.1.dist-info/RECORD,,
93
+ scilens-0.1.2.dist-info/METADATA,sha256=SVeE-Fpm6lCpMU_7a_3TpAz6tujWpDqmHgdFBY4zLe8,1367
94
+ scilens-0.1.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
95
+ scilens-0.1.2.dist-info/entry_points.txt,sha256=DaKGgxUEUv34GJAoXtta6ecL37ercejep9sCSSRQK2s,48
96
+ scilens-0.1.2.dist-info/RECORD,,