maci.loaddict
loads maci data from a file as dict
loading data from a file
Loads any plain text file that contains formatted maci data that follows the maci language syntax (See language), and returns the attribute names and data as a dictionary representing them as key/value pairs.
Basic Example of loading a file using default positional parameter
data = maci.loaddict('my.data')
In this example, we simply load maci formatted data from a file using the loaddict function and pass a string of the filepath to the file as the first argument to the function, and assign the returned dictionary object data to a variable.
Example data inside the file
mydata1 = 'data1'
mydata2 = 2
Access the data by their individual and respective key names like you normally would on a dictionary in python.
Example accessing and viewing the data
data['mydata1']
data['mydata2']
print(data['mydata1'])
print(data['mydata2'])
parameters & arguments
Describes all parameter functionality and accepted data types
Last updated