Top "Yaml" questions

Use this tag for questions about the YAML data serialization format only, not for questions about programs (or examples) that happen to have their configuration in a YAML format.

How do I parse a YAML file in Ruby?

I would like to know how to parse a YAML file with the following contents: --- javascripts: - fo_global: …

ruby yaml
How can I write data in YAML format in a file?

I need to write the below data to yaml file using Python: {A:a, B:{C:c, D:d, E:…

python formatting yaml pyyaml
How can I include a YAML file inside another?

So I have two YAML files, "A" and "B" and I want the contents of A to be inserted inside …

yaml transclusion
YAML Multi-Line Arrays

In YAML, you can easily create multi-line strings. However, I would like the ability to create a multi-line array (mainly …

yaml
YAML: Do I need quotes for strings in YAML?

I am trying to write a YAML dictionary for internationalisation of a Rails project. I am a little confused though, …

syntax yaml quotes
How to parse/read a YAML file into a Python object?

How to parse/read a YAML file into a Python object? For example, this YAML: Person: name: XYZ To this …

python parsing yaml
YAML mapping values are not allowed in this context

I am trying to configure a YAML file in this format: jobs: - name: A - schedule: "0 0/5 * 1/1 * ? *" - type: mongodb.…

yaml
YAML equivalent of array of objects in JSON

I have a JSON array of objects that I'm trying to convert to YAML. {"AAPL": [ { "shares": -75.088, "date": "11/27/2015" }, { "shares": 75.088, "date": "11/26/2015" }, ]} …

arrays json types yaml
Is it .yaml or .yml?

According to yaml.org, the official file extension is .yaml. Quote: Is there an official extension for YAML files? Please …

yaml configuration-files app.yaml
Converting Swagger specification JSON to HTML documentation

For some REST APIs written in PHP, I was asked to create Swagger documentation, and since I was not aware …

yaml swagger swagger-php