Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/oleander/ini


https://github.com/oleander/ini

Last synced: 4 days ago
JSON representation

Awesome Lists containing this project

README

        

# Swift INI Parser

## Usage

// INI file looking like this;
// [Header]
// Key=Value

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