logs-py 2.9.6__py3-none-any.whl → 3.0.1__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.

Potentially problematic release.


This version of logs-py might be problematic. Click here for more details.

Files changed (147) hide show
  1. LOGS/Auxiliary/DateTimeConverter.py +11 -1
  2. LOGS/Auxiliary/Exceptions.py +40 -4
  3. LOGS/Auxiliary/LOGSErrorResponse.py +4 -1
  4. LOGS/Auxiliary/MinimalModelGenerator.py +88 -28
  5. LOGS/Auxiliary/Tools.py +11 -0
  6. LOGS/Converter/Conversion.py +248 -0
  7. LOGS/Converter/Converter.py +96 -0
  8. LOGS/Converter/ConverterParameter.py +88 -0
  9. LOGS/Converter/ExportParamters.py +89 -0
  10. LOGS/Converter/__init__.py +13 -0
  11. LOGS/Entities/Bridge.py +6 -3
  12. LOGS/Entities/CustomField.py +96 -91
  13. LOGS/Entities/CustomFieldModels.py +57 -0
  14. LOGS/Entities/CustomFieldRelations.py +10 -0
  15. LOGS/Entities/CustomFieldRequestParameter.py +43 -15
  16. LOGS/Entities/CustomFieldValue.py +88 -0
  17. LOGS/Entities/CustomFieldValueConverter.py +66 -0
  18. LOGS/Entities/CustomType.py +187 -0
  19. LOGS/Entities/CustomTypeEntityType.py +11 -0
  20. LOGS/Entities/CustomTypeMinimal.py +8 -0
  21. LOGS/Entities/CustomTypeRelations.py +59 -0
  22. LOGS/Entities/CustomTypeRequestParameter.py +61 -0
  23. LOGS/Entities/CustomTypeSection.py +39 -0
  24. LOGS/Entities/CustomTypes.py +12 -0
  25. LOGS/Entities/DataSource.py +28 -14
  26. LOGS/Entities/Dataset.py +274 -136
  27. LOGS/Entities/DatasetCreator.py +23 -72
  28. LOGS/Entities/DatasetInfo.py +23 -2
  29. LOGS/Entities/DatasetModels.py +31 -0
  30. LOGS/Entities/DatasetRequestParameter.py +45 -32
  31. LOGS/Entities/Datatrack.py +74 -30
  32. LOGS/Entities/DatatrackFormattedTable.py +25 -0
  33. LOGS/Entities/DatatrackGeneric.py +34 -0
  34. LOGS/Entities/DatatrackImage.py +25 -0
  35. LOGS/Entities/DatatrackNumericArray.py +9 -39
  36. LOGS/Entities/DatatrackNumericMatrix.py +86 -0
  37. LOGS/Entities/DocumentRequestParameter.py +2 -2
  38. LOGS/Entities/EntitiesRequestParameter.py +2 -2
  39. LOGS/Entities/Experiment.py +3 -3
  40. LOGS/Entities/FileExcludePattern.py +8 -0
  41. LOGS/Entities/FormatFormat.py +22 -1
  42. LOGS/Entities/FormatFormatRequestParameter.py +2 -1
  43. LOGS/Entities/FormatFormats.py +1 -1
  44. LOGS/Entities/FormattedTable/DatatypeFormattedTable.py +135 -0
  45. LOGS/Entities/FormattedTable/DatatypeFormattedTableCell.py +108 -0
  46. LOGS/Entities/FormattedTable/DatatypeFormattedTableSettings.py +11 -0
  47. LOGS/Entities/FormattedTable/__init__.py +9 -0
  48. LOGS/Entities/ILiterarTypedEntity.py +19 -0
  49. LOGS/Entities/Instrument.py +3 -3
  50. LOGS/Entities/Inventories.py +12 -0
  51. LOGS/Entities/Inventory.py +95 -0
  52. LOGS/Entities/InventoryMinimal.py +20 -0
  53. LOGS/Entities/InventoryRelations.py +23 -0
  54. LOGS/Entities/InventoryRequestParameter.py +53 -0
  55. LOGS/Entities/LabNotebook.py +37 -0
  56. LOGS/Entities/LabNotebookEntry.py +47 -24
  57. LOGS/Entities/LabNotebookEntryContent/BasicAttribute.py +15 -0
  58. LOGS/Entities/LabNotebookEntryContent/EntityAttribute.py +85 -0
  59. LOGS/Entities/LabNotebookEntryContent/EntryContentBlockquote.py +13 -0
  60. LOGS/Entities/LabNotebookEntryContent/EntryContentBulletList.py +17 -0
  61. LOGS/Entities/LabNotebookEntryContent/EntryContentCallout.py +40 -0
  62. LOGS/Entities/LabNotebookEntryContent/EntryContentContentPlaceholderNode.py +31 -0
  63. LOGS/Entities/LabNotebookEntryContent/EntryContentConverter.py +207 -0
  64. LOGS/Entities/LabNotebookEntryContent/EntryContentDocument.py +8 -0
  65. LOGS/Entities/LabNotebookEntryContent/EntryContentEntity.py +13 -0
  66. LOGS/Entities/LabNotebookEntryContent/EntryContentEntityMention.py +31 -0
  67. LOGS/Entities/LabNotebookEntryContent/EntryContentHeading.py +33 -0
  68. LOGS/Entities/LabNotebookEntryContent/EntryContentHorizontalRule.py +12 -0
  69. LOGS/Entities/LabNotebookEntryContent/EntryContentItem.py +37 -0
  70. LOGS/Entities/LabNotebookEntryContent/EntryContentListItem.py +49 -0
  71. LOGS/Entities/LabNotebookEntryContent/EntryContentOrderedList.py +31 -0
  72. LOGS/Entities/LabNotebookEntryContent/EntryContentParagraph.py +13 -0
  73. LOGS/Entities/LabNotebookEntryContent/EntryContentTable.py +17 -0
  74. LOGS/Entities/LabNotebookEntryContent/EntryContentTableCell.py +40 -0
  75. LOGS/Entities/LabNotebookEntryContent/EntryContentTableRow.py +8 -0
  76. LOGS/Entities/LabNotebookEntryContent/EntryContentTaskList.py +17 -0
  77. LOGS/Entities/LabNotebookEntryContent/EntryContentTaskListItem.py +31 -0
  78. LOGS/Entities/LabNotebookEntryContent/EntryContentText.py +33 -0
  79. LOGS/Entities/LabNotebookEntryContent/IEntryContentWithAttribute.py +23 -0
  80. LOGS/Entities/LabNotebookEntryContent/IEntryContentWithContent.py +38 -0
  81. LOGS/Entities/LabNotebookEntryContent/IEntryContentWithTextAttribute.py +16 -0
  82. LOGS/Entities/LabNotebookEntryContent/TextAttribute.py +46 -0
  83. LOGS/Entities/LabNotebookEntryContent/TextMarkAtributes.py +64 -0
  84. LOGS/Entities/LabNotebookEntryContent/TextMarkConverter.py +45 -0
  85. LOGS/Entities/LabNotebookEntryContent/TextMarks.py +71 -0
  86. LOGS/Entities/LabNotebookEntryContent/__init__.py +34 -0
  87. LOGS/Entities/LabNotebookEntryRequestParameter.py +2 -0
  88. LOGS/Entities/LabNotebookExperiment.py +52 -0
  89. LOGS/Entities/LabNotebookExperimentMinimal.py +8 -0
  90. LOGS/Entities/LabNotebookExperimentRequestParameter.py +49 -0
  91. LOGS/Entities/LabNotebookExperiments.py +16 -0
  92. LOGS/Entities/LabNotebookMinimal.py +19 -0
  93. LOGS/Entities/LabNotebookModels.py +14 -0
  94. LOGS/Entities/LabNotebookRequestParameter.py +43 -0
  95. LOGS/Entities/LabNotebooks.py +12 -0
  96. LOGS/Entities/Method.py +3 -3
  97. LOGS/Entities/ParserLog.py +4 -0
  98. LOGS/Entities/Person.py +2 -2
  99. LOGS/Entities/PersonRequestParameter.py +1 -0
  100. LOGS/Entities/Project.py +7 -7
  101. LOGS/Entities/{ProjectUserPermission.py → ProjectPersonPermission.py} +14 -4
  102. LOGS/Entities/Role.py +3 -3
  103. LOGS/Entities/RunState.py +1 -0
  104. LOGS/Entities/Sample.py +36 -57
  105. LOGS/Entities/SampleRequestParameter.py +30 -15
  106. LOGS/Entities/Track.py +8 -4
  107. LOGS/Entities/TrackData.py +11 -0
  108. LOGS/Entities/TrackImage.py +21 -0
  109. LOGS/Entities/TrackImageData.py +20 -0
  110. LOGS/Entities/TrackMatrix.py +28 -0
  111. LOGS/Entities/TrackMatrixData.py +22 -0
  112. LOGS/Entities/TrackTable.py +21 -0
  113. LOGS/Entities/TrackTableData.py +22 -0
  114. LOGS/Entities/TrackXY.py +5 -1
  115. LOGS/Entities/TrackXYComplex.py +1 -1
  116. LOGS/Entities/__init__.py +26 -7
  117. LOGS/Entity/ConnectedEntity.py +39 -1
  118. LOGS/Entity/Entity.py +9 -14
  119. LOGS/Entity/SerializeableContent.py +62 -5
  120. LOGS/Interfaces/IHierarchyType.py +63 -0
  121. LOGS/Interfaces/IPermissionedEntity.py +29 -5
  122. LOGS/Interfaces/IProjectBased.py +1 -1
  123. LOGS/Interfaces/ITypedEntity.py +69 -12
  124. LOGS/Interfaces/IVersionedEntity.py +39 -0
  125. LOGS/LOGS.py +137 -46
  126. LOGS/LOGSConnection.py +52 -24
  127. LOGS/LOGSOptions.py +8 -0
  128. LOGS/Parameters/Color.py +92 -0
  129. LOGS/Parameters/ParameterBase.py +55 -0
  130. LOGS/Parameters/ParameterConverter.py +24 -0
  131. LOGS/Parameters/ParameterElement.py +99 -0
  132. LOGS/Parameters/ParameterList.py +52 -0
  133. LOGS/Parameters/ParameterTable.py +64 -0
  134. LOGS/Parameters/__init__.py +13 -0
  135. LOGS/__init__.py +1 -0
  136. {logs_py-2.9.6.dist-info → logs_py-3.0.1.dist-info}/METADATA +2 -1
  137. logs_py-3.0.1.dist-info/RECORD +263 -0
  138. LOGS/Entities/CustomFieldEnums.py +0 -25
  139. LOGS/Entities/DatasetType.py +0 -7
  140. LOGS/Entities/DatasetTypeMinimal.py +0 -8
  141. LOGS/Entities/SampleType.py +0 -34
  142. LOGS/Entities/SampleTypeMinimal.py +0 -8
  143. LOGS/Entities/SampleTypeRequestParameter.py +0 -8
  144. LOGS/Entities/SampleTypes.py +0 -12
  145. logs_py-2.9.6.dist-info/RECORD +0 -183
  146. {logs_py-2.9.6.dist-info → logs_py-3.0.1.dist-info}/WHEEL +0 -0
  147. {logs_py-2.9.6.dist-info → logs_py-3.0.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,99 @@
1
+ from typing import List, Literal, Optional, Union
2
+
3
+ from LOGS.Parameters.ParameterBase import ParameterBase
4
+
5
+ VTypeType = Literal["int", "float", "int[]", "float[]", "str"]
6
+ ValueType = Union[str, int, float, List[int], List[float], None]
7
+ FormatterType = Literal[
8
+ "duration",
9
+ "length",
10
+ "voltage",
11
+ "current",
12
+ "pressure",
13
+ "frequency",
14
+ "magnetic",
15
+ "epower",
16
+ ]
17
+
18
+
19
+ class ParameterElement(ParameterBase):
20
+ _type = "parameter"
21
+
22
+ _vtype: VTypeType = "str"
23
+ _value: ValueType = None
24
+ _formatter: Optional[FormatterType] = None
25
+ _unit: Optional[str] = None
26
+ _delimiter: Optional[str] = None
27
+ _decimalPlaces: Optional[int] = None
28
+ _multiline: Optional[bool] = None
29
+
30
+ @property
31
+ def vtype(self) -> VTypeType:
32
+ return self._vtype
33
+
34
+ @vtype.setter
35
+ def vtype(self, value):
36
+ self._vtype = value
37
+
38
+ @property
39
+ def value(self) -> ValueType:
40
+ return self._value
41
+
42
+ @value.setter
43
+ def value(self, value):
44
+ self._value = value
45
+
46
+ @property
47
+ def formattedValue(self) -> str:
48
+ if self._unit:
49
+ return str(self._value) + " " + self._unit
50
+
51
+ return str(self._value)
52
+
53
+ @property
54
+ def formatter(self) -> Optional[FormatterType]:
55
+ return self._formatter
56
+
57
+ @formatter.setter
58
+ def formatter(self, value):
59
+ self._formatter = value
60
+
61
+ @property
62
+ def unit(self) -> Optional[str]:
63
+ return self._unit
64
+
65
+ @unit.setter
66
+ def unit(self, value):
67
+ self._unit = value
68
+
69
+ @property
70
+ def multiline(self) -> Optional[bool]:
71
+ return self._multiline
72
+
73
+ @multiline.setter
74
+ def multiline(self, value):
75
+ self._multiline = value
76
+
77
+ @property
78
+ def delimiter(self) -> Optional[str]:
79
+ return self._delimiter
80
+
81
+ @delimiter.setter
82
+ def delimiter(self, value):
83
+ self._delimiter = value
84
+
85
+ @property
86
+ def decimalPlaces(self) -> Optional[int]:
87
+ return self._decimalPlaces
88
+
89
+ @decimalPlaces.setter
90
+ def decimalPlaces(self, value):
91
+ value = self.checkAndConvert(
92
+ value, fieldName="decimalPlaces", fieldType=int, allowNone=True
93
+ )
94
+ if value < 0:
95
+ raise Exception(
96
+ "Decimal places must be zero or a positive integer number. (Got %a)"
97
+ % value
98
+ )
99
+ self._decimalPlaces = value
@@ -0,0 +1,52 @@
1
+ from typing import Any, List, cast
2
+
3
+ from LOGS.Parameters.ParameterBase import ParameterBase
4
+
5
+
6
+ class ParameterList(ParameterBase):
7
+ _type = "list"
8
+ _content: List[ParameterBase] = []
9
+
10
+ def __init__(self, ref=None):
11
+ if isinstance(ref, list):
12
+ ref = {"name": "<root>", "content": ref}
13
+
14
+ super().__init__(ref)
15
+
16
+ def __iter__(self):
17
+ for c in self._content:
18
+ yield c
19
+
20
+ def findItems(self, name: str) -> list[ParameterBase]:
21
+ return [c for c in self._content if c.name == name]
22
+
23
+ def findItemsRecursively(self, name: str) -> list[ParameterBase]:
24
+ result = self.findItems(name)
25
+ # print([c.name for c in self._content])
26
+ # print("->", [c.name for c in result])
27
+
28
+ for c in self._content:
29
+ if isinstance(c, ParameterList):
30
+ result.extend(c.findItemsRecursively(name))
31
+
32
+ return result
33
+
34
+ @property
35
+ def content(self) -> List[ParameterBase]:
36
+ return self._content
37
+
38
+ @content.setter
39
+ def content(self, value: List[ParameterBase]):
40
+ from LOGS.Parameters.ParameterConverter import ParameterConverter
41
+
42
+ # for e in value:
43
+ # p = ParameterConverter.convert(e)
44
+ # p.printJson()
45
+ # print("-------------------")
46
+
47
+ self._content = self.checkListAndConvert(
48
+ value,
49
+ ParameterBase,
50
+ "content",
51
+ converter=cast(Any, ParameterConverter.convert),
52
+ )
@@ -0,0 +1,64 @@
1
+ from typing import List, Literal, Optional, Union
2
+
3
+ from LOGS.Parameters.ParameterBase import ParameterBase
4
+
5
+ ColumnTypesType = Literal["int", "float", "str", "bool"]
6
+ TableType = Union[str, int, float, None]
7
+
8
+
9
+ class ParameterTable(ParameterBase):
10
+ _type = "table"
11
+
12
+ _columnNumber: int = 0
13
+ _columnTypes: List[ColumnTypesType] = []
14
+ _columnDecimals: List[Optional[int]] = []
15
+ _columnNames: List[str] = []
16
+ _table: List[List[TableType]] = []
17
+
18
+ @property
19
+ def columnNumber(self) -> int:
20
+ return self._columnNumber
21
+
22
+ @columnNumber.setter
23
+ def columnNumber(self, value):
24
+ if not isinstance(value, int) or value < 0:
25
+ value = 0
26
+ self._columnNumber = value
27
+
28
+ @property
29
+ def columnTypes(self) -> List[ColumnTypesType]:
30
+ return self._columnTypes
31
+
32
+ @columnTypes.setter
33
+ def columnTypes(self, value):
34
+ self._columnTypes = self.checkListAndConvert(
35
+ value, str, fieldName="columnTypes" # type: ignore
36
+ )
37
+
38
+ @property
39
+ def columnDecimals(self) -> List[Optional[int]]:
40
+ return self._columnDecimals
41
+
42
+ @columnDecimals.setter
43
+ def columnDecimals(self, value):
44
+ self._columnDecimals = self.checkListAndConvert(
45
+ value, fieldType=int, fieldName="columnDecimals", allowNone=True
46
+ )
47
+
48
+ @property
49
+ def columnNames(self) -> List[str]:
50
+ return self._columnNames
51
+
52
+ @columnNames.setter
53
+ def columnNames(self, value):
54
+ self._columnNames = self.checkListAndConvert(
55
+ value, fieldType=str, fieldName="columnNames", allowNone=True
56
+ )
57
+
58
+ @property
59
+ def table(self) -> List[List[TableType]]:
60
+ return self._table
61
+
62
+ @table.setter
63
+ def table(self, value):
64
+ self._table = value
@@ -0,0 +1,13 @@
1
+ """
2
+ This package is written for the LOGS Repository.
3
+
4
+ It's objects can be used to write your own dataset parser.
5
+
6
+ License:
7
+ Permission to use this libraray and all of its contents is
8
+ strictly permitted to the Signals Company.
9
+ """
10
+
11
+ from .Color import *
12
+ from .ParameterBase import *
13
+ from .ParameterElement import *
LOGS/__init__.py CHANGED
@@ -8,4 +8,5 @@
8
8
 
9
9
  from .LOGS import *
10
10
  from .LOGSConnection import *
11
+ from .LOGSOptions import *
11
12
  from .ServerMetaData import *
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: logs-py
3
- Version: 2.9.6
3
+ Version: 3.0.1
4
4
  Summary: A python interface for the LOGS public API
5
5
  Home-page: https://docs.logs-python.com
6
6
  Author: Sina Kazemi
@@ -18,6 +18,7 @@ Requires-Dist: requests
18
18
  Requires-Dist: regex>=2019.12.9
19
19
  Requires-Dist: Pillow
20
20
  Requires-Dist: deprecation
21
+ Requires-Dist: pytz
21
22
 
22
23
  # LOGS-Py
23
24
 
@@ -0,0 +1,263 @@
1
+ LOGS/LOGS.py,sha256=qLeYWnxMyoWOgwM-mKEeoTEcWmOd_4UWS0ekUBrdQf4,45284
2
+ LOGS/LOGSConnection.py,sha256=vy_Eda7-oAskPN1Zb-Y_6ZG4NZ62FFfT4OP7yfjBBzE,20917
3
+ LOGS/LOGSOptions.py,sha256=jgJjLycBh9AOq0YtTpXWuaGz5afQcldZHEye3XaH3ZI,166
4
+ LOGS/ServerMetaData.py,sha256=WdXCCiCSFqER6s9c3N3v0O273OvxygxBzmE6_C8FmXs,3361
5
+ LOGS/__init__.py,sha256=J5-bGgXlm7MxYhTAhLtqWLn612_rarRRxblT5n5O2bY,280
6
+ LOGS/Auxiliary/Constants.py,sha256=jKsThb6TS6b1adgnv1uAoqohBJi8ySGo7fULHlE2Es0,2504
7
+ LOGS/Auxiliary/DateTimeConverter.py,sha256=4yKS22tSnShDeEEHKMu_rgdtMYkkShEVftoReVwDDmQ,1178
8
+ LOGS/Auxiliary/Decorators.py,sha256=dzuIa6eTi-iOwhD9A8eICum9XIFeh6QdcKrNWKQ4LEo,3572
9
+ LOGS/Auxiliary/Exceptions.py,sha256=aurztbezP3RHKL8EaFDnGItDPnjkVugr2sagNWMeBKs,10084
10
+ LOGS/Auxiliary/LOGSErrorResponse.py,sha256=5dm3Tv7tFtlo8ktuN1fQ1ScIHQWrAHlEtP6zg4_IO2E,1339
11
+ LOGS/Auxiliary/MinimalModelGenerator.py,sha256=ZeFXWJ2s1xchQdfJQApIgmdSU0s878JpX-pvPATuH3A,13547
12
+ LOGS/Auxiliary/ParameterHelper.py,sha256=rP9DK5c4m7VJSIWRtkhdq7ECDUfNzK0Xs4bq7PAXuCA,1631
13
+ LOGS/Auxiliary/ReplaceMessage.py,sha256=ilzfyNidpUQguDglqxehZRJw6diF3-FH5mk3rVLr72c,373
14
+ LOGS/Auxiliary/Tools.py,sha256=Zd2YncaU_qiv3uu8pNbk5C_uYy8_xT-OagxQjn9hTnc,10079
15
+ LOGS/Auxiliary/__init__.py,sha256=1EGkaXLM87nZzl85T-cqGc9FZMqZG57Ch0-HnicPqtQ,371
16
+ LOGS/Converter/Conversion.py,sha256=eZu_7pCPinP-w0gCJGKzUh-er385oAcIk1UlZ8kx_1o,7783
17
+ LOGS/Converter/Converter.py,sha256=_0dh12A37SRjjZJP7rH--cHPZtLYZaYL0uW5--oOaT8,2680
18
+ LOGS/Converter/ConverterParameter.py,sha256=1-0aiKcs00K3Dcv4PbnVDac2KobdhTBmqN6p40Bmr3k,2579
19
+ LOGS/Converter/ExportParamters.py,sha256=ZSvAtuOhV1tv2nPNvIiV1h1VAD8fnw3IVkWwluHsO_0,3019
20
+ LOGS/Converter/__init__.py,sha256=zZo0sT92LhhsLaCsdn1beC-5Ki9GXht0pi8okgk0RQA,344
21
+ LOGS/Entities/AutoloadClientInfo.py,sha256=MKTIgkMZOJD0D9sANj1JOXrwRROVPqg6yaWeiyRp080,2623
22
+ LOGS/Entities/AutoloadFileInfo.py,sha256=thiK1isWkNa719kCzohPJsAkblnKj78BohHDMvracl0,338
23
+ LOGS/Entities/AutoloadStatus.py,sha256=2qIoRXZih_cWkr_MLINpB6jUfcZHBwm7nwB7DN_EpyY,672
24
+ LOGS/Entities/AutoloadStatusError.py,sha256=44AWs6nn5RsVSdII3fNT8HtkuBfRNSU_xMJXsTeWp04,176
25
+ LOGS/Entities/AxisNaming.py,sha256=mje3aCK38OOMQhbMdPd0eNwUBc2e3DDPzjh5fDR7Pa0,749
26
+ LOGS/Entities/Bridge.py,sha256=mQpc58zOR7hzXxHj6zPuEl-enxAqIXbYf5wDw_p1FN0,5179
27
+ LOGS/Entities/BridgeMinimal.py,sha256=ADNhHqoHA9VhzaItBVeknRVRD-ASqEYEL2GTGB97oEM,241
28
+ LOGS/Entities/BridgeRelations.py,sha256=nI6mqu_BIDt01tKHKyK38COHhpqrRHCi8wyy9Iyw0AU,650
29
+ LOGS/Entities/BridgeRequestParameter.py,sha256=m0C3iQLYZppFChj4lQ9cteAdDtpDClyrcBM9OAdryHM,838
30
+ LOGS/Entities/BridgeType.py,sha256=YB55JKJtS38fAlRb5T_OIPvT2qTJIzUC6uoC24eq3sE,88
31
+ LOGS/Entities/Bridges.py,sha256=WgspgZ9zXxi9tDPg4JPsDLq-fvNQkiaUbKEfbz1iG7E,420
32
+ LOGS/Entities/CustomField.py,sha256=4V4H7Wv26Q-vqdGfhtIiYWc7cf2ndP7pf2q1URapcdQ,5724
33
+ LOGS/Entities/CustomFieldMinimal.py,sha256=GrfKIeyE1Bp4vvCA1zVoN9Hp73Vlt0Vw7z5wUKBhpvQ,266
34
+ LOGS/Entities/CustomFieldModels.py,sha256=65nExcAPiY32fvp3VdQtBaOQ8VZDxky34C7Vas06lBU,1623
35
+ LOGS/Entities/CustomFieldRelations.py,sha256=yQO1LKeamyB-E3dNhL9pVVKvT6ZMIzEf0Xjop4Cfl2M,221
36
+ LOGS/Entities/CustomFieldRequestParameter.py,sha256=rYzBKAILmX64WY2Ngist85FTa6EPEBoBJtN17Q1eXFE,2373
37
+ LOGS/Entities/CustomFieldValue.py,sha256=dutOo_SPR4oLLw8ZFesCn2d-A7FzqUW2Oy4FLbbeqmM,2507
38
+ LOGS/Entities/CustomFieldValueConverter.py,sha256=tYxnK0ZGxNvA8mzLOw054NY50aA4T-MOVueEG3h6gNU,2236
39
+ LOGS/Entities/CustomFields.py,sha256=-LVjEtaKvyzVFcT7JkhPUnaoKu6-7TvZEB6kl2ZLnM0,470
40
+ LOGS/Entities/CustomSchema.py,sha256=LD2PIpWKSBd8b9bMBZXdNqIMBGtMgcMVVOwMfE5I0R4,2223
41
+ LOGS/Entities/CustomSchemaParameter.py,sha256=hU7bB0QiKHM9bSjunZePqB5Xvmm01g1cGP3H-6QHxi8,1195
42
+ LOGS/Entities/CustomSchemaSection.py,sha256=StY01Cy_DS6d5ht_Fc-TRBA5grRoqWPIj2lIh2ktOB8,1076
43
+ LOGS/Entities/CustomType.py,sha256=8JP1-Nep7Db2cu75xGt69ey7j8n92dojIrN5ubm5avc,6185
44
+ LOGS/Entities/CustomTypeEntityType.py,sha256=MnL5tNVIYs7sx62MfzK0sTMQo5w-1HlTFXQ7yLCoJJw,226
45
+ LOGS/Entities/CustomTypeMinimal.py,sha256=hj5FoVhhC2ySxQyZ_zdCA07o12frwkTjRFuM-KGq3r8,261
46
+ LOGS/Entities/CustomTypeRelations.py,sha256=zTo81K9ZOgRHQ5pN7gbAKnolh1-bu6C8pGramVFZvkw,1778
47
+ LOGS/Entities/CustomTypeRequestParameter.py,sha256=Dj66a45ivFGgLq5L72KxcVrFOik8NDeVugX09-oxZwo,2371
48
+ LOGS/Entities/CustomTypeSection.py,sha256=rv2rCkXkqWO9Q6M-KhEvcilzvr-E2pbg6mUYzH222iA,1144
49
+ LOGS/Entities/CustomTypes.py,sha256=aUSnWZ7xIpNlFqzoLfJebbLMPBFft1QliOQ5QtGzPMY,452
50
+ LOGS/Entities/DataSource.py,sha256=EM7Dqa9uACB8spI6aniVjcSt-qG5t_cF8X_-0CpRslo,6884
51
+ LOGS/Entities/DataSourceMinimal.py,sha256=KlejLccyZR_AP2LvFQgCJXpcmWwtaOg6rRTVsXXlODI,261
52
+ LOGS/Entities/DataSourceRelations.py,sha256=eIszpHjZqz6v4WyhaPNu8efSzedsJLNrYR9b3hCa3HY,658
53
+ LOGS/Entities/DataSourceRequestParameter.py,sha256=zAfC61NvVt4XO3HhIy1PLViN3AEBJo7Q6Fa_EtyqNvA,1610
54
+ LOGS/Entities/DataSourceStatus.py,sha256=81IAcLhdvkrAxgcL1Hw47aJqiZ0Vb7UnZUj-UEo8wX0,430
55
+ LOGS/Entities/DataSources.py,sha256=UU5ey98_vX4WQknyWITMy-dPOV-wgjblXxu5uXpnVso,481
56
+ LOGS/Entities/Dataset.py,sha256=bg_6wny8TdAuTk50qADjoN7jZebROshqvaDQRQzlYhE,27354
57
+ LOGS/Entities/DatasetCreator.py,sha256=GJ2e0pcYt5ziVqREViBM_uq45K3rm3FG_3NqIOjrO3Y,3253
58
+ LOGS/Entities/DatasetInfo.py,sha256=14TNZDR1VIMiZ_14ijzqbxipu44_e9N92k3GE3BSoeo,4975
59
+ LOGS/Entities/DatasetMatchTypes.py,sha256=f8v5bYEWiDMVBbEKONEDg2jm-Qp-WVbuBLyJ5SlMv9c,4373
60
+ LOGS/Entities/DatasetMatching.py,sha256=1tLYQKFMssOQIPuCh06dr70oYCpjj4bXer6VAO3papM,6596
61
+ LOGS/Entities/DatasetMinimal.py,sha256=AfSMihe4mU53D3dib1MzW7ZAtfvFytVyGpMMi3Fr2Cw,246
62
+ LOGS/Entities/DatasetModels.py,sha256=sKjCpUUt_5nNCX89TOfN4xRVA0uKkMBFJFtmLOxyME0,700
63
+ LOGS/Entities/DatasetRelations.py,sha256=gQWlm4BAJbeb0J2lLgdwO0grQFDTSSls162OWGwUsEU,1465
64
+ LOGS/Entities/DatasetRequestParameter.py,sha256=IFj29DXzlhceoPVH8PSbFC2tCV-Rn8j_2mh8xieM1HE,4351
65
+ LOGS/Entities/DatasetUploadParameter.py,sha256=bfH3Nm3BZs-hvWhFzWfxWSL-9hHJCRfW_PHwORtY_tw,470
66
+ LOGS/Entities/Datasets.py,sha256=wGeHowTv62F91oDtyJIVQzRl7qJsPT0SQlNoKBwWfs0,5022
67
+ LOGS/Entities/Datatrack.py,sha256=HpzDD9tJmvQGhm6W9vBqJ_yXC8oex0Cf0ygLfjZpbug,5297
68
+ LOGS/Entities/DatatrackFormattedTable.py,sha256=B4KwRYzjwe4hjT3VOTucBJdBrO2awClIwwM4EhO_I6A,832
69
+ LOGS/Entities/DatatrackGeneric.py,sha256=wcaD3EK8RRxf5H7zrUM_iXl-g3P7Fbs1ce4LSlQG8ug,816
70
+ LOGS/Entities/DatatrackImage.py,sha256=r_r0VKA7VgrIn7w21555VyVfkwPPHPCTi1WwAVLPb1w,616
71
+ LOGS/Entities/DatatrackNumericArray.py,sha256=BLlGftpapXhLBpot_Wpt50JXiutG55zVB13yafGPGj4,795
72
+ LOGS/Entities/DatatrackNumericMatrix.py,sha256=tsPFmzAS19P70vNhjn3M25PSyw893DyWOCxt5PZhGqI,2801
73
+ LOGS/Entities/Document.py,sha256=AyD6fEa92TY404QOOscxvYGQarOCdOuP6at6iy5y9PY,6617
74
+ LOGS/Entities/DocumentRelations.py,sha256=6BMfK5hl2qnVUTBelMd5_htRE_oIR1zlwoYlMXb2GwM,1120
75
+ LOGS/Entities/DocumentRequestParameter.py,sha256=VGewWgQpHZiN_aebKjl4cI30EaWdWcdUQtF4jM_XbsA,696
76
+ LOGS/Entities/Documents.py,sha256=dA312FplAbU9xA5P4v8aT4Ca4h8TZbY6fBc4jfEE-jE,435
77
+ LOGS/Entities/Entities.py,sha256=jq1T_t6xtjcMdTJtr1JJqt45zFWIPiNEVEi-sC2Unz0,2614
78
+ LOGS/Entities/EntitiesRequestParameter.py,sha256=I36ltRjCbnAnk6R4lus6oOtTB6YRCL6xGA7hA7rwMQI,361
79
+ LOGS/Entities/EntityOriginWriteModelWithId.py,sha256=DyhxVtfGKyLYxK5NLj01knWzYDsYh8b7ZZjPRbiDn1w,468
80
+ LOGS/Entities/Equipment.py,sha256=kQeic7hZ5nOIJAMfqvDvvE232_oi8Qrd310izfkJ_pQ,213
81
+ LOGS/Entities/EquipmentMinimal.py,sha256=OpTDgr9wOdFxTYKNRUWzPaogwVoXNZvb_3gL-8GFoEo,256
82
+ LOGS/Entities/Experiment.py,sha256=6rlv8pbDoP-XoyvYFg4kkdDps2YAmm5FYQiIJx3sY5I,2059
83
+ LOGS/Entities/ExperimentMinimal.py,sha256=45NzqBQNwxC96qlEyf8ESLk76ATHem6F765m9sItpXo,261
84
+ LOGS/Entities/ExperimentRelations.py,sha256=NgHv9xbOrsqi7JkExB34-zXsBh5UtZHVv_uheTt-tns,658
85
+ LOGS/Entities/ExperimentRequestParameter.py,sha256=qz0a1JejJ0cAr-oSJVKQGnYSKinQABwdqCFjNQsP9VQ,1248
86
+ LOGS/Entities/Experiments.py,sha256=U9O4JaKpOTui2vWEZ9WeOPHXkI-GMO__vFFYqB5t7Ws,453
87
+ LOGS/Entities/FileEntry.py,sha256=jJa-uPidQrMwIu0H04USpiH0kvo2ezlcye9QAQE5Txk,3919
88
+ LOGS/Entities/FileExcludePattern.py,sha256=Bv0k96N7crLHl6-r8p17wgcqdqSgqe_yK42zzGwkbNM,204
89
+ LOGS/Entities/Format.py,sha256=yH4k1wLyhq09oD0N1SATJN-M4xbAZJLwQV8rMlXYWCA,2377
90
+ LOGS/Entities/FormatFormat.py,sha256=H7uTmPyDZZjAf5IPjx4sTt40rLnigxE-CmWH9n4klFo,1416
91
+ LOGS/Entities/FormatFormatMinimal.py,sha256=S4UPkBmUrPLaeZAQ7lVcwQusi9gfaYLLTXY14TEGRP8,271
92
+ LOGS/Entities/FormatFormatRequestParameter.py,sha256=_-pXwY3PJXC_Qdbk46wOA9nAhvmcdoEHYoEOh3dVH1A,290
93
+ LOGS/Entities/FormatFormats.py,sha256=F1jc2qcJqP1lMXBj7dIsM3bXriF1p1-cz3wHNSEXcKE,486
94
+ LOGS/Entities/FormatInstrument.py,sha256=uTAEUMiuRhLhUl_pwCCnsv91LZX_HKWZqZwt37SmyYo,549
95
+ LOGS/Entities/FormatInstrumentMinimal.py,sha256=QVRrJws-qZhy2h4aEXvbIe9pS6Jig7-5xD5RDGdIqHc,291
96
+ LOGS/Entities/FormatInstrumentRequestParameter.py,sha256=dDZBtaexM1BRVmrCLLozD80V9Lp-1NzM4PehPPtxPgs,241
97
+ LOGS/Entities/FormatInstruments.py,sha256=kA5EWMvU2ERfCJrubBR8-E0pYaM8lhOPSqva8TDgU_8,545
98
+ LOGS/Entities/FormatMetaData.py,sha256=s44Yhn_rxJTdRg8OYRmrVK7FJWgeB76HcvELZNXRXw8,2111
99
+ LOGS/Entities/FormatMethod.py,sha256=LYE01rU2kIzbzRwKLPwVyKAv3WcasbwMjsy31HP8TT8,1803
100
+ LOGS/Entities/FormatMethodMinimal.py,sha256=GS4f8GmX6YRrBVxWugeHnBgiuGRjjtVeNQamqMx0IBs,271
101
+ LOGS/Entities/FormatMethodRequestParameter.py,sha256=-s5xFzAUGSp3FFilS5EByWhT0iv5grquZQ8NfmS3xE8,237
102
+ LOGS/Entities/FormatMethods.py,sha256=9GXFYed_o0YRYc2R_W2J6kHSyLqyl6G9Is_PMXRVZ5s,486
103
+ LOGS/Entities/FormatMinimal.py,sha256=NinLacjNqQaf44c8TeCnkNFeP3rmLuvvhGDE4ODWlBs,529
104
+ LOGS/Entities/FormatRequestParameter.py,sha256=mHWzMUjRP0GklfwfrebhosgAhQVLPKSImV92lV4sXZ4,469
105
+ LOGS/Entities/FormatVendor.py,sha256=qW827A-ozqxYEnvuh_ymila-XqOdeX9t5E6ilFKtOY8,1115
106
+ LOGS/Entities/FormatVendorMinimal.py,sha256=So3kB_OD1rVaDaHXTiwyTo-PU98fCIOQl-Ig1LIaf7U,271
107
+ LOGS/Entities/FormatVendorRequestParameter.py,sha256=YpmhPnlAH4DbmAZELFbBwndiGxdxYNoXrK6tAlEzYZs,276
108
+ LOGS/Entities/FormatVendors.py,sha256=-yX2ryanXPCeC9h3rZn4VnIhMjtjAoNd-ub83WsjVNQ,480
109
+ LOGS/Entities/Formats.py,sha256=FSE4U3bYyZ87fX4XmywCtJELHqBtjdW-jFLI65BMlUk,407
110
+ LOGS/Entities/HierarchyLeaf.py,sha256=Y2aYdbkNvSzGT_ia_1oxenW-RmTxXuve212scj8UiXA,372
111
+ LOGS/Entities/HierarchyNode.py,sha256=jEiVX-ybh06FzdOCp0Adzh5yxg6GQ2uB57KBBE9xSI4,1285
112
+ LOGS/Entities/ICustomSchemaRequest.py,sha256=l7do2v3GfLPNn0Ieei0H-v4l2Sgtcju0FvVF5yUtDHs,149
113
+ LOGS/Entities/ILiterarTypedEntity.py,sha256=mjSih7chFRh9iMsuqEKvoUbwZLtgqBbJBLH5bo1cXVw,537
114
+ LOGS/Entities/IRelatedEntityRequest.py,sha256=BKR8dZj552nfFSk2mIKDRn_JbAKSbbU3eC9A69YD1pM,243
115
+ LOGS/Entities/Instrument.py,sha256=s-faWHIii-n8HxEI7JiGMdwUsoqs0mHXfsR70nPGDfo,2967
116
+ LOGS/Entities/InstrumentMinimal.py,sha256=cZrIRJvmMZwA29unGcS9i1dOuTVO5aXHEN0RW1KAuvc,261
117
+ LOGS/Entities/InstrumentRelations.py,sha256=sXlLo_TQiRnkWAOkAAYlYxqquas9KBVEJVW6Td8f_WE,658
118
+ LOGS/Entities/InstrumentRequestParameter.py,sha256=mDPAtXMHVLaYiGnXSUVXGzitG6xFMr75FzCOLD5sUME,1433
119
+ LOGS/Entities/Instruments.py,sha256=0KgCWU5J9nFOM9qQw5s6tRyAdnCzOnjuvAtSwpdbyiU,453
120
+ LOGS/Entities/Inventories.py,sha256=0MluOe-xuNVRqLh6sayaHXM2LMUc43RV7D5b5QOd5Zg,450
121
+ LOGS/Entities/Inventory.py,sha256=Bwf8iqrICieD4t3DM91F17g0nDmHwK4UfkA-1UHuF88,3105
122
+ LOGS/Entities/InventoryMinimal.py,sha256=yunVsM9OiayIHjdwGHM2UxdgaK7fLj2l8Pdurb6zVxI,594
123
+ LOGS/Entities/InventoryRelations.py,sha256=IFlkthKdUcKwFCVz4nxASwtOpog56p2zqoRqjJQZwIE,661
124
+ LOGS/Entities/InventoryRequestParameter.py,sha256=xIL5kGc4mtoVqtsWHDf_IESn_ELMMH9124jq3uGUzTw,1949
125
+ LOGS/Entities/LabNotebook.py,sha256=YO_prDgUaSlsNFt9IacLzkmj4oZu3Mg-0LHZDxlHQMw,1165
126
+ LOGS/Entities/LabNotebookEntries.py,sha256=zbP78OV-pD2Yrg6bxQSU4e12AJd-ZqbPn1n5QGykTro,542
127
+ LOGS/Entities/LabNotebookEntry.py,sha256=9bZNeJ12neVyDGHxcue2rVM9v1OH9Gs_jiSkc-tBVIY,3785
128
+ LOGS/Entities/LabNotebookEntryMinimal.py,sha256=2VbggIr1QnKT_VFizupZH6ubIsD-PntL7HOH7rHuzzs,291
129
+ LOGS/Entities/LabNotebookEntryRelations.py,sha256=SljETldOvUZ6xCaywxGxwEKEZnz0ONwEnPlsY4SZkOo,2608
130
+ LOGS/Entities/LabNotebookEntryRequestParameter.py,sha256=YKdETKosNPoBvT8IaWlttZ377oNK8_xfQDKfuNil2AE,2855
131
+ LOGS/Entities/LabNotebookExperiment.py,sha256=qy0OB3oMN7c4r489zAlJ7crmr2gUER4rn1FmnuBCquY,1664
132
+ LOGS/Entities/LabNotebookExperimentMinimal.py,sha256=RMasCwqCKaTWTigPP3UJ7UmjLoyaggeoALJQxM3Vq8o,316
133
+ LOGS/Entities/LabNotebookExperimentRequestParameter.py,sha256=0sPPbH-5Rc0wKmgR6Bi0asBtLZ8mkUopQ-O6Zdv7qfo,1767
134
+ LOGS/Entities/LabNotebookExperiments.py,sha256=IfTTvoah_2GF23YgYiyaGjyYZKP9wBfWcg2X-hLZAYk,595
135
+ LOGS/Entities/LabNotebookMinimal.py,sha256=g42RXzB1PeebY9WfXl1Rk-OcaMrK9IXNigCqp8SN6MM,634
136
+ LOGS/Entities/LabNotebookModels.py,sha256=eDfNyfHwJlx0XG5VGEvn7OexOalfZ_8qNlhlnnhbgmo,262
137
+ LOGS/Entities/LabNotebookRequestParameter.py,sha256=Sj9mSG7Bui4Hbgdc8ae2vzJFREMefR9AajqDsUd_fuk,1383
138
+ LOGS/Entities/LabNotebooks.py,sha256=aFjRcxQHBj0LrO-sZFe6BHGrwslQtZR9JkVJzxvhWqg,469
139
+ LOGS/Entities/Method.py,sha256=qZ-CxxtFCEBoeVXNv3H8UleikamnaV5AZWSVaIxiWXk,1334
140
+ LOGS/Entities/MethodMinimal.py,sha256=P4TnY-OXCWMjZmGMg7zeejZF6t6SQ7mxi5wVTpBYiDY,241
141
+ LOGS/Entities/MethodRelations.py,sha256=z2F7SsXZCoNTDwqL0VMoaCf20_OJkMljVUZijg0lX9s,1071
142
+ LOGS/Entities/MethodRequestParameter.py,sha256=tkkmR_lAv7DAYF_nDPbnQGkYZ-B56JFXCWls7seBHds,1422
143
+ LOGS/Entities/Methods.py,sha256=YKCZ0kRooxxdRu9AeD54Gk9TifKZwPWHD1HxpsCC_NQ,413
144
+ LOGS/Entities/Origin.py,sha256=xa2Lxpou1Ebd6Za5laTOT0jnyt4U6XiQM3yROuWOTDE,1433
145
+ LOGS/Entities/OriginMinimal.py,sha256=Rg3ufOMKlayAExniIdhUOGcWykqL6qysSsML79pKrIs,241
146
+ LOGS/Entities/OriginRequestParameter.py,sha256=qGco80zdmxqNLmEoZAAOF_usAmQYnXSWAz2OCaSIirI,446
147
+ LOGS/Entities/Origins.py,sha256=3gN9jAPwfBBQsqS3q3nrb2kZTJDxfdvKBIzmgnhi-NI,413
148
+ LOGS/Entities/ParserLog.py,sha256=MeeL78r8b-O4Zpd4va1EXTI5fElqjvnYuZjupp-xS_c,1351
149
+ LOGS/Entities/Person.py,sha256=Gt26dZIcdJ2QfrdDRfdua_Zv1EZ0rf1Wviy2mioidk0,5781
150
+ LOGS/Entities/PersonCategory.py,sha256=3JBVCmN5FNyriDqF2GtSRCbxrFyDSb-MZ079gqoEah0,352
151
+ LOGS/Entities/PersonMinimal.py,sha256=W5lhHvFtYi_Ln4B9g91pnZddrhyJGoOwiX81hszmKNs,241
152
+ LOGS/Entities/PersonRelations.py,sha256=kN8Rfkg5qP0QSLbmCcqonZjKW5VtDSDyCMJ5WoUDvHk,2701
153
+ LOGS/Entities/PersonRequestParameter.py,sha256=IxP0M_GXnaWg9-axol5ggn6ynw-5ygtfAG9zTIY3mvY,2266
154
+ LOGS/Entities/Persons.py,sha256=cj4SKaJZvitaIe7Fd1M9_qqNdAEEG38iuMPNiKPDPUA,413
155
+ LOGS/Entities/Project.py,sha256=DuZRZGKX5Ibm5LLKR9CH8Cl7j6zea2iLD9BYbOQcUy8,3139
156
+ LOGS/Entities/ProjectMinimal.py,sha256=Xw8wnA2iSixEkVaisY_b4Z3Ujudum3MG6tBUfbiAk0s,246
157
+ LOGS/Entities/ProjectPersonPermission.py,sha256=tBPmJfB6FuTjzO9EItr6-gQxrYK3PmPNh__6zctzExI,1854
158
+ LOGS/Entities/ProjectRelations.py,sha256=Hf3F42iYanTqrLgG6GjY4HXBCFWCcVNjXzwrnEJc9GU,2136
159
+ LOGS/Entities/ProjectRequestParameter.py,sha256=KXvBbvoadB5F5Xap9t3GPzpb3lqdpH_Ob9SORCvstEU,2030
160
+ LOGS/Entities/Projects.py,sha256=8xvaHUrH8Y8g8WOcRN0Sa7BXH1QJnPB39SrfP3GpXXE,425
161
+ LOGS/Entities/Role.py,sha256=Qh2Z5dpcR4Kes5k3iEsn-dVkXshsaZbLrLOjvSfBmTE,1856
162
+ LOGS/Entities/RoleMinimal.py,sha256=O_69AQ0d06fq47pKuqYUp2gNn4o9xsuoxwwwKzE2F5k,231
163
+ LOGS/Entities/RoleRelations.py,sha256=785kHVBPUlBytAGtEa_Oia7IYHbMB-zteKFq5Qli6wk,633
164
+ LOGS/Entities/RoleRequestParameter.py,sha256=nxwTuSGfPFfx0WfuNMXVfJDBu5A3f0k4em0S5BdSYfU,1235
165
+ LOGS/Entities/Roles.py,sha256=E4-XxiutsN8dyrvAu-xkEFRajDcyOPKwGZg0lgTv424,393
166
+ LOGS/Entities/RunState.py,sha256=1Aa_1jtYphjQSVf3o4rqpaDHg329kEdcM6uWZTaInww,142
167
+ LOGS/Entities/Sample.py,sha256=gp393bJECK4FhtlOxqX5_NIsNDvFYxee4BbVtdMeDMk,6157
168
+ LOGS/Entities/SampleMinimal.py,sha256=rlLN_MVB2KNxY9wTbArnDGtyGrQ0_NGllGzocNxeZSY,241
169
+ LOGS/Entities/SampleRelations.py,sha256=dVCJGrM90sbme63PzWrFhbrzaEdWm_-OtaUfMfihQcs,1423
170
+ LOGS/Entities/SampleRequestParameter.py,sha256=UfDYDmeZj3E2WpI5lIOuLpDhLZD3h6yZgrVu_7RsDtY,2361
171
+ LOGS/Entities/Samples.py,sha256=fAOp5MvHnACilEF0gehmdmLD3-gdvDEZAFAHitm3ib0,414
172
+ LOGS/Entities/Track.py,sha256=rZ2d9iRVuol-N12IQ8f_f3bqDgxjYvd4q2qzU0FOeX4,2863
173
+ LOGS/Entities/TrackData.py,sha256=mCvLQYMdqtmq20bSPfApZx0UMOogngrLwbYQBHYPMfQ,589
174
+ LOGS/Entities/TrackImage.py,sha256=o_7wqfiHStGS-O4TQBv4y1QBykQZ7Hq7aBbx05UbP4s,587
175
+ LOGS/Entities/TrackImageData.py,sha256=XzKDTgbav0HOFw_YhMN_fJMchKSPj0rCDgfsQxWvwG8,515
176
+ LOGS/Entities/TrackMatrix.py,sha256=-AKq_oYB1oWMmeDPRkzbSBwELCql0-RofIxOYEugYH8,850
177
+ LOGS/Entities/TrackMatrixData.py,sha256=98bWgTOK82QkLcYs4n-flGrRTMbjI5OtcyfjbUo2kcc,587
178
+ LOGS/Entities/TrackSettings.py,sha256=UITmvJ1a4Ru3D0arIU1A5fa4682xb9aOwCm2bkqy52M,1028
179
+ LOGS/Entities/TrackTable.py,sha256=QXnWvzvgHPi4Hsktadk4CrdKM1D2iUXb81bqVVBT9xE,587
180
+ LOGS/Entities/TrackTableData.py,sha256=zAD4lwlLPrZUUEwMOKNXv5XpLzLaNXsH5GULx-T5jBU,583
181
+ LOGS/Entities/TrackXY.py,sha256=klLXkgK9hkXdSIiTPbpGxnWoBf-fymOxJ4BJtcc97Cc,1332
182
+ LOGS/Entities/TrackXYComplex.py,sha256=Ts8UusoZY81P8OX4gWgHfSEKiUflT3cr8oUoqFXuc0I,1698
183
+ LOGS/Entities/TrackXYComplexData.py,sha256=xWd3_jdXa347Gh53NYIMo66nFirA60Zd2KxaPs4KHaY,1368
184
+ LOGS/Entities/TrackXYData.py,sha256=6AbwG2qa2HN858ROLaLpzkuIlwsb8tN8wznaiKplRdo,819
185
+ LOGS/Entities/__init__.py,sha256=LlsKbmmUWg7GIAYHFWOEyuPTxjJ6RYlpgnfIBGz98vA,3913
186
+ LOGS/Entities/FormattedTable/DatatypeFormattedTable.py,sha256=_ZoyoygmBenEbU30lmz0HTWowewOZnewxb1ZSzTStos,3591
187
+ LOGS/Entities/FormattedTable/DatatypeFormattedTableCell.py,sha256=U1JquCrEqgtGD9iEJY9SP5wufpBUTxF7V5dRBgqubgs,2795
188
+ LOGS/Entities/FormattedTable/DatatypeFormattedTableSettings.py,sha256=P0V2yzkKwl5Zz4HrQeKh1ef53-lPor4ua1nR8e5baqY,311
189
+ LOGS/Entities/FormattedTable/__init__.py,sha256=Rt5RDBpLEyVcR2-VDoxioclKmVEUPg9-aeXGRIyAHn8,258
190
+ LOGS/Entities/LabNotebookEntryContent/BasicAttribute.py,sha256=g9D-G0wgDHQ_TdbuoXgcgwTJJ50-uM_vKY6Vy4XXRls,352
191
+ LOGS/Entities/LabNotebookEntryContent/EntityAttribute.py,sha256=Z3dUjisoNA0aCLd2ebitZOfm0ZsJRl9qxvaKBkjXxcc,2571
192
+ LOGS/Entities/LabNotebookEntryContent/EntryContentBlockquote.py,sha256=IpTeBaosUZPNsZGp-4iOAKH3hS348MeXDukgcmmTowE,453
193
+ LOGS/Entities/LabNotebookEntryContent/EntryContentBulletList.py,sha256=QvT8gomcv6aY9xN3g67NW8przbwB34hxqsbCJQLSEmA,580
194
+ LOGS/Entities/LabNotebookEntryContent/EntryContentCallout.py,sha256=OP-mboGjo4YpBoUszi3SLiXQKRmidkY8-7UjykIg8ZI,1103
195
+ LOGS/Entities/LabNotebookEntryContent/EntryContentContentPlaceholderNode.py,sha256=Ai-96-uT-JPnf1A6OisgfYYElDX-_91R2aGON7vk-XI,929
196
+ LOGS/Entities/LabNotebookEntryContent/EntryContentConverter.py,sha256=_excqf_I0SWzgn-IFyRQnruWgR_DLBD7kVhL7Nm6pQs,6931
197
+ LOGS/Entities/LabNotebookEntryContent/EntryContentDocument.py,sha256=eRpKUIYLip3DT90Jlu3uF882Mh7OiRMEbBsxk8gZxXs,285
198
+ LOGS/Entities/LabNotebookEntryContent/EntryContentEntity.py,sha256=cCk6C-IkVOq7lkvYJzuBvAIkAoBOdzQcjj_P-y2gdTE,434
199
+ LOGS/Entities/LabNotebookEntryContent/EntryContentEntityMention.py,sha256=CvqU1Dimi8aNtaRJFIEnqZ9AXB0zdY2vaeHVj4MgrOY,983
200
+ LOGS/Entities/LabNotebookEntryContent/EntryContentHeading.py,sha256=dv5UiOnSQxiVwOQpvWZV0VA41Uy8LOZgSIk_a9-0bbI,940
201
+ LOGS/Entities/LabNotebookEntryContent/EntryContentHorizontalRule.py,sha256=cxVHHoIwrGbj3dO7o3kNmT9GuZHOiT9-T6J6tSPYsdc,441
202
+ LOGS/Entities/LabNotebookEntryContent/EntryContentItem.py,sha256=esZkPpkDkEBEzaPPwRI9xBpDYizoigjrbIXgUcVlHDc,1202
203
+ LOGS/Entities/LabNotebookEntryContent/EntryContentListItem.py,sha256=0MTHMwl_GL6jRWJNiVK6jkaYXW28F5YSU3cGgykIU_c,1369
204
+ LOGS/Entities/LabNotebookEntryContent/EntryContentOrderedList.py,sha256=AopkLjTFNgf5fLtxUt6x2CfWT1K8fdlNp8kBWZc1wx8,898
205
+ LOGS/Entities/LabNotebookEntryContent/EntryContentParagraph.py,sha256=b9Y6jlPF97VvdSAO2p3qup8Whxq42qPZBkegkHL2Ijk,451
206
+ LOGS/Entities/LabNotebookEntryContent/EntryContentTable.py,sha256=NebxP-yQDXJ4NDUiTt6zQz_LiRLweZ8VdNhtrcIPx90,570
207
+ LOGS/Entities/LabNotebookEntryContent/EntryContentTableCell.py,sha256=_0kZu-qkZEHAjppxXSrQ9oL7nd-P8qDYlHA7O6PQXt4,1151
208
+ LOGS/Entities/LabNotebookEntryContent/EntryContentTableRow.py,sha256=xJmlUNxdiWfx3zbhrt4DsU6XH3wgYYTSzUXdUTacWhk,290
209
+ LOGS/Entities/LabNotebookEntryContent/EntryContentTaskList.py,sha256=0ybPcdF5HZJ84PritHzV3J0IC-WQ7fQcuE9oBnvFCeU,576
210
+ LOGS/Entities/LabNotebookEntryContent/EntryContentTaskListItem.py,sha256=Wnx4TkgDw-cvTfXl3gejz9Tl8O8f5ZQNoYOLyHmUPXc,924
211
+ LOGS/Entities/LabNotebookEntryContent/EntryContentText.py,sha256=Z_Vv_y0D2ffZMlDPnCH_g3ZhgGh9zNJ0I38YR4erH9s,994
212
+ LOGS/Entities/LabNotebookEntryContent/IEntryContentWithAttribute.py,sha256=h-6NRwj7s6E6igUYOr6F6S3I6NC4MQ7K06e9xK6p1xU,748
213
+ LOGS/Entities/LabNotebookEntryContent/IEntryContentWithContent.py,sha256=Qrzr7hbIbmRtx9qQoA8G3QOVRuxlcgZqmCDm-brMoXU,1270
214
+ LOGS/Entities/LabNotebookEntryContent/IEntryContentWithTextAttribute.py,sha256=fspwGnHamxOM4bKHiSdM1WzoBt9UScOWjyj4OoX1mJw,497
215
+ LOGS/Entities/LabNotebookEntryContent/TextAttribute.py,sha256=BZO12CWh9l6SeU2tCeGSzu0Eoh6RGtzYg7ghKXTp8YA,1302
216
+ LOGS/Entities/LabNotebookEntryContent/TextMarkAtributes.py,sha256=j09PvsP3SFMeUZHoTyUC0UfVvHssBZPZiwzEonl7TPs,1559
217
+ LOGS/Entities/LabNotebookEntryContent/TextMarkConverter.py,sha256=esycxCZBj9-KaPM3mQIX5CB8sJ0O2HM4SgikU7KD1Js,1420
218
+ LOGS/Entities/LabNotebookEntryContent/TextMarks.py,sha256=CQTyP7xtSTC0__kq9hgdEul2D2XxCoro9koYxnX3HSM,1998
219
+ LOGS/Entities/LabNotebookEntryContent/__init__.py,sha256=03TqIEBq0R2B0pUcGplIP68RIrsE71SR4iRxenzt1u4,1121
220
+ LOGS/Entity/ConnectedEntity.py,sha256=FP1jJoDOXoMBTozz6sur36IxjhlfqGI-1qUK-G001vc,2805
221
+ LOGS/Entity/Entity.py,sha256=WLCtVjRxyRg6nX8UzEMjKJ4MkLICrMmXSo5xrtRHaUE,6300
222
+ LOGS/Entity/EntityConnector.py,sha256=kjCoieYABujwX1hIaldJVHmg_Js2OdWdbkvNwgBLeNo,2109
223
+ LOGS/Entity/EntityIterator.py,sha256=3gUZx28451sxsHrUT0qYlPRmi03U8rVAcJs0KHXmrEs,7721
224
+ LOGS/Entity/EntityMinimal.py,sha256=GysThwk8YbT8xqbHvJqmYKgPf8ckALO5pG-J_SNT0vw,3237
225
+ LOGS/Entity/EntityMinimalWithIntId.py,sha256=6eVhFFbXKdH3LPj-fAzQLpnzbkWqh1AmV_uRksTi7Ho,1045
226
+ LOGS/Entity/EntityMinimalWithStrId.py,sha256=JmuY0Aah4YLngrgluzwMkhIyeExj2j6kiBZ6Y115hbA,1046
227
+ LOGS/Entity/EntityMinimalWithType.py,sha256=ZFOenkc9s3OAlFAl10wFQLx9Lj6imQRmgWVO-bS_Slk,1300
228
+ LOGS/Entity/EntityRelation.py,sha256=UDCOcmyOo7zcysC3EgIBX6fzPrDBhSRzkYVuRHXlZ4Q,1482
229
+ LOGS/Entity/EntityRelations.py,sha256=zaAASS5SVDwPVMUyNgUH8DcZhWdErRulrZjD6MAWlhM,1266
230
+ LOGS/Entity/EntityRequestParameter.py,sha256=RH6-Sh8ug3aeq_AOFHs0Lp2J94cKI9Ts3slAATZ1tNA,828
231
+ LOGS/Entity/EntityWithIntId.py,sha256=B79VqAQ9I0uEQwbf3DMHXoi064gCw4fv3vCKoXwrHQM,631
232
+ LOGS/Entity/EntityWithStrId.py,sha256=5hz8-F_t_X4kf85DMwW3DJ2NqH_RiRV1Io1WiMN11yk,631
233
+ LOGS/Entity/SerializeableContent.py,sha256=iN_rW3zorXnvL1RBjyQvwxEJwvx5d3RqZKRtPSlScXk,22203
234
+ LOGS/Entity/__init__.py,sha256=8q6dB_AqlLGx-6PexFn8QH7LWOnSGRhgPfFVkYAghR0,749
235
+ LOGS/Interfaces/ICreationRecord.py,sha256=SpACPwz2zA60pkApErZelUOsPq40fHAfiFW3vm9qW9k,1461
236
+ LOGS/Interfaces/ICustomField.py,sha256=rAMnUKW9wMxgUfkXUFECCclggYt9aGKgXlIep67sEo4,726
237
+ LOGS/Interfaces/IEntityInterface.py,sha256=WMMxK-XsIqC6IItBRdcJzF7rDxI0p5gQXVqvkQiFneI,167
238
+ LOGS/Interfaces/IHierarchyType.py,sha256=3Gi-JRJzRm2ulbchFSGO0ZrXBcXhyGPSP1-o01vHu0c,1883
239
+ LOGS/Interfaces/IModificationRecord.py,sha256=SGXtCMHLCsH3pS199jr6QaxSD3LpGUXbNOLoi3qptCU,1379
240
+ LOGS/Interfaces/INamedEntity.py,sha256=ds0qM8BGIr0Ii_sdIYZ7cG-8Mh0jeyTPbzEcQ_dRnbk,559
241
+ LOGS/Interfaces/IOwnedEntity.py,sha256=JmrTl3SI-ResGN5GQAiK_P1U5uoFwlEGep-lJ-9LdyQ,688
242
+ LOGS/Interfaces/IPaginationRequest.py,sha256=L0A5rul1B9r-g-xRqoPjLeDM0lpYXecLCJFaBQXkao8,210
243
+ LOGS/Interfaces/IPermissionedEntity.py,sha256=z9ayv6D_7g_4J7Qo6jQmDWD8yw6IHWyDfgtpgS6V64s,1378
244
+ LOGS/Interfaces/IProjectBased.py,sha256=Przti3L_tY54XjkZ2o7tCFHLMR-oE09tmU_7eJAqrCA,865
245
+ LOGS/Interfaces/IRelatedEntity.py,sha256=fcqlbACgtfBco7Zg_OgmxS7WnxogbOTAb6NkGa-PC6I,1108
246
+ LOGS/Interfaces/IRelationModel.py,sha256=oKwB7FOlf4ygD08zuUdow5BL4OncA8r2DK1xpK4K3h0,78
247
+ LOGS/Interfaces/IRelationRequest.py,sha256=NGSBLyKD4G341giLfPMd1NH0RmeXKnxcAWHAwsrZsXI,283
248
+ LOGS/Interfaces/ISoftDeletable.py,sha256=urnmSfcYJrEm1iIo0k3nyBvMMnpomJWAYAON_uvSX64,672
249
+ LOGS/Interfaces/ITypedEntity.py,sha256=QiEXX7HwSEzMTCXQ4XJt0CutAC7KdH7VwCHeI2mUJ1Y,2569
250
+ LOGS/Interfaces/IUniqueEntity.py,sha256=K-Q80qZX1wTjPnjbs-1PF85BbzYre2su_2xMnescYi4,1894
251
+ LOGS/Interfaces/IVersionedEntity.py,sha256=fz9fjpDchGcsqISJvmKh9UJtmQcfJyY5QzUgk4dR3ac,1120
252
+ LOGS/Interfaces/__init__.py,sha256=tGykqoQeT2_HV-oLYVKJJ9Z0a_Li8_y3AOJjG1btKYw,172
253
+ LOGS/Parameters/Color.py,sha256=4WxvR7N_yIWpDVbFkbk8MVCtBr_UNNAJwEeIyy98VCM,2352
254
+ LOGS/Parameters/ParameterBase.py,sha256=4yGZ3GzkwfLJBL4sd58m4gQt3IzOpeoWSnMgLyNssxg,1306
255
+ LOGS/Parameters/ParameterConverter.py,sha256=MU-drxNV2plQBoynZkQo5t9Xmfpkp9E7um6_52yLzuI,758
256
+ LOGS/Parameters/ParameterElement.py,sha256=fr6AlO_flKRygZZFx1OILP4P-2lV2Tx4PAe6WTZdsdQ,2350
257
+ LOGS/Parameters/ParameterList.py,sha256=ijukB1__iKI5cefmOIIWz0wKaPz9Cx8KpD7Y7Gz2Pn0,1478
258
+ LOGS/Parameters/ParameterTable.py,sha256=7Lew4DPgWmKcpV1T-1Pvt00kEI05FB383QqO-LHAjds,1758
259
+ LOGS/Parameters/__init__.py,sha256=jNF_VnD9u6V7usDFymzvDx5kzvcYssnpASICiKW0wdU,341
260
+ logs_py-3.0.1.dist-info/METADATA,sha256=_sJJ09I_3FP5hLKlmCbDBLTjIAcA2jeuZoSco0MR4nY,2072
261
+ logs_py-3.0.1.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
262
+ logs_py-3.0.1.dist-info/top_level.txt,sha256=Ckn2LiAmGaR7k3tdEnKAc04z_uboMD4gLreYghRNdCs,5
263
+ logs_py-3.0.1.dist-info/RECORD,,
@@ -1,25 +0,0 @@
1
- from enum import Enum
2
-
3
-
4
- class CustomFieldTypes(Enum):
5
- Text = "Text"
6
- TextArea = "TextArea"
7
- Number = "Number"
8
- EnumDropdown = "EnumDropdown"
9
- Date = "Date"
10
- Toggle = "Toggle"
11
-
12
-
13
- class CustomFieldDataTypes(Enum):
14
- String = "String"
15
- Date = "Date"
16
- Number = "Number"
17
- Boolean = "Boolean"
18
- DateTime = "DateTime"
19
-
20
-
21
- class CustomFieldPropertyFilters(Enum):
22
- DefaultValue = "DefaultValue"
23
- IsReadOnly = "IsReadOnly"
24
- IsRequired = "IsRequired"
25
- ValidationRegexp = "ValidationRegexp"
@@ -1,7 +0,0 @@
1
- from LOGS.Auxiliary.Decorators import Endpoint
2
- from LOGS.Entities.CustomSchema import CustomSchema
3
-
4
-
5
- @Endpoint("dataset_types")
6
- class DatasetType(CustomSchema):
7
- pass
@@ -1,8 +0,0 @@
1
- from LOGS.Auxiliary.Decorators import FullModel
2
- from LOGS.Entities.DatasetType import DatasetType
3
- from LOGS.Entity.EntityMinimalWithStrId import EntityMinimalWithStrId
4
-
5
-
6
- @FullModel(DatasetType)
7
- class DatasetTypeMinimal(EntityMinimalWithStrId[DatasetType]):
8
- pass
@@ -1,34 +0,0 @@
1
- from typing import Optional
2
-
3
- from LOGS.Auxiliary.Decorators import Endpoint
4
- from LOGS.Entities.CustomSchema import CustomSchema
5
- from LOGS.Entity.SerializeableContent import SerializeableClass
6
- from LOGS.LOGSConnection import LOGSConnection
7
-
8
-
9
- class SampleTypeStats(SerializeableClass):
10
- samples: Optional[int] = None
11
-
12
-
13
- @Endpoint("sample_types")
14
- class SampleType(CustomSchema):
15
- _stats: Optional[SampleTypeStats]
16
-
17
- def __init__(
18
- self,
19
- ref=None,
20
- id: Optional[str] = None,
21
- connection: Optional[LOGSConnection] = None,
22
- name: str = "",
23
- ):
24
- self._stats = None
25
-
26
- super().__init__(ref, id, connection, name)
27
-
28
- @property
29
- def stats(self) -> Optional[SampleTypeStats]:
30
- return self._stats
31
-
32
- @stats.setter
33
- def stats(self, value):
34
- self._stats = self.checkAndConvertNullable(value, SampleTypeStats, "stats")
@@ -1,8 +0,0 @@
1
- from LOGS.Auxiliary.Decorators import FullModel
2
- from LOGS.Entities.SampleType import SampleType
3
- from LOGS.Entity.EntityMinimalWithStrId import EntityMinimalWithStrId
4
-
5
-
6
- @FullModel(SampleType)
7
- class SampleTypeMinimal(EntityMinimalWithStrId[SampleType]):
8
- pass
@@ -1,8 +0,0 @@
1
- from dataclasses import dataclass
2
-
3
- from LOGS.Entities.CustomSchemaParameter import CustomSchemaOrder, CustomSchemaParameter
4
-
5
-
6
- @dataclass
7
- class SampleTypeRequestParameter(CustomSchemaParameter[CustomSchemaOrder]):
8
- pass
@@ -1,12 +0,0 @@
1
- from LOGS.Auxiliary.Decorators import Endpoint
2
- from LOGS.Entities.SampleType import SampleType
3
- from LOGS.Entities.SampleTypeRequestParameter import SampleTypeRequestParameter
4
- from LOGS.Entity.EntityIterator import EntityIterator
5
-
6
-
7
- @Endpoint("sample_types")
8
- class SampleTypes(EntityIterator[SampleType, SampleTypeRequestParameter]):
9
- """LOGS connected SampleTypes iterator"""
10
-
11
- _generatorType = SampleType
12
- _parameterType = SampleTypeRequestParameter