mirror of
https://github.com/not-kennethreitz/omnijson.git
synced 2026-06-17 13:40:57 +00:00
13 lines
163 B
Python
13 lines
163 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import omnijson as json
|
|
|
|
a = json.loads('{"yo":"dawg"}')
|
|
print a
|
|
|
|
print json.dumps(a)
|
|
|
|
|
|
|
|
json.loads('{"yo": dawg"}') |