| Safe Haskell | None |
|---|
Data.Ini
Description
Clean configuration files in the INI format.
Format rules and recommendations:
- The
:syntax is space-sensitive. - Keys are case-sensitive.
- Lower-case is recommended.
- Values can be empty.
- Keys cannot contain
:,=,[, or]. - Comments are not supported at this time.
An example configuration file:
[SERVER] port=6667 hostname=localhost [AUTH] user: hello pass: world salt:
Parsing example:
>>>parseIni "[SERVER]\nport: 6667\nhostname: localhost"Right (Ini {unIni = fromList [("SERVER",fromList [("hostname","localhost"),("port","6667")])]})
Reading
Writing
writeIniFile :: FilePath -> Ini -> IO ()Source
Print the INI config to a file.
Types
An INI configuration.
Parsers
sectionParser :: Parser (Text, HashMap Text Text)Source
A section. Format: [foo]. Conventionally, [FOO].
keyValueParser :: Parser (Text, Text)Source
A key-value pair. Either foo: bar or foo=bar.