このテキストファイルをPython辞書に変換しようとしています。
基本的なフォーマットは
"items_game"
{
"game_info"
{
"first_valid_class" "1"
"last_valid_class" "9"
"first_valid_item_slot" "0"
"last_valid_item_slot" "10"
"num_item_presets" "4"
}
"qualities"
{
"key" "value"
}
...
"community_market_item_remaps"
{
"Supply Crate"
{
"Supply Crate 2" "1"
"Supply Crate 3" "1"
}
"Decoder Ring"
{
"Winter Key" "1"
"Summer Key" "1"
"Naughty Winter Key 2011" "1"
"Nice Winter Key 2011" "1"
"Scorched Key" "1"
"Fall Key 2012" "1"
"Eerie Key" "1"
"Naughty Winter Key 2012" "1"
"Nice Winter Key 2012" "1"
}
}
}
このファイルはほとんど辞書ですが、完全ではありません。これを辞書に変換して、キーで辞書の各レベルにアクセスできるようにする方法はありますか?私は次のようなことをしたいと思います:
foreach key in dictName['items_game']['community_market_item_remaps']['Decoder Ring']:
# do something
ご協力ありがとうございました。