skip to Main Content

I want to setup a bot, which will read tweets from a twitter user and store. I can find several examples on search for particular key words, post ID etc.

Can any one recommend which api call is required for monitoring one particular user?

2

Answers


  1. use tweepy for data mining from twitter https://github.com/tweepy/tweepy

    Login or Signup to reply.
  2. The Twitter API call you would use is statuses/user_timeline. The documentation is here.

    Some python examples to get you started with using Twitter are here.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search