当有人在 Twitter 中提及特定用户时,我正在使用 Python-twitter Arduino 打开 Arduino 板上的灯。如果我使用我的用户名并使用 this status = api.GetUserTimeline('username') 我可以打开灯 有什么想法我该怎么做?
下面是代码示例。
#status = api.GetUserTimeline('username') ##grab latest statuses
status = api.GetMentions(count=1) ##How get this to work properly?
checkIt = [s.text for s in status] ##put status in an array
drip = checkIt[0].split() ##split first tweet into words
## check for match and write to serial if match
if drip[0] == '#action_go':
print 'Tweet Recieved, Turning the light on!'
ser.write('1')
elif drip[0] == '#action_stop': ##break if done
ser.write('0')
print 'stopped, awaiting instructions.'
else:
ser.write('0')
print 'Awaiting Tweet'