YAML parser that environment variable is expanded
Project description
Install
$ pip install syaml
How to use it
A syaml is YAML parser that environment variable is expanded. It can use the path, name, here and environment variable in YAML file. It described in syntax of mako template. See http://www.makotemplates.org/ .
A path is absolute path to YAML file, and name is file name of YAML file, and here is absolute directory path the YAML file stored.
For example.
/path/to/test.yaml:
- ${here} - ${name} - ${path}
The above file is equivalent to the following a file.
- /path/to/ - test.yaml - /path/to/test.yaml
And, it can use environment variable in YAML file too.
/path/to/test.yaml:
- email: ${EMAIL}
If test@example.com the environment variable EMAIL is set, the above file is equivalent to the following a file.
- email: test@example.com
Load file and Load string
Example file /path/to/syaml/example.yml:
general: - ${here} - ${name} - ${path}
Load file object:
>>> import syaml >>> with open('example.yml', 'rb') as fp: ... syaml.load(fp) ... {'general': ['/path/to/syaml', 'example.yml', '/path/to/syaml/example.yml']}
Load byte string object:
>>> syaml.loads(b'general:\n - ${here}\n - ${name}\n - ${path}\n') {'general': ['', '', '']}
Load string object:
>>> syaml.loads('general:\n - ${here}\n - ${name}\n - ${path}\n') {'general': ['', '', '']} >>>
name and path and here will replace to empty string If you passed a string to syaml.loads function. They are for a file object. A string like object don’t have file path.
Use command line tool
syaml render
It render the SAYML file.
example.yml:
general: - ${here} - ${name} - ${path}
Execute syaml render command:
$ syaml render example.yml general: - /path/to/syaml - example.yml - /path/to/syaml/example.yml
Execute syaml render command json style:
$ syaml render example.yml --json {"general": ["/path/to/syaml", "example.yml", "/path/to/syaml/example.yml"]}
Execute syaml render command pre process only:
$ syaml render example.yml --pre general: - /path/to/syaml - example.yml - /path/to/syaml/example.yml
Unittest
This section describes the tools and tips used when unittest. Run these tests with the following command:
$ python -m unittest discover src
If all tests pass, you will see the following output:
.... ---------------------------------------------------------------------- Ran 4 tests in 0.018s OK
The number of tests performed may be higher than described in this document.
Test with docker
Build docker image:
$ docker buildx build -t syaml .
Run test:
$ docker run -it --rm --workdir="/app" --volume "$(pwd):/app" --name="syaml" syaml tox
Release flow
Bump version. Edit setup.cfg file.
Generate distribution files. python -m build.
- Check distribution files. twine check dist/*.
You need to make sure there are no “errors” displayed on the console.
Upload distribution files. twine upload dist/*.
Other
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file syaml-2.0.tar.gz
.
File metadata
- Download URL: syaml-2.0.tar.gz
- Upload date:
- Size: 19.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 433adec15f54764b0da0504a12b984ec6d76eafe8b0dd79a86aaf732fdb0c7e2 |
|
MD5 | 69669b82f7c0ff54f8a568fa95774ede |
|
BLAKE2b-256 | 8e070bce2eba53fbd762fd07fe561a3e1811a97276d5e778bef81af3adfda92c |
File details
Details for the file syaml-2.0-py3-none-any.whl
.
File metadata
- Download URL: syaml-2.0-py3-none-any.whl
- Upload date:
- Size: 19.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98eafd89ec6575927d91b4fffd5fac9cbc078c9572441132199d6cc8162d7114 |
|
MD5 | ed291bf08bc293d041a9ae001ef08257 |
|
BLAKE2b-256 | 83c4d33663e34c699350bc7bc56495fcd6c0fc14d84aa66d96e7d2025f72a6b9 |