Skip to content

Instantly share code, notes, and snippets.

@shravan097
shravan097 / yaml2dict.py
Created April 17, 2022 23:14
Python YAML to Dict
from typing import Dict, List
def yaml2Dict(texts: str) -> Dict:
"""
Convert YAML to Dict (with a lot of restrictions)
Things not allowed:
- empty strings as values
- weird spaces. All child keys should have space > parent and should be same throughout