How do I print just the "name" through this JSON format? in Python 2.7? I've basically tried a lot of examples from stack overflow, but they're doing json.load and I am not sure if I need that if I already have a JSON as an output. I'm trying to trim it to only what I need. Any help would be great. Thank you.
This is the example json and I only need the name PS: What is the 'u? I do not need that in my output.
{ u'data': { u'items': [ { u'created_at': 1401991208,
u'name': u'Great Deals Singapore',
u'path': u'organization/great-deals-singapore',
u'type': u'Organization',
u'updated_at': 1442343527},
{ u'created_at': 1415172261,
u'name': u'Secure Tech Alarm Systems Inc.',
u'path': u'organization/secure-tech-alarm-systems-inc-',
u'type': u'Organization',
u'updated_at': 1432082588},
{ u'created_at': 1307858564,
u'name': u'Foodcaching',
u'path': u'organization/foodcaching',
u'type': u'Organization',
u'updated_at': 1406611074},
{ u'created_at': 1421406244,
u'name': u'WP App Store',
u'path': u'organization/wp-app-store',
u'type': u'Organization',
u'updated_at': 1421406364},