Skip to content Skip to sidebar Skip to footer
Showing posts with the label Yaml

Dumping A Dictionary To A Yaml File While Preserving Order

I've been trying to dump a dictionary to a YAML file. The problem is that the program that impo… Read more Dumping A Dictionary To A Yaml File While Preserving Order

How To Use Custom Authentication With The Login: Required Attribute In App.yaml ( Google App Engine, Python )

On Google app engine I use a custom user class with methods. ( Not the class and functions provided… Read more How To Use Custom Authentication With The Login: Required Attribute In App.yaml ( Google App Engine, Python )

Unicodedecodeerror While Processing Accented Words

I have a python script which reads a YAML file (runs on an embedded system). Without accents, the s… Read more Unicodedecodeerror While Processing Accented Words

Pyyaml Parses '9:00' As Int

I have a file with the following data: classes: - 9:00 - 10:20 - 12:10 (and so on up to 21:0… Read more Pyyaml Parses '9:00' As Int

How Can I Update A .yml File, Ignoring Preexisting Jinja Syntax, Using Python?

I have some preprocessing to do with some existing .yml files - however, some of them have Jinja te… Read more How Can I Update A .yml File, Ignoring Preexisting Jinja Syntax, Using Python?

Can I Speedup Yaml?

I made a little test case to compare YAML and JSON speed : import json import yaml from datetime im… Read more Can I Speedup Yaml?