Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Latest commit

 

History

History
executable file
·
30 lines (21 loc) · 887 Bytes

File metadata and controls

executable file
·
30 lines (21 loc) · 887 Bytes

DataSpec

Input data specification for this desktop

Properties

Name Type Description Notes
path str Path to the folder containing the data for this job

Example

from epiccore.models.data_spec import DataSpec

# TODO update the JSON string below
json = "{}"
# create an instance of DataSpec from a JSON string
data_spec_instance = DataSpec.from_json(json)
# print the JSON string representation of the object
print DataSpec.to_json()

# convert the object into a dict
data_spec_dict = data_spec_instance.to_dict()
# create an instance of DataSpec from a dict
data_spec_form_dict = data_spec.from_dict(data_spec_dict)

[Back to Model list] [Back to API list] [Back to README]