A minimal Clojure library designed to read ini files. It uses the
number sign #
as comment character and allows multi-line values.
iniconfig artifacts are released to Clojars.
If you are using Leiningen, add the following
to your project.clj
's dependencies:
[com.brainbot/iniconfig "0.2.0"]
iniconfig has only one namespace com.brainbot.iniconfig
with two
public functions:
=> (require '[com.brainbot.iniconfig :as iniconfig])
read-ini [in]
will read an ini file:
=> (spit "test.ini" "[main]\nmsg = foo\n bar\n[email]\nfrom = ralf@systemexit.de")
=> (iniconfig/read-ini "test.ini")
{"email" {"from" "ralf@systemexit.de"}, "main" {"msg" "foo\n bar"}}
read-ini
tries to coerce it's in
argument with
clojure.java.io/reader
. Please consult the io/reader
documentaton
for further details.
As an example it's also possible to load an ini file via HTTP:
=> (iniconfig/read-ini "https://raw.github.com/brainbot-com/clj-iniconfig/master/example.ini")
{"testenv" {"sitepackages" "False", "commands" "py.test []", "deps" "pytest>=2.3\n\t webtest # this is part of the value, not a comment\n\t beautifulsoup4"}, "tox" {"envlist" "py25,py26,py27,py32,py33"}}
read-ini-string [s]
will parse an ini file supplied as string:
=> (iniconfig/read-ini-string "[main]\nmsg = foo\n bar\n[email]\nfrom = ralf@systemexit.de")
{"email" {"from" "ralf@systemexit.de"}, "main" {"msg" "foo\n bar"}}
Both functions set the metadata field :source
, which might be useful
for error reporting:
=> (meta (iniconfig/read-ini "test.ini"))
{:source "test.ini"}
=> (meta (iniconfig/read-ini-string "[main]\nmsg = foo\n bar\n[email]\nfrom = ralf@systemexit.de"))
{:source string}
iniconfig uses the following syntax for ini files:
The number sign #
is used as a comment character. Lines starting
with #
or whitespace followed by #
are interpreted as comments.
Lines starting with [
, followed by an identifier, followed by ]
start a new section. A comment may follow on the same line.
Lines starting with an identifier, followed by an equal sign =
define a key with it's accompanying value.
Lines starting with whitespace, followed by a non-whitespace
character that is not the number sign #
, continue the previous
value declaration, i.e. they can be used for multi-line values.
Keys must be unique inside a section. Section identifiers must also be unique.
[tox] # a comment after section declaration is fine
envlist = py25,py26,py27,py32,py33
[testenv]
# deps is a multi-line value
deps=pytest>=2.3
webtest # this is part of the value, not a comment
# this is a comment
beautifulsoup4
commands=py.test []
sitepackages=False
It's probably best to put comments on a dedicated line with #
in the
first column.
Copyright © 2013 brainbot technologies AG
Distributed under the Eclipse Public License, the same as Clojure.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close