Skip to main content

Implementation of PyYAML Reader with environment variables parsing.

Project description

yaml_env_var_parser

Implementation of PyYAML Reader with env var parsing.

Inspired by envyaml: https://github.com/thesimj/envyaml

The Reader is the very first step of the PyYAML parsing process and this is where the environment variable is being parsed.

The environment variable parsing can be anywhere in the yaml file, the parsing is done in the very early stages of the PyYAML loading process. It is possible to inject a YAML structure using it

The code below is an example of what I mean be anywere:

import os
from yaml_env_var_parser import load

# env vars are replaced on keys
os.environ['MY_KEY'] = 'key'
# they might also be YAML tags
os.environ['TIMESTAMP_TAG'] = '!!timestamp'
# this will inject `another_key` into the yaml data
os.environ['MY_COMPLEX_DATA'] = """"simple_data"
another_key: "its possible to create new keys with env vars. we might call it YAML INJECTION"
"""
yaml_data_str = """
${MY_KEY}: "data"
complex_data: ${MY_COMPLEX_DATA}
timestamp_tag: ${TIMESTAMP_TAG} 2022-01-01 00:00:00
"""
parsed = load(yaml_data_str)
print(parsed)

Output:

{'key': 'data', 'complex_data': 'simple_data', 'another_key': 'its possible to create new keys with env vars. we might call it YAML INJECTION', 'timestamp_tag': datetime.datetime(2022, 1, 1, 0, 0)}

The key another_key does not exist in yaml_data_str yaml str definition but it is added from the environment variable ${MY_COMPLEX_DATA} MIT License

Copyright (c) 2022 NiltonDuarte

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yaml_env_var_parser-1.1.1.tar.gz (4.9 kB view details)

Uploaded Source

Built Distribution

yaml_env_var_parser-1.1.1-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file yaml_env_var_parser-1.1.1.tar.gz.

File metadata

  • Download URL: yaml_env_var_parser-1.1.1.tar.gz
  • Upload date:
  • Size: 4.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for yaml_env_var_parser-1.1.1.tar.gz
Algorithm Hash digest
SHA256 d74351017ac26c239c17b7a5c9243f59bf5791aed66aadabc85757cd23324301
MD5 3e80de86645f3139ab983825336719bf
BLAKE2b-256 937a278c54475835ff21b186eca23871a61b7c072149c1e3779ba6e98360f0f1

See more details on using hashes here.

File details

Details for the file yaml_env_var_parser-1.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for yaml_env_var_parser-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 fdcc21f1a387addfc5ef94e5a7aa395f20f9ce9970c97bdf2c5b60508fdf52fd
MD5 1079881181d87b4712f7b666d8779199
BLAKE2b-256 687869dec1691279100567f2f1bd10cd38f03a749522d5fa8f7651631285e734

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page