A basic config parser language based off the Python ConfigParser module.
JavaScript Configuration file(.ini) content parser, similar to python ConfigParser without I/O operations. Only one JavaScript file without any other dependencies. Compatible with NodeJS, TypeScript and Browsers.
Config parser module for gemini
A configparser based on nodejs
Apache Cordova tools and platforms shared routines
Safe parser of JSON and CSON for config like ConfigParser of python
A TypeScript library for parsing configuration files
A parsing library for CircleCI configuration files, powered by the CircleCI Config SDK
File watcher for TypeScript projects
Mendel configuration parser
Convert nginx conf strings to JSON and back!
Common plugin for testplane and hermione which is intended to aggregate the results of tests running
This is a simple config parser that can read and write to a config file.
Parses the dimer.json file
Plugin for hermione to easily migrate from wdio@4 to wdio@6 without any changes
plugin for hermione which closes opened tabs from previous tests in a browser
## 개요 - NodeJS 서버로 이루어진 MSA 환경에서 계층적으로 생성되는 OpenAPI 문서들을 통합하고 이를 사용자에게 제공하기 위한 모듈
Mediumroast for Git(Hub) SDK covering all categories of function.
Plugin for minification reference images
A config parser you can use in your apps. It supports hot-reloading, yaml, ini, toml, xml, json and jsonc. Also supports custom parsers
Plugin to retry commands in hermione
Parser for WireCloud's components config file
Reporter plugin for hermione
A configuration library for JavaScript runtimes
A simple configuration parsing utility with no dependencies that allows you to parse INI and ini-style syntax. You can use this to write Rust programs which can be customized by end users easily.
Zero-dependency config parser for .rydit files — entities, levels, checkpoints
Add config file fallback to clap while preserving parsing, validation and error handling
A simple macro built on top of configparser to load and parse ini files. You can use this to write Rust programs which can be customized by end users easily.
KotobaScript - Declarative programming language for frontend applications, extending Jsonnet with React component definitions
A simple configuration file parser
Declarative, idempotent, and reconcilable deployment system for RunPod GPU pods
Config file parser.
INI configuration file deserialization similar to Python's configparser
Macro implementation of #[derive(ConfigParser)]
A proc-macro for implementing ConfigParser trait of config_parser library
Implements a pretty bare-bones streaming INI parser.
parses configuration files compatable with Python's ConfigParser
Helper to parse compass-style.org config files
parses configuration files compatable with Python's ConfigParser, gitconfig, etc
PythonConfig is a module with classes for parsing and writing Python configuration files created by the ConfigParser classes in Python. These files are structured like this: [Section Name] key = value otherkey: othervalue [Other Section] key: value3 otherkey = value4 Leading whitespace before values are trimmed, and the key must be the at the start of the line - no leading whitespace there. You can use : or = . Multiline values are supported, as long as the second (or third, etc.) lines start with whitespace: [Section] bigstring: This is a very long string, so I'm not sure I'll be able to fit it on one line, but as long as there is one space before each line, I'm ok. Tabs work too. Also, this class supports interpolation: [Awards] output: Congratulations for winning %(prize)! prize: the lottery Will result in: config.sections["Awards"]["output"] == "Congratulations for winning the lottery!" You can also access the sections with the dot operator, but only with all-lowercase: [Awards] key:value [prizes] lottery=3.2 million config.awards["key"] #=> "value" config.prizes["lottery"] #=> "3.2 million" You can modify any values you want, though to add sections, you should use the add_section method. config.sections["prizes"]["lottery"] = "100 dollars" # someone hit the jackpot config.add_section("Candies") config.candies["green"] = "tasty" When you want to output a configuration, just call its +to_s+ method. File.open("output.ini","w") do |out| out.write config.to_s end
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.