You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where each list represents the selected elements in a configuration.
4. Configurations List Reader: This reads a list of configurations in a txt file in the previous format.
Describe alternatives you've considered
All the transformations are developed with no dependencies with other plugins, so they can be incorporated to flamapy_fw safely, if desired.
The CSV reader provides a configuration parameter to store only the selected elements.
These solutions are the advantages that can include in the same file information about each configuration such as "attributes configurations" (e.g., Price of the configuration, Performance of the configuration,...).
In the case of the CSV solution, each attribute can be easily added as a new column. In the text file, attributes can also be incorporated as column (in a CSV like format), or as lists.
I just have also available a readers/writers for attributes in configurations. Let me know if you are interested in these other attributes readers/writers. See ConfigurationsAttributesReader
The text was updated successfully, but these errors were encountered:
@jmhorcas how this differs from the currently available csvreader in the core? If the configurations are not fm configurations (the attributes one are). In other words they are just key value pairs, they belong to the core within the configuration metamodel. Otherwise, they belong to the fm metamodel.
The different with the current CSVReader in the core is that it only reads one configuration per file. Thus, if you have 50 configurations you need 50 files.
The readers I propose read a sample of configurations from a single file.
All the readers/writers I propose (including the attributes reader which is based on key-value pairs) are based on string "str" or "Any" types.
Thus, the configuration are not FM configurations, nor the attributes.
Is your feature request related to a problem? Please describe.
Need of reading and writing sample (lists) of configurations in a file.
Describe the solution you'd like
I provide two different readers and two different writers available here:
Configurations CSV Reader: This reads a list of configurations from a CSV file in the previous format.
Configurations List Writer: This writes a list of configurations to a txt file in the folllowing format:
where each list represents the selected elements in a configuration.
4. Configurations List Reader: This reads a list of configurations in a txt file in the previous format.
Describe alternatives you've considered
Additional context
In the case of the CSV solution, each attribute can be easily added as a new column. In the text file, attributes can also be incorporated as column (in a CSV like format), or as lists.
I just have also available a readers/writers for attributes in configurations. Let me know if you are interested in these other attributes readers/writers. See ConfigurationsAttributesReader
The text was updated successfully, but these errors were encountered: