文件名称:pyhocon:适用于Python的HOCON解析器
文件大小:63KB
文件格式:ZIP
更新时间:2024-06-01 19:24:47
python parser configuration hocon Python
pyhocon 适用于Python的HOCON解析器 眼镜 安装 它在pypi上可用,因此您可以按以下方式安装它: $ pip install pyhocon 用法 解析后的配置可以看作是嵌套的字典(具有自动推断的类型),可以使用普通的字典getter(例如conf['a']['b']或使用conf['a.b']等路径来访问值) conf['a.b'] ),或通过这些方法get , get_int (如果它不是一个int),抛出异常get_string , get_list , get_float , get_bool , get_config 。 from pyhocon import ConfigFactory conf = ConfigFactory . parse_file ( 'samples/database.conf' ) host = conf . get_strin
【文件预览】:
pyhocon-master
----MANIFEST.in(179B)
----pyhocon()
--------exceptions.py(352B)
--------config_tree.py(22KB)
--------config_parser.py(35KB)
--------__init__.py(445B)
--------converter.py(11KB)
--------tool.py(2KB)
----.idea()
--------vcs.xml(180B)
----.travis.yml(313B)
----tox.ini(335B)
----LICENSE(11KB)
----setup.cfg(199B)
----samples()
--------database.conf(1012B)
--------animals.conf(98B)
--------chinese_food.conf(69B)
--------food.conf(68B)
--------all_bars.conf(38B)
--------aws.conf(231B)
--------animals.d()
--------bars.d()
--------all_animals.conf(43B)
----setup.py(2KB)
----README.md(15KB)
----docs()
--------source()
--------make.bat(7KB)
--------Makefile(7KB)
----tests()
--------test_tool.py(6KB)
--------test_config_tree.py(12KB)
--------test_converter.py(5KB)
--------test_config_parser.py(68KB)
----.gitignore(675B)
----CHANGELOG.md(7KB)