Home:ALL Converter>Using tweepy to get the tweeter data?

Using tweepy to get the tweeter data?

Ask Time:2018-03-31T07:09:13         Author:Wei Fan

Json Formatter

everyone. I am new to social media information mining. so I am so confusing when I running the script below and get the result of "401" which I googled that I need authorization. Could anyone help me please, thank you very much.

import tweepy
from tweepy import Stream
from tweepy.streaming import StreamListener
from tweepy import OAuthHandler
import json

consumer_key = "XXX"
consumer_secret = " XX"
access_token = "XX"
access_secret = "XX"

auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_secret)

api = tweepy.API(auth)



def parse(cls, api, raw):
    status = cls.first_parse(api, raw)
    setattr(status, 'json', json.dumps(raw))
    return status


 tweepy.models.Status.first_parse = tweepy.models.Status.parse
 tweepy.models.Status.parse = parse


class MyListener(tweepy.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


twitter_stream = Stream(auth, MyListener())
twitter_stream.filter(track=['#HASHTAG_TO_SEARCH'])

Author:Wei Fan,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/49582548/using-tweepy-to-get-the-tweeter-data
yy