Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oleander/ini
https://github.com/oleander/ini
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/oleander/ini
- Owner: oleander
- License: mit
- Created: 2017-06-05T19:17:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-05T21:00:30.000Z (over 7 years ago)
- Last Synced: 2024-11-20T20:12:03.967Z (2 months ago)
- Language: Swift
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Swift INI Parser
## Usage
// INI file looking like this;
// [Header]
// Key=Valuelet config = try parseINI(filename: "config.ini")
print(config["Header"]?["Key"]) // prints Optional("Value")