fameio 3.1.0__py3-none-any.whl → 3.2.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.
Files changed (56) hide show
  1. fameio/cli/__init__.py +2 -3
  2. fameio/cli/convert_results.py +6 -4
  3. fameio/cli/make_config.py +6 -4
  4. fameio/cli/options.py +3 -3
  5. fameio/cli/parser.py +43 -31
  6. fameio/input/__init__.py +1 -9
  7. fameio/input/loader/__init__.py +9 -7
  8. fameio/input/loader/controller.py +64 -14
  9. fameio/input/loader/loader.py +14 -7
  10. fameio/input/metadata.py +37 -18
  11. fameio/input/resolver.py +5 -4
  12. fameio/input/scenario/__init__.py +7 -8
  13. fameio/input/scenario/agent.py +52 -19
  14. fameio/input/scenario/attribute.py +28 -29
  15. fameio/input/scenario/contract.py +161 -52
  16. fameio/input/scenario/exception.py +45 -22
  17. fameio/input/scenario/fameiofactory.py +63 -7
  18. fameio/input/scenario/generalproperties.py +17 -6
  19. fameio/input/scenario/scenario.py +111 -28
  20. fameio/input/scenario/stringset.py +27 -8
  21. fameio/input/schema/__init__.py +5 -5
  22. fameio/input/schema/agenttype.py +29 -11
  23. fameio/input/schema/attribute.py +174 -84
  24. fameio/input/schema/java_packages.py +8 -5
  25. fameio/input/schema/schema.py +35 -9
  26. fameio/input/validator.py +58 -42
  27. fameio/input/writer.py +139 -41
  28. fameio/logs.py +23 -17
  29. fameio/output/__init__.py +5 -1
  30. fameio/output/agent_type.py +93 -27
  31. fameio/output/conversion.py +48 -30
  32. fameio/output/csv_writer.py +88 -18
  33. fameio/output/data_transformer.py +12 -21
  34. fameio/output/input_dao.py +68 -32
  35. fameio/output/output_dao.py +26 -4
  36. fameio/output/reader.py +61 -18
  37. fameio/output/yaml_writer.py +18 -9
  38. fameio/scripts/__init__.py +9 -2
  39. fameio/scripts/convert_results.py +144 -52
  40. fameio/scripts/convert_results.py.license +1 -1
  41. fameio/scripts/exception.py +7 -0
  42. fameio/scripts/make_config.py +34 -12
  43. fameio/scripts/make_config.py.license +1 -1
  44. fameio/series.py +132 -47
  45. fameio/time.py +88 -37
  46. fameio/tools.py +9 -8
  47. {fameio-3.1.0.dist-info → fameio-3.2.0.dist-info}/METADATA +19 -13
  48. fameio-3.2.0.dist-info/RECORD +56 -0
  49. {fameio-3.1.0.dist-info → fameio-3.2.0.dist-info}/WHEEL +1 -1
  50. CHANGELOG.md +0 -279
  51. fameio-3.1.0.dist-info/RECORD +0 -56
  52. {fameio-3.1.0.dist-info → fameio-3.2.0.dist-info}/LICENSE.txt +0 -0
  53. {fameio-3.1.0.dist-info → fameio-3.2.0.dist-info}/LICENSES/Apache-2.0.txt +0 -0
  54. {fameio-3.1.0.dist-info → fameio-3.2.0.dist-info}/LICENSES/CC-BY-4.0.txt +0 -0
  55. {fameio-3.1.0.dist-info → fameio-3.2.0.dist-info}/LICENSES/CC0-1.0.txt +0 -0
  56. {fameio-3.1.0.dist-info → fameio-3.2.0.dist-info}/entry_points.txt +0 -0
