Ho trovato un modo usando puramente Python per ottenere le coordinate per i tweet usando un filtro di parole. Non sembra che molte persone includano la posizione con i loro tweet.
Questo potrebbe non essere quello che stai cercando perché si tratta di dati di streaming live. Puoi testarlo inserendo una parola filtro univoca e poi twittando quella parola dal tuo account Twitter. Vedrai il tuo tweet apparire in Python quasi all'istante. Sarebbe davvero bello da usare per qualche grande evento.
Dovrai installare Tweepy .
pip install tweepy
E ottieni una chiave API di Twitter .
Quindi puoi usare questo script come modello:
import json
from tweepy import Stream
from tweepy import OAuthHandler
from tweepy.streaming import StreamListener
#Enter Twitter API Key information
consumer_key = ''
consumer_secret = ''
access_token = ''
access_secret = ''
file = open("C:\\Output.csv", "w")
file.write("X,Y\n")
data_list = []
count = 0
class listener(StreamListener):
def on_data(self, data):
global count
#How many tweets you want to find, could change to time based
if count <= 2000:
json_data = json.loads(data)
coords = json_data["coordinates"]
if coords is not None:
print coords["coordinates"]
lon = coords["coordinates"][0]
lat = coords["coordinates"][1]
data_list.append(json_data)
file.write(str(lon) + ",")
file.write(str(lat) + "\n")
count += 1
return True
else:
file.close()
return False
def on_error(self, status):
print status
auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_secret)
twitterStream = Stream(auth, listener())
#What you want to search for here
twitterStream.filter(track=["Halloween"])
Dai un'occhiata anche a questa documentazione da Twitter, mostra cosa puoi mettere nel filtro.
Ecco il risultato di mettere il filtro come "Halloween" per alcuni minuti:
E per l'inferno, ecco i primi 2000 tweet che menzionavano Halloween!
http://i.stack.imgur.com/bwdoP.png
Felice Halloween!