https://github.com/susji/tinyini
Bare-bones Go library for reading INI-like configuration files
https://github.com/susji/tinyini
configuration-parser go golang ini ini-file ini-files ini-parser
Last synced: 9 months ago
JSON representation
Bare-bones Go library for reading INI-like configuration files
- Host: GitHub
- URL: https://github.com/susji/tinyini
- Owner: susji
- License: apache-2.0
- Created: 2022-01-01T13:17:57.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-02T09:10:48.000Z (over 2 years ago)
- Last Synced: 2025-04-02T04:25:23.478Z (about 1 year ago)
- Topics: configuration-parser, go, golang, ini, ini-file, ini-files, ini-parser
- Language: Go
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tinyini
`tinyini` is a minimalistic library for parsing INI-like configuration
files.
[](https://github.com/susji/tinyini/actions/workflows/go.yml)
[](https://pkg.go.dev/github.com/susji/tinyini)
## example configuration file
``` ini
globalkey = globalvalue
[section]
key = first-value
key = second-value
empty=
anotherkey = " has whitespace "
[änöther-section] ; this is a comment and ignored
key = different value
```