We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create an INI parser
Can get inspired by configparser
LoadFromString
LoadFromFile
GetSectionNames
GetSections
{ section_name: {key1: val1, key2, val2} ...}
Get(section_name, key)
key
section_name
Set(section_name, key, value)
value
ToString
SaveToFile
=
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Create an INI parser
expected API/methods on the parser
Can get inspired by configparser
LoadFromString
LoadFromFile
GetSectionNames
list of all section namesGetSections
serialize convert into a dictionary/map{ section_name: {key1: val1, key2, val2} ...}
Get(section_name, key)
gets the value of keykey
in sectionsection_name
Set(section_name, key, value)
sets akey
in sectionsection_name
to valuevalue
ToString
SaveToFile
deliverables
remarks
=
The text was updated successfully, but these errors were encountered: