Skip to content

Bouke/INI

Repository files navigation

Swift INI Parser

Build Status Quality Gate Status

Usage

INI file looking like this:

[Header]
Key=Value
; some comment

Parse it like this:

let config = try parseINI(filename: "config.ini")
print(config["Header"]?["Key"]) // prints Optional("Value")