maci.inidump
dumps data to a file as ini
dumping a file
Dumps ConfigParser data to a file formatted as INI. Nothing is returned. Creates a new or overwrites an existing file by default (See append parameter to change mode).
Basic Example of dumping data to a file using default positional parameters
In this example, we simply dump data to a file using the inidump function and pass a string of the filepath to the file as the first argument to the function, then pass the data as the second argument to the function.
To learn more about building out your ini data in code, see: inibuildauto inibuildmanual More information on using ConfigParser data: Youtube Video Search: https://www.youtube.com/results?search_query=python+configparser Documentation: https://docs.python.org/3/library/configparser.html
parameters & arguments
Describes all parameter functionality and accepted data types
This function uses the native configparser library shipped with the python standard library for its underlying functionality. For more information on the configparser library, visit: https://docs.python.org/3/library/configparser.html
Last updated