You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 11, 2022. It is now read-only.
@flamboo its doesn't automatically create an output file, it creates a dict in memory. if you wanted a file, here is example code if all of your .yaml files were in ./configs
import yaml
from yamlreader import yaml_load
defaultConfig = {
"loglevel" : "error",
"some" : "value"
}
jinja_contexts = yaml_load("./configs", defaultConfig)
with open('jinja_contexts.txt', 'wt') as out:
print(yaml.dump(jinja_contexts, default_flow_style=False), file=out)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I cant seem to find the output file after using the tool on a folder of .yml files, any idea how I could find it at all ?
The text was updated successfully, but these errors were encountered: