API.search() now includes search meta data as attributes of the ResultSet object...
authorJoshua <jroesslein@gmail.com>
Fri, 29 Jan 2010 02:29:55 +0000 (20:29 -0600)
committerJoshua <jroesslein@gmail.com>
Fri, 29 Jan 2010 02:29:55 +0000 (20:29 -0600)
commit68c0f829361faecf35664df8744183d2cf68be6b
tree3bf6bca28e02640727b484e98f343ac7d77fda87
parent926598433ae1316b59ddc2bdfd8bb4f06b1599d6
API.search() now includes search meta data as attributes of the ResultSet object returned.

Example:
    results = api.search('python')
    print 'Search took %s seconds' % results.completed_in

This fixes issue #10 (http://github.com/joshthecoder/tweepy/issues/#issue/10)

Meta data available as of today:
    max_id, since_id, refresh_url, next_page, results_per_page,
    page, completed_in, query
tweepy/parsers.py