I\'ve been trying to consume the Twitter Streaming API using Python Requests.
There\'s a simple example in the documentation:
import requests import jso
Ah, I found the answer by reading the code. At some point, a prefetch parameter was added to the post method (and other methods, I assume).
I just needed to add a prefetch=False kwarg to requests.post().
prefetch=False
requests.post()