Added JSONParser which ModelParser now extends.
authorJoshua <jroesslein@gmail.com>
Sat, 30 Jan 2010 17:08:34 +0000 (11:08 -0600)
committerJoshua <jroesslein@gmail.com>
Sat, 30 Jan 2010 17:08:34 +0000 (11:08 -0600)
commit470897f889d307c2a16df3124e57b5bb840090a7
tree1ac8dc7e769365fba1aaa250ac0e206a3131eeac
parentef337b9984392755055b1708d9466061091d355a
Added JSONParser which ModelParser now extends.

This allows developers to access the raw JSON by using the JSONParser.

Example:
    api = API(parser=JSONParser())
    json = api.user_timeline('twitter')

Also fixed the Cursor objects so they should be working again.
tweepy/cursor.py
tweepy/parsers.py