python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
pyyaml dump and yamllint document start
I am using yaml.dump to write out my yaml files from aggregated data.
This yaml file is then fed to a 3rd party tool that uses yamllint to check the file before processing the data.
I have two problem...

JDWK
Votes: 0
Answers: 1
Get all children key values in a YAML with PyYAML
Say I have a YAML like:
Resources:
AlarmTopic:
Type: AWS::SNS::Topic
Properties:
Subscription:
- !If
- ShouldAlarm
Protocol: email
How do I get each key ...
Alper
Votes: 0
Answers: 1
How to parse below yaml/xml in jinja template?
Example format for Yaml file
below is a yaml file, which takes xml also as an input.. but should be parsed in jinja code as a template.
service1:
name:
path: 'pathtofile=/home/example.xml'
C...

emjay_010
Votes: 0
Answers: 0
How to load multiple yaml files with PyYAML?
I have a list of yaml files I want to load and return their contents in one single dictionary.
The easiest way would be to iterate through the filenames and load individually with safe_load, and then ...
KSS
Votes: 0
Answers: 1