import json
x = json.loads("json string", object_hook=lambda d: namedtuple('X', d.keys())(*d.values()))
print(x.last_price)
'Phython' 카테고리의 다른 글
beautifulsoup에서 링크만 빼는법 (0) | 2019.05.28 |
---|---|
시놀리지에서 vpn client 사용하는 방법 (0) | 2019.05.28 |
python 글로벌 변수 메소드에서 사용방법 (0) | 2019.05.21 |
파이썬에서 텔레그램 메세지 에코 (0) | 2019.05.21 |
파이썬 web request (0) | 2019.05.17 |