Using tweepy to access Twitter's Streaming API

前端 未结 1 1195
粉色の甜心
粉色の甜心 2021-02-02 04:06

I\'m currently having trouble getting example code for using tweepy to access Twitter\'s Streaming API to run correctly (err...or at least how I expect it to run). I\'m using a

相关标签:
1条回答
  • 2021-02-02 04:35

    I ran into this as well and fixed it on my local checkout by changing line 160 in streaming.py to

    if delimited_string.strip().isdigit():
    

    This seems to be a known issue/bug in Tweepy - should have checked the issues list before doing all that debugging :) -

    https://github.com/tweepy/tweepy/pull/173 https://github.com/tweepy/tweepy/pull/182

    0 讨论(0)
提交回复
热议问题