request tweet stream as tweet_mode="extended"
This commit is contained in:
parent
25ec351d4d
commit
d8ad79c153
1 changed files with 2 additions and 1 deletions
|
@ -99,7 +99,8 @@ class Module(ModuleManager.BaseModule):
|
||||||
for username in usernames:
|
for username in usernames:
|
||||||
user_ids.append(str(api.get_user(screen_name=username).id))
|
user_ids.append(str(api.get_user(screen_name=username).id))
|
||||||
|
|
||||||
self._stream = tweepy.Stream(auth=auth, listener=BitBotStreamListener())
|
self._stream = tweepy.Stream(auth=auth, listener=BitBotStreamListener(),
|
||||||
|
tweet_mode="extended")
|
||||||
|
|
||||||
self._thread = threading.Thread(
|
self._thread = threading.Thread(
|
||||||
target=lambda: self._stream.filter(follow=user_ids))
|
target=lambda: self._stream.filter(follow=user_ids))
|
||||||
|
|
Loading…
Reference in a new issue