import simplejson as json import pprint pp = pprint.PrettyPrinter(indent = 2) json_string = ''' { "contributors": null, "truncated": false, "text": "@nratyra @nrskna mana?", "in_reply_to_status_id": 448323801390919680, "id": 448326973664669697, "favorite_count": 0, "source": "<a href=\\"http://twitter.com/download/iphone\\" rel=\\"nofollow\\">Twitter for iPhone</a>", "retweeted": false, "coordinates": null, "entities": { "symbols": [], "user_mentions": [ { "id": 423273501, "indices": [ 0, 8 ], "id_str": "423273501", "screen_name": "nratyra", "name": "eyraaeyroo." }, { "id": 180286635, "indices": [ 9, 16 ], "id_str": "180286635", "screen_name": "nrskna", "name": "nrskna" } ], "hashtags": [], "urls": [] }, "in_reply_to_screen_name": "nratyra", "id_str": "448326973664669697", "retweet_count": 0, "in_reply_to_user_id": 423273501, "favorited": false, "user": { "follow_request_sent": false, "profile_use_background_image": true, "default_profile_image": false, "id": 262714048, "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "verified": false, "profile_text_color": "333333", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000547167219/b63aaebad206cbe59f32d4edd2124920_normal.jpeg", "profile_sidebar_fill_color": "EFEFEF", "entities": { "url": { "urls": [ { "url": "http://t.co/59dM5D9DkY", "indices": [ 0, 22 ], "expanded_url": "http://www.facebook.com/moxs90", "display_url": "facebook.com/moxs90" } ] }, "description": { "urls": [] } }, "followers_count": 196, "profile_sidebar_border_color": "EEEEEE", "id_str": "262714048", "profile_background_color": "131516", "listed_count": 1, "is_translation_enabled": false, "utc_offset": 28800, "statuses_count": 19238, "description": "Bite me if you can..", "friends_count": 183, "location": "Malaysia", "profile_link_color": "009999", "profile_image_url": "http://pbs.twimg.com/profile_images/378800000547167219/b63aaebad206cbe59f32d4edd2124920_normal.jpeg", "following": false, "geo_enabled": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/262714048/1391104656", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "screen_name": "MHilmiHassan", "lang": "en", "profile_background_tile": true, "favourites_count": 807, "name": "Boboy", "notifications": false, "url": "http://t.co/59dM5D9DkY", "created_at": "Tue Mar 08 16:16:12 +0000 2011", "contributors_enabled": false, "time_zone": "Kuala Lumpur", "protected": false, "default_profile": false, "is_translator": false }, "geo": null, "in_reply_to_user_id_str": "423273501", "lang": "lv", "created_at": "Tue Mar 25 05:14:14 +0000 2014", "in_reply_to_status_id_str": "448323801390919680", "place": null }''' data = json.loads(json_string.strip()) pp.pprint(data) json_string = '''{"user_has_liked": false, "attribution": null, "tags": [], "user": {"username": "boboy90", "website": "", "bio": "", "profile_picture": "http://images.ak.instagram.com/profiles/profile_42909408_75sq_1381330152.jpg", "full_name": "boboy90", "id": "42909408"}, "comments": {"count": 0, "data": []}, "filter": "Sutro", "images": {"low_resolution": {"url": "http://distilleryimage2.s3.amazonaws.com/ddbaf598890311e180d51231380fcd7e_6.jpg", "width": 306, "height": 306}, "thumbnail": {"url": "http://distilleryimage2.s3.amazonaws.com/ddbaf598890311e180d51231380fcd7e_5.jpg", "width": 150, "height": 150}, "standard_resolution": {"url": "http://distilleryimage2.s3.amazonaws.com/ddbaf598890311e180d51231380fcd7e_7.jpg", "width": 612, "height": 612}}, "link": "http://instagram.com/p/Ji51s8xOXK/", "location": null, "created_time": "1334718549", "users_in_photo": [], "caption": null, "type": "image", "id": "171954114841077194_42909408", "likes": {"count": 1, "data": [{"username": "izyannany", "profile_picture": "http://images.ak.instagram.com/profiles/profile_229842068_75sq_1395397398.jpg", "id": "229842068", "full_name": "anje nani"}]}}''' data = json.loads(json_string.strip()) print(data) pp.pprint(data)
Run
Reset
Share
Import
Link
Embed
Language▼
English
中文
Python Fiddle
Python Cloud IDE
Follow @python_fiddle
Browser Version Not Supported
Due to Python Fiddle's reliance on advanced JavaScript techniques, older browsers might have problems running it correctly. Please download the latest version of your favourite browser.
Chrome 10+
Firefox 4+
Safari 5+
IE 10+
Let me try anyway!
url:
Go
Python Snippet
Stackoverflow Question