readconf 0.2.0
Singleton for simple reading of the configuration file
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
readconf
Singleton for reading the configuration file required for your program.
What can do
- Separation of parameter and value by separators
=
and=>
- Commenting on lines using special characters
;
,#
,//
,/*
- Support for sections for describing parameter blocks (sections are set by the name in
[]
) - Support for spaces and tabs for visual separation
Quick start
The settings.conf
file (see the tests):
Read settings.conf
file:
import readconf;
import std.stdio;
void main()
{
rc.read("./settings.conf");
foreach (key, param; rc.sn.keys())
writefln("%s => %s", key, param);
writeln(rc.sn.key("value1"));
foreach (key, param; rc.sn("part2").keys())
writefln("%s => %s", key, param);
writeln(rc.sn("part2").key("value1"));
}
Result:
value1 => text without quotes
value2 => Yes!
value3 => value in apostrophes
value4 => 1000
value5 => 0.000
value7 => //path
value8 => "Hey!"
text without quotes
value1 => this value will be in the new section
value3 => good value!
this value will be in the new section
Dub
Add a dependency on "readconf": "~>0.2.0"
- Registered by Alexander Zhirov
- 0.2.0 released a year ago
- AlexanderZhirov/readconf
- git.zhirov.kz/dlang/readconf.git
- GPL-2.0
- © Alexander Zhirov, 2023
- Authors:
- Dependencies:
- singlog
- Versions:
-
0.4.1 2024-Feb-09 0.4.0 2023-Jun-07 0.3.1 2023-Apr-29 0.3.0 2023-Mar-30 0.2.0 2023-Mar-26 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
1 downloads this month
-
57 downloads total
-
- Score:
- 0.4
- Short URL:
- readconf.dub.pm