Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sasbury/mini

A golang package for parsing ini-style configuration files
https://github.com/sasbury/mini

Last synced: 10 days ago
JSON representation

A golang package for parsing ini-style configuration files

Awesome Lists containing this project

README

        

Mini
================

[![Build Status](https://travis-ci.org/sasbury/mini.svg?branch=master)](https://travis-ci.org/sasbury/mini) [![GoDoc](https://godoc.org/github.com/sasbury/mini?status.svg)](https://godoc.org/github.com/sasbury/mini)

Mini is a simple [ini configuration file](http://en.wikipedia.org/wiki/INI_file) parser.

The ini syntax supported includes:

* The standard name=value
* Comments on new lines starting with # or ;
* Blank lines
* Sections labelled with [sectionname]
* Split sections, using the same section in more than one place
* Encoded strings, strings containing \n, \t, etc...
* Array values using repeated keys named in the form key[]=value
* Global key/value pairs that appear before the first section

Repeated keys, that aren't array keys, replace their previous value.

To use simply:

% go get github.com/sasbury/mini