How do I import and use JSON in CodeIgniter? For example, the codesnippet below is written in Python and converts Reddit's front page into JSON and prints the keys:
reddit_front = r"""{"kind": "Listing", "data": {"modhash": "", "children": ... """
import json
j = json.loads(reddit_front)
print j.keys()