Twitter capture

import tweepy from tweepy import Stream from tweepy.stream import StreamListener from tweepy import OAuthHandler import json consumer_key = "YOUR CONSUMER KEY" consumer_secret = "YOUR CONSUMER SECRET" access_token = "YOUR ACCESS TOKEN" access_secret = "YOUR ACCESS SECRET" auth = OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(access_token, access_secret) api = tweepy.API(auth) @classmethod def parse(cls, api, raw): status = cls.first_parse(api, raw) setattr(status, 'json', json.dumps(raw)) return status # Status() is the data model for a tweet tweepy.models.Status.first_parse = tweepy.models.Status.parse tweepy.models.Status.parse = parse class MyListener(StreamListener): def on_data(self, data): try: with open('FILENAME.json', 'a') as f: f.write(data) return True except BaseException as e: print("Error on_data: %s" % str(e)) return True def on_error(self, status): print(status) return True #Set the hashtag to be searched twitter_stream = Stream(auth, MyListener()) twitter_stream.filter(track=['#HASHTAG_TO_SEARCH'])

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.