
YAML. Simple Dict
Have you ever heard of such markup language as YAML? It’s a friendly data serialization format. In fact it’s so friendly that both people and programs can read it quite well. You can play around with the standard by following this link.
YAML is a text, and you need to convert it into an object. But I’m not asking you to implement the entire YAML standard, we’ll implement it step by step.
The first step is the key-value conversion. The key can be any string consisting of Latin letters and numbers. The value can be a single-line string (which consists of spaces, Latin letters and numbers) or a number (int).
I’ll show some examples:
name: Alex age: 12
Converted into a dictionary.
{ "name": "Alex", "age": 12 }
Note that the number automatically gets type int.
Another example shows that the string may contain spaces.
name: Alex Fox age: 12 class: 12b
Will be converted into the next dictionary.
{ "age": 12, "name": "Alex Fox", "class": "12b" }
Pay attention to a few things. Between the string "age" and the string "class" there is an empty string that doesn’t interfere with parsing. The class starts with numbers, but has letters, which means it cannot be converted to numbers, so its type remains a str.
Input: A format string.
Output: An object (dictionary).
Examples:
assert yaml("name: Alex\nage: 12") == {"name": "Alex", "age": 12} assert yaml("name: Alex Fox\nage: 12\n\nclass: 12b") == { "age": 12, "name": "Alex Fox", "class": "12b", }
Precondition: YAML 1.2 is being used with JSON Schema.