8000 GitHub - bendmorris/hxconf: Haxe INI-style sectioned config file parser
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

bendmorris/hxconf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This library is for reading sectioned configuration files, similar to INI files or those parsed by Python's ConfigParser.

Using hxconf

Example config file:

[section1]
foo=bar
blah=123

[section2]
foo=abc
def=ghi

Parsing and using the configuration:

var conf = new hxconf.ConfigFile();
conf.read(File.getContent("my_file.cfg"));
trace(conf.get("section1", "foo"));      // traces "bar"

About

Haxe INI-style sectioned config file parser

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0