Remove streaming.py example
authorHarmon <Harmon758@gmail.com>
Mon, 12 Apr 2021 19:44:11 +0000 (14:44 -0500)
committerHarmon <Harmon758@gmail.com>
Mon, 12 Apr 2021 19:44:11 +0000 (14:44 -0500)
examples/streaming.py [deleted file]

diff --git a/examples/streaming.py b/examples/streaming.py
deleted file mode 100644 (file)
index a9a3c11..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-from tweepy import OAuthHandler, Stream, StreamListener
-
-# Go to http://apps.twitter.com and create an app.
-# The consumer key and secret will be generated for you after
-consumer_key=""
-consumer_secret=""
-
-# After the step above, you will be redirected to your app's page.
-# Create an access token under the the "Your access token" section
-access_token=""
-access_token_secret=""
-
-class StdOutListener(StreamListener):
-    """ A listener handles tweets that are received from the stream.
-    This is a basic listener that just prints received tweets to stdout.
-
-    """
-    def on_data(self, data):
-        print(data)
-        return True
-
-    def on_error(self, status):
-        print(status)
-
-if __name__ == '__main__':
-    l = StdOutListener()
-    auth = OAuthHandler(consumer_key, consumer_secret)
-    auth.set_access_token(access_token, access_token_secret)
-
-    stream = Stream(auth, l)
-    stream.filter(track=['basketball'])