Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@fereria
Last active April 28, 2019 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fereria/4951a246cd64e0ff3532ec4bc9d93d0b to your computer and use it in GitHub Desktop.
Save fereria/4951a246cd64e0ff3532ec4bc9d93d0b to your computer and use it in GitHub Desktop.
Jsonを読み込む
# -*- coding: utf-8 -*-
import json
from collections import OrderedDict
json_file = "R:/marmoset/muravision/std_4/meta.json"
with open(json_file,'r') as f:
od = json.loads(f.read(), object_pairs_hook=OrderedDict)
print od
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment