Skip to main content

Extracting Data from Twitter using Twitter API (in Python/Pycharm)



Pre-Requisites for this task:
  • User should have a Twitter Account.
  • Phone number should be linked with Twitter Account. (Ways to Add Phone number in twitter)
  • Pycharm should be installed.
  • Add Plugin named Tweepy in Pycharm.
  • Obtain Twitter API Key from Twitter.
How To Obtain Twitter API key:

Go to apps.twitter.com and log in with your Twitter account.
Click 'Create a new app' and fill the details. Callback URL is not mandatory. The system will generate an API key and an API secret.
Generate an access token on 'Keys and Access Tokens' tab. Four keys will be generated.

What exactly to write in Pycharm:

import tweepy

consumer_key = 'CONSUMER-KEY-FROM-TWITTER'
consumer_secret = 'CONSUMER-SECRET-FROM-TWITTER'
access_token = 'ACCESS-TOKEN-FROM-TWITTER'
access_secret = 'ACCESS-SECRET-FROM-TWITTER'

authentication = tweepy.OAuthHandler(consumer_key,consumer_secret)
authentication.set_access_token(access_token, access_secret)

api = tweepy.API(authentication)
search = api.search("search_query")

for items in search:
    print(items.text)


There You go..!!


Let me know if some issues are faced or if some help is required in plugin installation.

Thanks..

Comments

  1. Can you share the issue faced?

    ReplyDelete
  2. What did you write for website URL?

    ReplyDelete
    Replies
    1. On "search_query" is enough to extract data from Twitter, provided you are an authenticated user.
      Where did you come across "website URL"?

      Delete
  3. Glad that you liked the article.

    ReplyDelete
  4. After looking through a few blog articles on your website,
    we sincerely appreciate the way you blogged.
    We've added it to our list of bookmarked web pages and will be checking back in the near
    future. Please also visit my website and tell us what you think.
    Great work with hard work you have done I appreciate your work thanks for sharing it.
    PYCharm Key

    ReplyDelete
  5. I am very impressed with your post because this post is very beneficial for me and provide a new knowledge to me.
    windows-11-iso-free-download/
    pycharm
    blue-iris

    ReplyDelete
  6. AsorpdePflac_ka1987 Candace Johnson Free Download
    sturhapfestfo

    ReplyDelete

Post a Comment