我有一个项目来练习我的 Python 技能:
- 使用 Tweepy Stream 提取一些推文坐标
- 将它们放入 Google 电子表格
- 然后使用 Google 电子表格在CartoDB中创建地图
我已经能够独立完成所有这些事情了。现在,挑战是让一切协同工作!:)
要更新我的 Google 电子表格,我正在使用gspread。
但是,要更新单元格,我需要像这样指示单元格的行和列:
worksheet.update_acell('B1', 'Bingo!')
我试图在我的脚本中设置一个计数器来提取推文。目标是让 B1 更改为 B2,然后是 B3,然后是 B4,每次找到一条推文。
但它不起作用......坐标已在我的终端上打印出来,仅此而已。
我想我没有像我应该的那样使用这个类。但我不明白我的错误在哪里!
帮助?
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import tweepy
import gspread
import time
CONSUMER_KEY, CONSUMER_SECRET = 'SECRET', 'SECRET'
USER_KEY, USER_SECRET = 'SECRET', 'SECRET'
class MyStream(tweepy.StreamListener):
def __init__(self):
tweepy.StreamListener.__init__(self)
# I added this to have a counter.
self.n = 2
def on_status(self, tweet):
try:
longitude = str(tweet.coordinates['coordinates'][0])
latitude = str(tweet.coordinates['coordinates'][1])
print longitude
print latitude
# I added this to update my google spreadsheet with the coordinates
self.wks.update_acell(('A' + str(n)), longitude)
self.wks.update_acell(('B' + str(n)), latitude)
print "Spreadsheet updated!"
# This is for my counter
self.n += 1
except:
pass
def main():
#I added these two lines to connect to my google spreadsheet
gc = gspread.login('EMAIL', 'PASSWORD')
wks = gc.open('SPREADSHEET_NAME').sheet1
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(USER_KEY, USER_SECRET)
stream = tweepy.Stream(auth, MyStream(), timeout=50)
stream.filter(locations=[-74.00,45.40,-73.41,45.72])
if __name__ == "__main__":
main()