Geo support has been implemented

This commit is contained in:
2015-02-03 05:10:01 -06:00
parent 3b1d8eb48a
commit 1fbee07de2
5 changed files with 53 additions and 1 deletions

View File

@@ -46,6 +46,10 @@ def is_audio(tweet):
return True
return False
def is_geocoded(tweet):
if tweet.has_key("coordinates") and tweet["coordinates"] != None:
return True
def get_all_mentioned(tweet, conf):
""" Gets all users that has been mentioned."""
string = []