我有以下用于检索推文的代码。指定的地理编码是纽约州内的一个区域。但是,当我使用print(json_reply [' user'] [' location'])打印位置时,它将打印位置为荷兰Voorburg。我想这是用户在个人资料信息中指定的位置。此外,地理编码始终返回null。我对来自纽约州的推文和坐标感兴趣。
tweets = api.search(q='xyz', lang='en', since='2016-11-02',until='2016-11-06', geocode='43,-75,90km', count=1)
json_str = json.dumps(tweets[0]._json)
print(json_str)
json_reply = json.loads(json_str)
print(json_reply['text'])
print(json_reply['created_at'])
print(json_reply['user']['location'])
print(json_reply['geo'])
荷兰沃尔堡
答案 0 :(得分:2)
您实际上可以使用tweepy的搜索API执行此操作。
首先通过...... {/ p>获取place_id
>>> places = api.geo_search(lat='43', long='-75', max_results=10)
>>> places[0].id
u'23e921b82040ccd6'
然后使用带有place:<place_id>
的tweepy搜索API。
tweets = api.search(q='place:23e921b82040ccd6', count=100)