fameio 2.0.0__py3-none-any.whl → 2.1.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.
- CHANGELOG.md +42 -22
- fameio/scripts/convert_results.py +9 -9
- fameio/scripts/make_config.py +3 -3
- fameio/source/cli/convert_results.py +11 -2
- fameio/source/cli/make_config.py +2 -2
- fameio/source/cli/options.py +0 -1
- fameio/source/cli/parser.py +3 -3
- fameio/source/loader.py +10 -10
- fameio/source/logs.py +69 -38
- fameio/source/results/conversion.py +4 -4
- fameio/source/results/csv_writer.py +4 -4
- fameio/source/results/data_transformer.py +3 -20
- fameio/source/results/input_dao.py +3 -3
- fameio/source/results/reader.py +8 -8
- fameio/source/results/yaml_writer.py +2 -2
- fameio/source/scenario/contract.py +2 -2
- fameio/source/scenario/exception.py +2 -2
- fameio/source/scenario/generalproperties.py +2 -2
- fameio/source/schema/agenttype.py +5 -5
- fameio/source/schema/attribute.py +4 -4
- fameio/source/schema/java_packages.py +69 -0
- fameio/source/schema/schema.py +23 -7
- fameio/source/series.py +5 -3
- fameio/source/validator.py +5 -5
- fameio/source/writer.py +23 -12
- {fameio-2.0.0.dist-info → fameio-2.1.0.dist-info}/METADATA +43 -31
- fameio-2.1.0.dist-info/RECORD +53 -0
- fameio-2.0.0.dist-info/RECORD +0 -52
- {fameio-2.0.0.dist-info → fameio-2.1.0.dist-info}/LICENSE.txt +0 -0
- {fameio-2.0.0.dist-info → fameio-2.1.0.dist-info}/LICENSES/Apache-2.0.txt +0 -0
- {fameio-2.0.0.dist-info → fameio-2.1.0.dist-info}/LICENSES/CC-BY-4.0.txt +0 -0
- {fameio-2.0.0.dist-info → fameio-2.1.0.dist-info}/LICENSES/CC0-1.0.txt +0 -0
- {fameio-2.0.0.dist-info → fameio-2.1.0.dist-info}/WHEEL +0 -0
- {fameio-2.0.0.dist-info → fameio-2.1.0.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: fameio
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.1.0
|
4
4
|
Summary: Python scripts for operation of FAME models
|
5
5
|
Home-page: https://gitlab.com/fame-framework/wiki/-/wikis/home
|
6
6
|
License: Apache-2.0
|
@@ -21,13 +21,13 @@ Classifier: Programming Language :: Python :: 3.10
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.11
|
22
22
|
Classifier: Programming Language :: Python :: 3.12
|
23
23
|
Classifier: Topic :: Scientific/Engineering
|
24
|
-
Requires-Dist: fameprotobuf (>=1.
|
24
|
+
Requires-Dist: fameprotobuf (>=1.5.0,<2.0.0)
|
25
25
|
Requires-Dist: pandas (>=1.0,<3.0)
|
26
26
|
Requires-Dist: pyyaml (>=6.0,<7.0)
|
27
27
|
Project-URL: Repository, https://gitlab.com/fame-framework/fame-io/
|
28
28
|
Description-Content-Type: text/markdown
|
29
29
|
|
30
|
-
<!-- SPDX-FileCopyrightText:
|
30
|
+
<!-- SPDX-FileCopyrightText: 2024 German Aerospace Center <fame@dlr.de>
|
31
31
|
|
32
32
|
SPDX-License-Identifier: Apache-2.0 -->
|
33
33
|
[](https://badge.fury.io/py/fameio)
|
@@ -129,33 +129,45 @@ The "scenario.yaml" file contains all configuration options for a FAME-based sim
|
|
129
129
|
It consists of the sections `Schema`, `GeneralProperties`, `Agents` and `Contracts`, all of them described below.
|
130
130
|
|
131
131
|
#### Schema
|
132
|
-
The Schema
|
133
|
-
|
132
|
+
The Schema describes a model's components such as its types of agents, their inputs, what data they exchange, etc.
|
133
|
+
It is also used to validate the model inputs provided in the `scenario.yaml`.
|
134
|
+
Since the Schema is valid until the model itself is changed, it is recommended to defined it in a separate file and include the file here.
|
134
135
|
|
135
136
|
Currently, the schema specifies:
|
136
137
|
* which type of Agents can be created
|
137
138
|
* what type of input attributes an Agent uses
|
138
|
-
* what type of Products an Agent can send in Contracts
|
139
|
+
* what type of Products an Agent can send in Contracts, and
|
140
|
+
* the names of the Java packages for the classes corresponding to Agents, DataItems and Portables.
|
139
141
|
|
140
|
-
The Schema consists of the sections `
|
142
|
+
The Schema consists of the sections `JavaPackages` and `AgentTypes`.
|
141
143
|
|
142
|
-
#####
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
144
|
+
##### JavaPackages
|
145
|
+
This section defines the name of the Java packages in which the model code is located.
|
146
|
+
A similar data set was formerly specified in the `fameSetup.yaml`, but is now specified in the schema.
|
147
|
+
Each of the three sections `Agents`, `DataItems`, and `Portables` contain a list of fully qualified java package names of your model's classes.
|
148
|
+
Package names can occur in multiple lists and may overlap.
|
149
|
+
It is not necessary (but possible) to specify the nearest enclosing package for each Agent, DataItem or Portable.
|
150
|
+
Specifying any super-package will also work.
|
151
|
+
Also, package names occur on multiple lists for Agent, DataItem or Portable.
|
152
|
+
|
153
|
+
For example, for a project with all its
|
154
|
+
* Agent-derived java classes located in packages below the package named "agents",
|
155
|
+
* DataItem implementation classes in a subpackage named "msg",
|
156
|
+
* Portable implementation classes in a subpackages named "portableItems" and "otherPortables",
|
157
|
+
|
158
|
+
the corresponding section in the schema would look like this:
|
147
159
|
|
148
160
|
```yaml
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
161
|
+
JavaPackages:
|
162
|
+
Agents:
|
163
|
+
- "agents"
|
164
|
+
DataItems:
|
165
|
+
- "msg"
|
166
|
+
Portables:
|
167
|
+
- "portableItems"
|
168
|
+
- "otherPortables"
|
153
169
|
```
|
154
170
|
|
155
|
-
* `Project` name of your project / FAME-based application
|
156
|
-
* `RepoUrl` URL of your project
|
157
|
-
* `CommitHash` hash of the commit / version of your project
|
158
|
-
|
159
171
|
##### AgentTypes
|
160
172
|
Here, each type of agent that can be created in your FAME-based application is listed, its attributes and its available Products for Contracts.
|
161
173
|
The structure of this section
|
@@ -585,17 +597,17 @@ Call structure:
|
|
585
597
|
|
586
598
|
You may also specify any of the following arguments:
|
587
599
|
|
588
|
-
| Command | Action
|
589
|
-
|
590
|
-
| `-l` or `--log` <option> | Sets the logging level. Default is `
|
591
|
-
| `-lf` or `--logfile` <file> | Sets the logging file. Default is `None`. If `None` is provided, all logs get only printed to the console.
|
592
|
-
| `-a` or `--agents` <list-of-agents> | If specified, only a subset of agents is extracted from the protobuf file. Default is to extract all agents.
|
593
|
-
| `-o` or `--output` | Sets the path to where the generated output files are written to. If not specified, the folder's name is derived from the input file's name. Folder will be created if it does not exist.
|
594
|
-
| `-se` or `--single-export` | Enables export of individual agents to individual files, when present. If not present (the default) one file per `AgentType` is created.
|
595
|
-
| `-m` or `--memory-saving` | When specified, reduces memory usage profile at the cost of runtime. Use only when necessary.
|
596
|
-
| `-cc` or `--complex-column` <option> | Defines how to deal with complex indexed output columns (if any). `IGNORE` ignores complex columns. `
|
597
|
-
| `-t` or `--time` <option> | Option to define conversion of time steps to given format (default=`UTC`) by `-t/--time {UTC, INT, FAME}`
|
598
|
-
| `--input-recovery` or `--no-input-recovery` | If True, all input data are recovered as well as the outputs (default=False).
|
600
|
+
| Command | Action |
|
601
|
+
|---------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
602
|
+
| `-l` or `--log` <option> | Sets the logging level. Default is `WARNING`. Options are `DEBUG`, `INFO`, `WARNING`, `ERROR`, `CRITICAL`. |
|
603
|
+
| `-lf` or `--logfile` <file> | Sets the logging file. Default is `None`. If `None` is provided, all logs get only printed to the console. |
|
604
|
+
| `-a` or `--agents` <list-of-agents> | If specified, only a subset of agents is extracted from the protobuf file. Default is to extract all agents. |
|
605
|
+
| `-o` or `--output` | Sets the path to where the generated output files are written to. If not specified, the folder's name is derived from the input file's name. Folder will be created if it does not exist. |
|
606
|
+
| `-se` or `--single-export` | Enables export of individual agents to individual files, when present. If not present (the default) one file per `AgentType` is created. |
|
607
|
+
| `-m` or `--memory-saving` | When specified, reduces memory usage profile at the cost of runtime. Use only when necessary. |
|
608
|
+
| `-cc` or `--complex-column` <option> | Defines how to deal with complex indexed output columns (if any). `IGNORE` ignores complex columns. `SPLIT` creates a separate file for each complex indexed output column. |
|
609
|
+
| `-t` or `--time` <option> | Option to define conversion of time steps to given format (default=`UTC`) by `-t/--time {UTC, INT, FAME}` |
|
610
|
+
| `--input-recovery` or `--no-input-recovery` | If True, all input data are recovered as well as the outputs (default=False). |
|
599
611
|
|
600
612
|
Additionally, you may merge TimeSteps of a certain range of steps in the output files to
|
601
613
|
i) associate multiple time steps with a common logical time in your simulation
|
@@ -0,0 +1,53 @@
|
|
1
|
+
CHANGELOG.md,sha256=cXIVQA_QDtE73CZbA7P_DWqaegoPdVY4389UVQiT87g,10680
|
2
|
+
fameio/__init__.py,sha256=IQm0MNOXkhBexiMXBoNZDK5xHUYgazH7oXm-lc0Vm04,109
|
3
|
+
fameio/scripts/__init__.py,sha256=Bdu79kajJvvmPWdSP82Y6G8MCpP4n9ftTR-snWSbMJY,741
|
4
|
+
fameio/scripts/__init__.py.license,sha256=2-OqCNxP4504xY2XQqseYypJi1_Qx4xJSzO3t7c3ACM,107
|
5
|
+
fameio/scripts/convert_results.py,sha256=mUO_lKk788JpfLdGYxhNuwYekKDMnoHC8awWgkd56vE,3615
|
6
|
+
fameio/scripts/convert_results.py.license,sha256=2-OqCNxP4504xY2XQqseYypJi1_Qx4xJSzO3t7c3ACM,107
|
7
|
+
fameio/scripts/make_config.py,sha256=OL72ii06m9N0ncWYHdsIivzeOj8Xd_6Se6caWkdCAEs,1347
|
8
|
+
fameio/scripts/make_config.py.license,sha256=2-OqCNxP4504xY2XQqseYypJi1_Qx4xJSzO3t7c3ACM,107
|
9
|
+
fameio/source/__init__.py,sha256=14CnWOIkdSeKQg6FioQSgO7UtEFF6pO4MUtDAUfwNmA,278
|
10
|
+
fameio/source/cli/__init__.py,sha256=UqrdWnYMoy-o2--m0a4c-MtAorsc4eILXaPq27EXM1Q,112
|
11
|
+
fameio/source/cli/convert_results.py,sha256=LY9ySXs3dAyyos0yoc-bY8M1Z9Oti-AgGYEEK5K-Ctg,3412
|
12
|
+
fameio/source/cli/make_config.py,sha256=Y49qWewg2Z3THWA4drrVp4Avag26cDOcLzBiKmxbESw,2384
|
13
|
+
fameio/source/cli/options.py,sha256=H7befeI-fDItdzjlqZlpWtJfZGUaYzrfGdzBiWbAg28,1393
|
14
|
+
fameio/source/cli/parser.py,sha256=0r2CAcBfpinrE3EASxoYv2i_0Obz2zIbe9RqeCwK0kA,9423
|
15
|
+
fameio/source/loader.py,sha256=xDmTKPmIrSfYQtIZe8cUAbiDKxdFqcTH9n1EckKAZc4,7403
|
16
|
+
fameio/source/logs.py,sha256=9Iq9jcglGyALYir-Luxfa-m4uUJX074JkUM0uMwzPNc,3684
|
17
|
+
fameio/source/path_resolver.py,sha256=cIEVvz7Eh4e3Rh87XkwyGiyj9iKxUI7TzWtq6ClhLd8,1321
|
18
|
+
fameio/source/results/__init__.py,sha256=IQm0MNOXkhBexiMXBoNZDK5xHUYgazH7oXm-lc0Vm04,109
|
19
|
+
fameio/source/results/agent_type.py,sha256=pW5cLduLlNOcBBvS6sCLpTpZt3D6B8UMsizEZhe5lJ0,4321
|
20
|
+
fameio/source/results/conversion.py,sha256=F7rDJ_iJGN1DFt_9jkweGap_TGMJV3UnUyssfIJehDM,3709
|
21
|
+
fameio/source/results/csv_writer.py,sha256=A4hWnuBmU0cOfFLkW57L0NlH2tHc4H-ME1fmJitZLI8,4856
|
22
|
+
fameio/source/results/data_transformer.py,sha256=tz58m7_TZPE3YjBoDyiMWiP_sz9mWaj1JfW2FjKLVhY,5490
|
23
|
+
fameio/source/results/input_dao.py,sha256=5V_7dUhO1XZGNuwH5041HnMGCcQjC9d9_TBR4FZ9QJE,6919
|
24
|
+
fameio/source/results/output_dao.py,sha256=8FocGe4yyH3EdHD5Chw9uCGnDetfJoSglBga0o3lnWE,3960
|
25
|
+
fameio/source/results/reader.py,sha256=g3cfbNq7eHO98dxtpqjjPE8_YJVM56Wp0MCnNi3ds5g,5054
|
26
|
+
fameio/source/results/yaml_writer.py,sha256=rOAbeZQgRojYvofUcXreIdIJtdSbOrHAohiNLkmPgCI,837
|
27
|
+
fameio/source/scenario/__init__.py,sha256=YfJvz275GWX8kVWMSMRcF3KsUQNqSAPrwBgNV7tqBTY,372
|
28
|
+
fameio/source/scenario/agent.py,sha256=Z8jfMfUjrTJ4R1rEpwNdKCblhEx6-9xioewxGuajuqw,4713
|
29
|
+
fameio/source/scenario/attribute.py,sha256=-Ed6jHlztwf9NhvpfRNt6ohGKKqkPBx_hLvGFE6O6K0,4834
|
30
|
+
fameio/source/scenario/contract.py,sha256=lM2NN_CUDh9iqDghq_F6JE9rEW3ZGUhBJOD0qkjuKBU,9442
|
31
|
+
fameio/source/scenario/exception.py,sha256=7MYN4h40ptMZFD1lLtnK5PWXbAGlsmUSDmUQ5FAKeN8,1554
|
32
|
+
fameio/source/scenario/fameiofactory.py,sha256=7P-x8i9sSU9sIkOlgF6gVRFuNacFMUBrBh4KdHoAUtU,1376
|
33
|
+
fameio/source/scenario/generalproperties.py,sha256=UysnP8FClKcPCoAzElyRb950Aq1kC8JQPhjs3Fo2OP4,4539
|
34
|
+
fameio/source/scenario/scenario.py,sha256=j2IVVZlpBJjYECXzBouFtrDXPPES0uSf_Q2l0MzcQkQ,3727
|
35
|
+
fameio/source/schema/__init__.py,sha256=ZGTyliDbjlYGPAjB9bbggzACOYWdhm4I1VSmm7YGmTk,270
|
36
|
+
fameio/source/schema/agenttype.py,sha256=fe6GWJwl2S-J7KmH_eR5Y8Ieez1difez1w7v-r26yGU,5183
|
37
|
+
fameio/source/schema/attribute.py,sha256=o2eZjurrYfvBiaZm1WE1XW0u8joHSbbXEKu-385cuW8,8296
|
38
|
+
fameio/source/schema/exception.py,sha256=NMftGnrFOaS3MwrjZl8qbx3bi6KYUxhzHJIX1v--B5M,224
|
39
|
+
fameio/source/schema/java_packages.py,sha256=-2ZbAG_htEowB-fBSMizsLWrphyiKfESDDHspzdEQP4,2656
|
40
|
+
fameio/source/schema/schema.py,sha256=-J8VtO4W9Z-OnTV7MFO1umZWIC_epbLCYd6-q4lNQ8Y,2975
|
41
|
+
fameio/source/series.py,sha256=00HBTz_liP0T_2yRQ3__xjHjZBT0bVGA00CZxcyGCqk,8232
|
42
|
+
fameio/source/time.py,sha256=Vsd95nTubL8x5cwiznJYeti6clZCCHHJv7xjSpYqkF0,6984
|
43
|
+
fameio/source/tools.py,sha256=7YxX-CmsakJJB2RbBhf2u8y1-RyhDhsASHXFztkDIKE,1052
|
44
|
+
fameio/source/validator.py,sha256=cXTDl75zt6NVVyHUUFDL9Y_lg3QuJJfTdW83lv4Krvs,15719
|
45
|
+
fameio/source/writer.py,sha256=vZd8om08xO4fnb2o6lkLXFdDjDlX3_NcHl6TwR4YYkM,11921
|
46
|
+
fameio-2.1.0.dist-info/entry_points.txt,sha256=jvQVfwJjZXPWQjJlhj1Dt6PTeblryTc1GxjKeK90twI,123
|
47
|
+
fameio-2.1.0.dist-info/LICENSE.txt,sha256=eGHBZnhr9CWjE95SWjRfmhtK1lvVn5X4Fpf3KrrAZDg,10391
|
48
|
+
fameio-2.1.0.dist-info/LICENSES/Apache-2.0.txt,sha256=eGHBZnhr9CWjE95SWjRfmhtK1lvVn5X4Fpf3KrrAZDg,10391
|
49
|
+
fameio-2.1.0.dist-info/LICENSES/CC-BY-4.0.txt,sha256=y9WvMYKGt0ZW8UXf9QkZB8wj1tjJrQngKR7CSXeSukE,19051
|
50
|
+
fameio-2.1.0.dist-info/LICENSES/CC0-1.0.txt,sha256=9Ofzc7m5lpUDN-jUGkopOcLZC3cl6brz1QhKInF60yg,7169
|
51
|
+
fameio-2.1.0.dist-info/METADATA,sha256=Fnk0T5HpZjVPYNb9do_EzAht_PojGc9685u-K4ElSrc,30847
|
52
|
+
fameio-2.1.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
53
|
+
fameio-2.1.0.dist-info/RECORD,,
|
fameio-2.0.0.dist-info/RECORD
DELETED
@@ -1,52 +0,0 @@
|
|
1
|
-
CHANGELOG.md,sha256=HzXg9-Yd8w0npG0ZJfmcGQNbP59XQchdOpZlWvFHIWI,9874
|
2
|
-
fameio/__init__.py,sha256=IQm0MNOXkhBexiMXBoNZDK5xHUYgazH7oXm-lc0Vm04,109
|
3
|
-
fameio/scripts/__init__.py,sha256=Bdu79kajJvvmPWdSP82Y6G8MCpP4n9ftTR-snWSbMJY,741
|
4
|
-
fameio/scripts/__init__.py.license,sha256=2-OqCNxP4504xY2XQqseYypJi1_Qx4xJSzO3t7c3ACM,107
|
5
|
-
fameio/scripts/convert_results.py,sha256=Ddv40nIK4fuFgGd_l81KtCg7rzAuH_sNzjuqL2w7xfQ,3635
|
6
|
-
fameio/scripts/convert_results.py.license,sha256=2-OqCNxP4504xY2XQqseYypJi1_Qx4xJSzO3t7c3ACM,107
|
7
|
-
fameio/scripts/make_config.py,sha256=s5UfsGT93vfwEBXTmmhJTw0HwNvk7d5iDAbbL5u7o2c,1349
|
8
|
-
fameio/scripts/make_config.py.license,sha256=2-OqCNxP4504xY2XQqseYypJi1_Qx4xJSzO3t7c3ACM,107
|
9
|
-
fameio/source/__init__.py,sha256=14CnWOIkdSeKQg6FioQSgO7UtEFF6pO4MUtDAUfwNmA,278
|
10
|
-
fameio/source/cli/__init__.py,sha256=UqrdWnYMoy-o2--m0a4c-MtAorsc4eILXaPq27EXM1Q,112
|
11
|
-
fameio/source/cli/convert_results.py,sha256=VmGBTCXlr6G2AziS3RRGUk4g0agf6MVuMxlWq3fbzZ0,3072
|
12
|
-
fameio/source/cli/make_config.py,sha256=_PsQTQNYqRKr8PyGZtMDQskK_qn-tH_rsUZqesYK0UI,2369
|
13
|
-
fameio/source/cli/options.py,sha256=zprTvGVNF8Nm71XJ3eMKrwb5pn2ait8VdDwwP5UYLNA,1413
|
14
|
-
fameio/source/cli/parser.py,sha256=gFkWDjTj2e08ZbIWio7d4KOLHFJiCDq-tsL-oP2y_00,9366
|
15
|
-
fameio/source/loader.py,sha256=SzExknxxrMoL5RG_7TAJ1jVxm93r9VrwT3bzJ196zO4,7433
|
16
|
-
fameio/source/logs.py,sha256=sg8MYTm1lquUA8mJSfhaYsC9Dm78fpHstQbQWAM41E8,2806
|
17
|
-
fameio/source/path_resolver.py,sha256=cIEVvz7Eh4e3Rh87XkwyGiyj9iKxUI7TzWtq6ClhLd8,1321
|
18
|
-
fameio/source/results/__init__.py,sha256=IQm0MNOXkhBexiMXBoNZDK5xHUYgazH7oXm-lc0Vm04,109
|
19
|
-
fameio/source/results/agent_type.py,sha256=pW5cLduLlNOcBBvS6sCLpTpZt3D6B8UMsizEZhe5lJ0,4321
|
20
|
-
fameio/source/results/conversion.py,sha256=ZaTM3kejkmAr8INdI7FTHoJglFm6MlEGd7phJt1Po1c,3721
|
21
|
-
fameio/source/results/csv_writer.py,sha256=txs26dqThagTseCC6UCjBK2ByQZYbNR_sPldUIGPnow,4868
|
22
|
-
fameio/source/results/data_transformer.py,sha256=KP2Z-R0Na5JjOvI_DWgmaAdR5wdXKOxbIuUxsIXZ5nY,6264
|
23
|
-
fameio/source/results/input_dao.py,sha256=VDIbcq0z600kptyktLPM7RsvZWsx6KBJvvViCL2jOdI,6928
|
24
|
-
fameio/source/results/output_dao.py,sha256=8FocGe4yyH3EdHD5Chw9uCGnDetfJoSglBga0o3lnWE,3960
|
25
|
-
fameio/source/results/reader.py,sha256=OH18c-IBR7j0uKp2ZU_j5vPIFfasv3ziipjcgXDXYl0,5078
|
26
|
-
fameio/source/results/yaml_writer.py,sha256=9BjS0hMcGr2qgtcpwoY3Mmh-XyG3kjkTYqDI-xSAXww,843
|
27
|
-
fameio/source/scenario/__init__.py,sha256=YfJvz275GWX8kVWMSMRcF3KsUQNqSAPrwBgNV7tqBTY,372
|
28
|
-
fameio/source/scenario/agent.py,sha256=Z8jfMfUjrTJ4R1rEpwNdKCblhEx6-9xioewxGuajuqw,4713
|
29
|
-
fameio/source/scenario/attribute.py,sha256=-Ed6jHlztwf9NhvpfRNt6ohGKKqkPBx_hLvGFE6O6K0,4834
|
30
|
-
fameio/source/scenario/contract.py,sha256=WI9dY8xWEXB5vGvXWDye6LAA9P-8GXFAep8Z-QTbhjg,9448
|
31
|
-
fameio/source/scenario/exception.py,sha256=2mJC8EuZqyZsb31qw6ZtOBZWKm9kILgB3n3JHrIYmAc,1560
|
32
|
-
fameio/source/scenario/fameiofactory.py,sha256=7P-x8i9sSU9sIkOlgF6gVRFuNacFMUBrBh4KdHoAUtU,1376
|
33
|
-
fameio/source/scenario/generalproperties.py,sha256=CaFny6xyGs3sHqSHNKyWUB68lWOrTOnYfAnIcPaSusQ,4545
|
34
|
-
fameio/source/scenario/scenario.py,sha256=j2IVVZlpBJjYECXzBouFtrDXPPES0uSf_Q2l0MzcQkQ,3727
|
35
|
-
fameio/source/schema/__init__.py,sha256=ZGTyliDbjlYGPAjB9bbggzACOYWdhm4I1VSmm7YGmTk,270
|
36
|
-
fameio/source/schema/agenttype.py,sha256=x4A5eLDC9SfC2PwUUUg0U6OdFJ49oLH61CwSWDoIKZc,5198
|
37
|
-
fameio/source/schema/attribute.py,sha256=rcltVycTipwnrQNiKFJTifhuDZHgLOcVtcYjOwHDo2A,8308
|
38
|
-
fameio/source/schema/exception.py,sha256=NMftGnrFOaS3MwrjZl8qbx3bi6KYUxhzHJIX1v--B5M,224
|
39
|
-
fameio/source/schema/schema.py,sha256=TmlIwnVUjKbNx6ZH8soe2tbiQ0-X7oqIsrSNBGlOwWk,2240
|
40
|
-
fameio/source/series.py,sha256=g2nwFqED-TQhHP5YraWcavmLBXmVxEKEF4HKa9C5n4I,8120
|
41
|
-
fameio/source/time.py,sha256=Vsd95nTubL8x5cwiznJYeti6clZCCHHJv7xjSpYqkF0,6984
|
42
|
-
fameio/source/tools.py,sha256=7YxX-CmsakJJB2RbBhf2u8y1-RyhDhsASHXFztkDIKE,1052
|
43
|
-
fameio/source/validator.py,sha256=bk1tkz4eu_LG28Sey9PNNT5KqQKQuokdf9OSorSJJgo,15734
|
44
|
-
fameio/source/writer.py,sha256=9v4GGKc-5d65K48f0IlqgB0UTYu4XTwPzzLS_JD7Wp8,11353
|
45
|
-
fameio-2.0.0.dist-info/entry_points.txt,sha256=jvQVfwJjZXPWQjJlhj1Dt6PTeblryTc1GxjKeK90twI,123
|
46
|
-
fameio-2.0.0.dist-info/LICENSE.txt,sha256=eGHBZnhr9CWjE95SWjRfmhtK1lvVn5X4Fpf3KrrAZDg,10391
|
47
|
-
fameio-2.0.0.dist-info/LICENSES/Apache-2.0.txt,sha256=eGHBZnhr9CWjE95SWjRfmhtK1lvVn5X4Fpf3KrrAZDg,10391
|
48
|
-
fameio-2.0.0.dist-info/LICENSES/CC-BY-4.0.txt,sha256=y9WvMYKGt0ZW8UXf9QkZB8wj1tjJrQngKR7CSXeSukE,19051
|
49
|
-
fameio-2.0.0.dist-info/LICENSES/CC0-1.0.txt,sha256=9Ofzc7m5lpUDN-jUGkopOcLZC3cl6brz1QhKInF60yg,7169
|
50
|
-
fameio-2.0.0.dist-info/METADATA,sha256=V2Z4AkAJLlyCbFml9ZF6B9_0TzsrtkBr0F-5ZWWHwWs,30769
|
51
|
-
fameio-2.0.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
52
|
-
fameio-2.0.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|