CHANGELOG.md DELETED
@@ -1,279 +0,0 @@
1
- <!-- SPDX-FileCopyrightText: 2025 German Aerospace Center <fame@dlr.de>
2
-
3
- SPDX-License-Identifier: CC0-1.0 -->
4
-
5
- ## [3.1.0](https://gitlab.com/fame-framework/fame-io/-/tags/v3.1.0) - 2025-01-29
6
- ### Changed
7
- - Speed up of `makeFameRunConfig` for large CSV files #229 (@dlr-cjs, dlr_fn)
8
- - Improve testing of `tools.py` #227 (@dlr_fn)
9
- - Reorganize badges in tabular representation in `README.md` #226 (@dlr-cjs, dlr_fn)
10
-
11
- # Changelog
12
- ## [3.0.0](https://gitlab.com/fame-framework/fame-io/-/tags/v3.0.0) - 2024-12-02
13
- ### Changed
14
- - **Breaking**: Update to fameprotobuf v2.0.2 #208, #215 (@dlr-cjs)
15
- - **Breaking**: Remove section `GeneralProperties.Output` in scenarios - any content there will be ignored #208 (@dlr-cjs)
16
- - **Breaking**: Set section `JavaPackages` in schema to be mandatory #208 (@dlr-cjs)
17
- - **Breaking**: Update header of protobuf files to "fameprotobufstreamfilev002 " - disable reading of old files #208, #214 (@dlr-cjs)
18
- - **Breaking**: Replace subparser from command-line argument `--time-merging` with a threefold argument #212 (@dlr-cjs)
19
- - **Breaking**: Attribute names "value", "values", and "metadata" are now disallowed as they are reserved for the Metadata implementation #217 (@dlr-cjs)
20
- - **Breaking**: Refactor package structure #137 (@dlr_fn, @dlr-cjs)
21
- - **Breaking**: Refactor PathResolver #219 (@dlr-cjs)
22
- - **Breaking**: Rename all Exceptions to Errors #114 (@dlr-cjs)
23
- - **Breaking**: Rename all `_KEY` words in packages `scenario` and `schema` removing their underscore in the beginning #222 (@dlr-cjs)
24
- - Use `Metadata` for `Agent` and `Contract` #209, #224 (@dlr-cjs)
25
- - Allow `DataItems` to be left out on new mandatory section `JavaPackges` #216 (@dlr-cjs)
26
- - Complete refactoring of loader.py to improve readability and testability #116, #117, #119, #219, #220 (@dlr-cjs)
27
-
28
- ### Added
29
- - Add StringSet writing to protobuf file #208 (@dlr-cjs)
30
- - Add `Metadata` to `Scenario` and 'Attribute', as well as schema elements `AgentType`, and `AttributeSpecs` #209, #217, #218, (@dlr-cjs, @dlr_fn)
31
- - Add file UPGRADING.md to describe actions necessary to deal with breaking changes #208 (@dlr-cjs)
32
-
33
- ### Removed
34
- - Drop class `Args` in `loader.py` #115 (@dlr-cjs)
35
-
36
- ## [2.3.1](https://gitlab.com/fame-framework/fame-io/-/tags/v2.3.1) - 2024-08-26
37
- ### Fixed
38
- - Fix ignored default values of `convert_results` for `merge-times` arguments #211 (@dlr-cjs, dlr_fn)
39
-
40
- ## [2.3.0](https://gitlab.com/fame-framework/fame-io/-/tags/v2.3.0) - 2024-08-12
41
- ### Added
42
- - New attribute type `string_set` #175 (@dlr_fn @dlr-cjs)
43
- - Add warning if a timeseries file has additional, non-empty columns #155 (@LeonardWilleke)
44
- - Ensure `CHANGELOG.md` is updated in automated testing pipeline #207 (@dlr_fn)
45
-
46
- ### Fixed
47
- - ConvertFameResults: Fix bug on `merge-times` when `--memory-saving` is active #201 (@dlr_fn @dlr-cjs)
48
-
49
- ## [2.2.0](https://gitlab.com/fame-framework/fame-io/-/tags/v2.2.0) - 2024-05-28
50
- ### Changed
51
- - New command line option `-enc --encoding` to change encoding when reading yaml-files #170 (@dlr-cjs)
52
- - Improve error message when timeseries is not found and is number string #178 (@dlr-cjs)
53
-
54
- ### Added
55
- - Add writing of FAME-Io and FAME-Protobuf versions to created input protobuf #192 (@dlr-cjs)
56
- - Add deprecation warning for section `GeneralProperties.Output` in scenario #203 (@dlr-cjs)
57
-
58
- ## [2.1.1](https://gitlab.com/fame-framework/fame-io/-/tags/v2.1.1) - 2024-05-28
59
- ### Fixed
60
- - ConvertFameResults: Fix crash on complex column conversion if Agent has no simple columns #204 (@dlr_fn @dlr-cjs)
61
-
62
- ## [2.1.0](https://gitlab.com/fame-framework/fame-io/-/tags/v2.1.0) - 2024-05-11
63
- ### Changed
64
- - Change format of auto-created timeseries from constant values #196 (@dlr-cjs)
65
- - Change default log level to "WARNING" #191 (@dlr_fn @dlr-cjs)
66
- - Adapt link-formatting in Changelog !155 (@dlr-cjs)
67
-
68
- ### Added
69
- - Read java package names from Schema and write to input.pb #198 (@dlr-cjs)
70
-
71
- ### Fixed
72
- - Fix docstrings in CLI `handle_args()` #190 (@dlr-cjs @dlr_fn)
73
- - Fix potential duplicates in logging #191 (@dlr_fn @dlr-cjs)
74
-
75
- ## [2.0.1](https://gitlab.com/fame-framework/fame-io/-/tags/v2.0.1) - 2024-04-05
76
- ### Fixed
77
- - Fix potential missing columns when memory-saving-mode `-m` is enabled #194 (@dlr_fn @dlr-cjs)
78
-
79
- ### Remove
80
- - Remove convert results option `-cc MERGE` #194 (@dlr_fn @dlr-cjs)
81
-
82
- ## [2.0.0](https://gitlab.com/fame-framework/fame-io/-/tags/v2.0.0) - 2024-04-03
83
- ### Changed
84
- - **Breaking**: Removed support for `python==3.8` #163 (@dlr-cjs @dlr_fn)
85
- - **Breaking**: Signature of `run` functions in `make_config.py` and `convert_results.py` changed: the input file is now read from the configuration dictionary #163 (@dlr-cjs @dlr_fn)
86
- - **Breaking**: Created protobuf files now have a header section -> minimum required FAME-Core version is now 1.6.0 #183 (@dlr-cjs @dlr_fn)
87
- - Raise error for NaN float values in scenario and time series #165 (@dlr-cjs @dlr_fn)
88
- - Enhance Schema to include metadata and output fields #156 (@dlr-cjs @litotes18 @dlr_fn)
89
- - Enhance Contracts to include metadata #158 (@dlr-cjs @litotes18 @dlr_fn)
90
- - Enhance Agents to include metadata #159 (@dlr-cjs @litotes18 @dlr_fn)
91
- - Improve general handling of CLI arguments #163 (@dlr_fn @dlr-cjs)
92
- - Ensure `fameio` logger is used consistently !126 (@dlr-cjs @dlr_fn)
93
- - Enhanced error message if mandatory attribute is not defined by logging `full_name` #177 (@dlr_fn)
94
- - Switch to pyproject.toml #173 (@dlr-cjs)
95
- - Restrict supported pandas versions #171 (@dlr-cjs)
96
- - Enable to specify defaults for MERGE_TIME parameters #179 (@dlr-cjs)
97
- - Conserve order of keys in YAML files #186 (@dlr-cjs @dlr_fn)
98
- - Update to `fameprotobuf==1.4.0` #189 (@dlr-cjs @dlr_fn)
99
- - Update `CHANGELOG.md` to conform with Common Changelog format #172 (@dlr-cjs @dlr_fn)
100
-
101
- ### Added
102
- - Write Schema and Metadata of Contracts and Agents to protobuf file #160 (@dlr-cjs @litotes18 @dlr_fn)
103
- - Add option to recover input data `--input-recovery`/`--no-input-recovery` #163 (@litotes18 @dlr_fn @dlr-cjs)
104
- - Add pipeline tests for all major Python versions >= 3.8 #173 (@dlr-cjs)
105
- - Read all input from protobuf file #162 (@dlr-cjs @litotes18 @dlr_fn)
106
- - Write all input from protobuf to disk #163 (@litotes18 @dlr_fn @dlr-cjs)
107
- - Add header section to input protobuf enabling recovering of inputs from protobuf #183 (@dlr-cjs @dlr_fn)
108
- - Add pipeline tests for all major Python versions >= 3.8, < 3.12 #173 (@dlr-cjs)
109
- - Enable comments in timeseries using '#' #184 (@dlr-cjs)
110
- - Raise Warning if Agent has no Contracts attributed #187 (@dlr_fn)
111
- - Add JOSS Paper in folder paper/ #139 (@dlr-cjs @litotes18 @dlr_fn)
112
- - Add `CONTRIBUTING.md` #102 (@dlr-cjs @dlr_fn)
113
- - Add `Citation.cff` #166 (@dlr-cjs)
114
-
115
- ### Removed
116
- - Remove deprecated protobuf test !127 (@dlr-cjs @dlr_fn)
117
-
118
- ### Fixed
119
- - Fix deprecated arguments in pandas groupby !129 (@maurerle)
120
- - Fix breaking tests in Pytest 8.0 #176 (@dlr-cjs)
121
- - Fix PyTests for Python 3.12 #182 (@dlr_fn)
122
-
123
- ## [1.8.1](https://gitlab.com/fame-framework/fame-io/-/tags/v1.8.1) - 2023-05-04
124
- ### Fixed
125
- - Fix fail of `ConvertFameResults` when `merge-times` was not specified
126
-
127
- ## [1.8.0](https://gitlab.com/fame-framework/fame-io/-/tags/v1.8) - 2023-04-14
128
- ### Changed
129
- - Update repository to be compliant to `REUSE` standard
130
- - Accept custom `date_format` (default: `"%Y-%m-%d_%H:%M:%S"`) for `FameTime.convert_fame_time_step_to_datetime()`
131
- - Parse command-line arguments case-insensitive for arguments with predefined options
132
- - Handle potentially missing cli arguments in `cli.update_default_config` for `makeFameRunConfig` and `convertFameResults` in a robust way.
133
-
134
- ### Added
135
- - **Breaking**: Add option to define conversion of time steps to given format (default=`UTC`) by `-t/--time {UTC, INT, FAME}` for `convertFameResults`
136
- - Add option to merge time steps in results with `convertFameResults`
137
- - Add pre-commit hooks enforcing high coding standards and reducing CI runner minutes during development
138
-
139
- ## [1.7.0](https://gitlab.com/fame-framework/fame-io/-/tags/v1.7) - 2023-02-20
140
- ### Added
141
- - Support dictionaries in Schema for field `Products` in elements of `AgentTypes`
142
- - Support dictionaries in Schema for field `Values` in elements of `Attributes`
143
-
144
- ### Changed
145
- - Use `Pathlib` for path handling
146
- - Improve error message when no valid `YAML` file is specified for `makeFameRunConfig`
147
-
148
- ### Remove
149
- - **Breaking**: `Products` in Schema no longer support single non-list values
150
-
151
- ## [1.6.3](https://gitlab.com/fame-framework/fame-io/-/tags/v1.6.3) - 2022-11-04
152
- ### Added
153
- - Allow parsing `Help` for `Attributes` in `schema`
154
-
155
- ## [1.6.1](https://gitlab.com/fame-framework/fame-io/-/tags/v1.6.1) - 2022-11-02
156
- ### Changed
157
- - Use existing logger if already set up to avoid duplicates when `fameio` is used as dependency in third party workflows
158
-
159
- ## [1.6.0](https://gitlab.com/fame-framework/fame-io/-/tags/v1.6) - 2022-07-08
160
- ### Added
161
- - Add option to enable memory saving mode using the flag `-m` or `--memory-saving`
162
- - Add options to deal with complex indexed output columns using the flag `-cc` or `--complex-column` with
163
- options `IGNORE`, `MERGE` or `SPLIT`
164
-
165
- ### Changed
166
- - **Breaking**: Update requirement to `python>=3.8`
167
- - **Breaking**: Update requirement to `fameprotobuf==v1.2`
168
- - Enable parsing of protobuf output files > 2 GB
169
- - Reduce memory profile for `convertFameResults`
170
- - Extract `source` scripts relevant for `convertFameResults` to be hosted in subpackage `results`
171
-
172
- ## [1.5.4](https://gitlab.com/fame-framework/fame-io/-/tags/v1.5.4) - 2022-06-01
173
- ### Changed
174
- - Limit `protobuf` dependency to `>=3.19,<4.0`
175
-
176
- ## [1.5.3](https://gitlab.com/fame-framework/fame-io/-/tags/v1.5.3) - 2022-03-18
177
- ### Changed
178
- - Harmonize interface with `famegui`
179
- - Return `None` on failure of `resolve_series_file_path` instead of raising a `FileNotFoundError`
180
-
181
- ## [1.5.2](https://gitlab.com/fame-framework/fame-io/-/tags/v1.5.2) - 2022-03-10
182
- ### Changed
183
- - Allow interfacing of `famegui` with `scenario` (e.g. serialization, error handling)
184
- - Move `scenario` validation to `validator.py`
185
- - Extract `path_resolver.py`
186
- - Increase test coverage by incorporating [AMIRIS examples](https://gitlab.com/dlr-ve/esy/amiris/examples)
187
-
188
- ## [1.5.1](https://gitlab.com/fame-framework/fame-io/-/tags/v1.5.1) - 2022-01-10
189
- ### Added
190
- - Provide documentation on installation using `pipx`
191
- - Add optional argument `-se`/`--singleexport` for exporting individual files for each agent
192
- - Add compatibility hook for `famegui` integration
193
-
194
- ### Changed
195
- - Refactor `scenario.py`
196
- - Ensure code formatting using `black`
197
-
198
- ## [1.5.0](https://gitlab.com/fame-framework/fame-io/-/tags/v1.5) - 2021-06-30
199
- ### Added
200
- - Support specifying an output folder in command line interface of `convert_results.py`
201
-
202
- ### Changed
203
- - Update to latest protobuf package
204
- - Refactor code
205
-
206
- ## [1.4.0](https://gitlab.com/fame-framework/fame-io/-/tags/v1.4) - 2021-06-10
207
- ### Added
208
- - Enable "Default" values for Attributes - these are used in case a mandatory attribute is not specified in the Scenario
209
- - Allow "List" Attributes with multiple values
210
- - Add new AttributeTypes "Long", "String" and "TimeStamp"
211
- - Add compact definition of multiple contracts: enable lists for senders and receivers
212
-
213
- ### Changed
214
- - **Breaking**: Update requirement to `fameprotobuf==1.1.4`
215
- - Refactor `make_config.py`: split into several classes and packages, improved exception handling
216
- - Switch to pytest and improved test coverage
217
- - Make keywords in Schema and Scenario case-insensitive
218
- - Improve validations for Schema and Scenario
219
-
220
- ### Fixed
221
- - Fixed minor bugs
222
-
223
- ## [1.3.0](https://gitlab.com/fame-framework/fame-io/-/tags/v1.3) - 2021-04-13
224
- ### Added
225
- - Enable `Attributes` in agents (formerly known as `Fields`) to be structured in complex tree-like data dictionaries
226
- - Allow contracts to support `Attributes` of type `int`, `float`, `enum` or `dict`
227
- - Add coverage report badge
228
- - Add `CHANGELOG.md`
229
-
230
- ### Changed
231
- - **Breaking**: Use new format `DataStorage` for input and output protobuf files allowing `FAME-Core` input and output to be written to the same file (requires `FAME-Core > 1.0`)
232
- - **Breaking**: Update requirement to `fameprotobuf==1.1.2`
233
- - Enable automatic detection of `TimeStamps` by string format and conversion to int64
234
- - Raise proper error when file can not be loaded triggered by `!include` command
235
- - Raise critical error when trying to convert empty protobuf output file
236
- - Check if `product` in `contract` is valid according to `schema.yaml`
237
-
238
- ## [1.2.4](https://gitlab.com/fame-framework/fame-io/-/tags/v1.2.4) - 2021-02-26
239
- ### Changed
240
- - Move `is_compatible` function to class `AttributeType`
241
-
242
- ## [1.2.3](https://gitlab.com/fame-framework/fame-io/-/tags/v1.2.3) - 2021-02-24
243
- ### Fixed
244
- - Fix file prefix `IGNORE_` (used when loading a set of contract files with the !include argument) is now working consistently
245
-
246
- ## [1.2.2](https://gitlab.com/fame-framework/fame-io/-/tags/v1.2.2) - 2021-02-18
247
- ### Changed
248
- - **Breaking**: Rename `fieldtype` to `attributetype` in `schema.yaml`
249
- - Derive protobuf imports from `fameprotobuf` package
250
- - Improve handling of cases for keys in `scenario.yaml`
251
- - Improve handling of time stamp strings
252
-
253
- ## [1.2.1](https://gitlab.com/fame-framework/fame-io/-/tags/v1.2.1) - 2021-02-10
254
- ### Changed
255
- - Improve key handling for contracts which are now case-insensitive
256
-
257
- ## [1.2.0](https://gitlab.com/fame-framework/fame-io/-/tags/v1.2) - 2021-02-04
258
- ### Added
259
- - Add `!include` command to yaml loading to allow integrating additional yaml files
260
-
261
- ### Changed
262
- - **Breaking**: Rename package to `fameio`
263
- - Improve executables
264
- - Restructure logging
265
- - Improve documentation
266
-
267
- ### Fixed
268
- - Fix bugs
269
-
270
- ## [1.1.0](https://gitlab.com/fame-framework/fame-io/-/tags/v1.1) - 2020-12-09
271
- ### Added
272
- - Package to PyPI
273
- - Provide executables for calling `makeFameRunConfig` and `convertFameResults`
274
-
275
- ### Changed
276
- - Improve documentation
277
-
278
- ## [1.0.0](https://gitlab.com/fame-framework/fame-io/-/tags/v1.0) - 2020-11-17
279
- _Initial release of `famepy`_
@@ -1,56 +0,0 @@
1
- CHANGELOG.md,sha256=2RFfQpBVhdLZ78_XZu2_B_sLe4RFb-iL_aH1PfrRPLY,14111
2
- fameio/__init__.py,sha256=LiE7kRXW0pMIB4hTPC0T_ppGz9O0swd0Ca1-b99hOMc,229
3
- fameio/cli/__init__.py,sha256=xAS0gRfzq1qepCW6PjIozRC6t3DOxzdNvHU9beFOGHU,167
4
- fameio/cli/convert_results.py,sha256=-nAAuO_CznggZnZHeGctP_uXcQsQGjTDDZmHAqlBMJQ,3438
5
- fameio/cli/make_config.py,sha256=Dbn_ITlhpumc-bK9ONKZyGnyYLXsc8YIWQN9OHLBHe4,2712
6
- fameio/cli/options.py,sha256=2XNwCAloiy_lC77C7LEngMvvT7rVmzASeE_JxQlpHak,1257
7
- fameio/cli/parser.py,sha256=fR28uzjf6MV3do4AefrXbRu2m4-x0bR-Xn-1Di1e0Lk,8391
8
- fameio/input/__init__.py,sha256=mDpz4hKZqpzrxtuvwK-eZl-zwHhegRbiH5ew1LpjaAg,550
9
- fameio/input/loader/__init__.py,sha256=ShZq2zBGz3-423Fd6DLCi1wAtD2JDgFiaknJ24lGToU,2659
10
- fameio/input/loader/controller.py,sha256=Ph7QvGwbJJ4MNb21nPiYJNTdjpPcRFms95Fd-evzGD0,5800
11
- fameio/input/loader/loader.py,sha256=uVCUXN2FqtO058zxDBQth2rabP8BPtInMZnAcI7SX8Q,5060
12
- fameio/input/metadata.py,sha256=l28BPnwjb62RRt-tBJ-HVmOJVO1QIRlKdMx-gjoP_mw,5957
13
- fameio/input/resolver.py,sha256=86APkFnupWSJNAaX4RP_SOYNv5W3WUwV_I6Iptkur_Q,1917
14
- fameio/input/scenario/__init__.py,sha256=azglGZTK39jpkDOmeVAhiLH9zIsUx2SZ_umQIlJiq6Q,322
15
- fameio/input/scenario/agent.py,sha256=Zl83x3U1f4nVv1gbCOhjQ911u-GwWXoWR5_QW0cRHtM,4377
16
- fameio/input/scenario/attribute.py,sha256=-u-dCzs8lUhSEc98hDot28nl6BLA7sEzAg9GzmNci4k,9635
17
- fameio/input/scenario/contract.py,sha256=D6iy-oVNwIqQxeZQ3rITERwIgFRrhzYHRysygn-ceDk,9046
18
- fameio/input/scenario/exception.py,sha256=zavHELqzpIJvb_4GhskYQyi2u5Y6LppwWQt-yGecMQY,1434
19
- fameio/input/scenario/fameiofactory.py,sha256=_8R3q_e5lHGd75DDbgJvTX6PJNn0i6nZSnW4DyGgdOA,1558
20
- fameio/input/scenario/generalproperties.py,sha256=gTSLS0bgoZYAMDYhaFTGcJxipgik9AntSPihQBIcX6k,3504
21
- fameio/input/scenario/scenario.py,sha256=f9gIV_FdtS52L_nWdstwSoXlN8gL7ovxGPAaWpEzOjc,4608
22
- fameio/input/scenario/stringset.py,sha256=ORW0_4M9CGtB5NQAzQhzZJliHmyW0yQjG_tzMjnRxUw,1814
23
- fameio/input/schema/__init__.py,sha256=V1m0Cx97lNeZwaQBFo-a5WMbohdsCwDfvmjtxD2vaBo,271
24
- fameio/input/schema/agenttype.py,sha256=NLcdIuMKjFsqhHG9zisYaHDnP7eDOctHWG1yEH9_ugg,5149
25
- fameio/input/schema/attribute.py,sha256=4nH-lA0Wh7pe8ZPOWXjuVkPa6Jl5cYQnxU5_e4Y54L0,11369
26
- fameio/input/schema/java_packages.py,sha256=jkwEgR3mOGky-cvSgR3pGQEJ84hXN5NZS_oyoeYt-9g,2845
27
- fameio/input/schema/schema.py,sha256=-Hm7r9Hka8NDnNZLe9GCeaULcBgvvhHQhEYjxQ4VzTg,3039
28
- fameio/input/validator.py,sha256=-X0aEEzKj6s5laxXhDzGcwAa0f4Ssp5waLmuriO-3u0,18359
29
- fameio/input/writer.py,sha256=TyFkS3KKdAaXiMq-yLDriwOcy65-P5ZeEtzOtUM1y38,12810
30
- fameio/logs.py,sha256=JxT4JkyKCxxB9QybGOhAcncCexmoIx6_dkGczjG-h8A,3992
31
- fameio/output/__init__.py,sha256=IQm0MNOXkhBexiMXBoNZDK5xHUYgazH7oXm-lc0Vm04,109
32
- fameio/output/agent_type.py,sha256=6niFUKOhxUdGw98NUVNtIM543hAQaCkyy7hacxlc9dU,4328
33
- fameio/output/conversion.py,sha256=2DQ6T2AuU0iDrKsUQ1HcM1TO_prqlENtq2n28wPKwcU,3991
34
- fameio/output/csv_writer.py,sha256=hU3TM_c8bltY_j_6NZInNB7fyLsNZsYsOrfVvDNYwwE,5117
35
- fameio/output/data_transformer.py,sha256=2fBXQ8byS3Lhsmocr2AB5B_I9NmDQrwzIViUtQeKYYg,5473
36
- fameio/output/input_dao.py,sha256=aTNdRM_uaVXB8X7EkWZ3eEd1IMH93Bfx8jCpFvhlBVE,6983
37
- fameio/output/output_dao.py,sha256=f7xnsjY80E6OolHlFDzWkJG2J86wxXJJ2nRRmgUnVVc,4085
38
- fameio/output/reader.py,sha256=wiTCkmETtcZR_ybb4CxnfyTtBF74bTNp2w96fFD8Qo0,5097
39
- fameio/output/yaml_writer.py,sha256=YIUKQB10BnDF9LghLf5bD23ryUI340lGxslB5j88_dk,805
40
- fameio/scripts/__init__.py,sha256=Owg46sNUIkq7qLJpfa75Cuhjtl3HGkR6l1-LEaNE54A,727
41
- fameio/scripts/__init__.py.license,sha256=2-OqCNxP4504xY2XQqseYypJi1_Qx4xJSzO3t7c3ACM,107
42
- fameio/scripts/convert_results.py,sha256=Olrw4l9nGzstgdVyhJJthHCKyaTubVXSlM26729Sjmk,4173
43
- fameio/scripts/convert_results.py.license,sha256=2-OqCNxP4504xY2XQqseYypJi1_Qx4xJSzO3t7c3ACM,107
44
- fameio/scripts/make_config.py,sha256=LvwXbBlaGdKC25BRlk4LJDEwvZzxzCzYyVewtyHhIMM,1351
45
- fameio/scripts/make_config.py.license,sha256=2-OqCNxP4504xY2XQqseYypJi1_Qx4xJSzO3t7c3ACM,107
46
- fameio/series.py,sha256=FhORd6MmBnAzCC56Nb-REhadPd-d5BxBpRjkOJ-yEaA,9107
47
- fameio/time.py,sha256=iiCVpEmBSxHgKft_X-E_D-dpOT-L2Y_xN-6pVFtJhDQ,6949
48
- fameio/tools.py,sha256=8Ia-J-mgjf1NCXMvjLDj10hDwEKzp6jS6eq6z8W005w,1056
49
- fameio-3.1.0.dist-info/entry_points.txt,sha256=jvQVfwJjZXPWQjJlhj1Dt6PTeblryTc1GxjKeK90twI,123
50
- fameio-3.1.0.dist-info/LICENSE.txt,sha256=eGHBZnhr9CWjE95SWjRfmhtK1lvVn5X4Fpf3KrrAZDg,10391
51
- fameio-3.1.0.dist-info/LICENSES/Apache-2.0.txt,sha256=eGHBZnhr9CWjE95SWjRfmhtK1lvVn5X4Fpf3KrrAZDg,10391
52
- fameio-3.1.0.dist-info/LICENSES/CC-BY-4.0.txt,sha256=y9WvMYKGt0ZW8UXf9QkZB8wj1tjJrQngKR7CSXeSukE,19051
53
- fameio-3.1.0.dist-info/LICENSES/CC0-1.0.txt,sha256=9Ofzc7m5lpUDN-jUGkopOcLZC3cl6brz1QhKInF60yg,7169
54
- fameio-3.1.0.dist-info/METADATA,sha256=r5SZ8p7ee6a3f6wEUCWZOUdsjdF3yFZb4G_X-cQRVrk,38857
55
- fameio-3.1.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
56
- fameio-3.1.0.dist-info/RECORD,,