toml-combine 0.1.6__tar.gz → 0.1.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {toml_combine-0.1.6 → toml_combine-0.1.7}/.pre-commit-config.yaml +0 -1
- {toml_combine-0.1.6 → toml_combine-0.1.7}/PKG-INFO +9 -1
- {toml_combine-0.1.6 → toml_combine-0.1.7}/README.md +8 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/.github/renovate.json5 +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/.github/workflows/ci.yml +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/pyproject.toml +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/tests/result.json +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/tests/test.toml +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/tests/test_cli.py +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/tests/test_combiner.py +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/tests/test_lib.py +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/toml_combine/__init__.py +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/toml_combine/__main__.py +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/toml_combine/cli.py +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/toml_combine/combiner.py +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/toml_combine/exceptions.py +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/toml_combine/toml.py +0 -0
- {toml_combine-0.1.6 → toml_combine-0.1.7}/uv.lock +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: toml-combine
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.7
|
4
4
|
Summary: A tool for combining complex configurations in TOML format.
|
5
5
|
Author-email: Joachim Jablon <ewjoachim@gmail.com>
|
6
6
|
License-Expression: MIT
|
@@ -208,4 +208,12 @@ result = toml_combine.combine(
|
|
208
208
|
)
|
209
209
|
|
210
210
|
print(result)
|
211
|
+
{
|
212
|
+
"production-job-manage": {...},
|
213
|
+
"production-job-special-command": {...},
|
214
|
+
"staging-job-manage": {...},
|
215
|
+
"staging-job-special-command": {...},
|
216
|
+
}
|
211
217
|
```
|
218
|
+
|
219
|
+
You can pass either `config` (TOML string or dict) or `config_file` (`pathlib.Path` or string path) to `combine()`. Additional `kwargs` restrict the output.
|
@@ -189,4 +189,12 @@ result = toml_combine.combine(
|
|
189
189
|
)
|
190
190
|
|
191
191
|
print(result)
|
192
|
+
{
|
193
|
+
"production-job-manage": {...},
|
194
|
+
"production-job-special-command": {...},
|
195
|
+
"staging-job-manage": {...},
|
196
|
+
"staging-job-special-command": {...},
|
197
|
+
}
|
192
198
|
```
|
199
|
+
|
200
|
+
You can pass either `config` (TOML string or dict) or `config_file` (`pathlib.Path` or string path) to `combine()`. Additional `kwargs` restrict the output.
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|