Parser for version 1 of Valve's KeyValues format.
The focus of this particular library is parsing of relevant steamcmd
output.
pip install keyvalues1
from keyvalues1 import KeyValues1
text = """
"570"
{
"common"
{
"name" "Dota 2"
"oslist" "windows,macos,linux"
"type" "game"
}
}
"""
data = KeyValues1.parse(text)
print(data["570"]["common"]["name"])