How could I make the following call in Python? Pseudocode version:

jsonTwitterResponse = twitter.get(up to max of 3 
                      tweets within 3km of longitude: 7, latitude: 5)
print jsonTwitterResponse

It looks like the geocode API is what I need. I have no idea how to actually code this up though. How would I do the above in actual code?

link|improve this question

80% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Here is a sample geocode request:

import urllib, json, pprint

params = urllib.urlencode(dict(q='obama', rpp=10, geocode='37.781157,-122.398720,1mi'))
u = urllib.urlopen('http://search.twitter.com/search.json?' + params)
j = json.load(u)
pprint.pprint(j)

The full Twitter REST API is described here: https://dev.twitter.com/docs/api Also, Twitter has a location search FAQ that may be of interest.

link|improve this answer
feedback

In addition to Raymond Hettinger's answer, I'd like to mention that you can also use a query like "near:Amsterdam within:5km" if you don't want to work with actual coordinates.

Example: http://search.twitter.com/search?q=near:Amsterdam%20within:5km

link|improve this answer
Nice. I didn't know about that option :-) – Raymond Hettinger Nov 27 '11 at 3:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.