Skip to content

Abdulelah11y/easy-twitter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Easy-Twitter

Simplifying Twitter APIs by leveraging tweepy APIs.

Required steps

  1. Getting Twitter developer account. For registration
  2. Install Pandas package.
  3. Install Numpy package.
  4. Install Tweepy package.
# packages installation "In terminal"
conda install pandas
conda install numpy
pip install tweepy
# importing packages in your jupyter notebook
import pandas as pd		# Please use the abbreviation "pd"
import numpy as np		# Please use the abbreviation "np"
import tweepy

Installation

# how to install easytwitter package
pip install easytwitter

Usage

  • Import module
# use * to access all the objects
from easytwitter import *
  • First your should establish the connection
# returns 4 inputs to validate your twitter tokens.
Auth.connect_me()

# consumer_key = "xxxxxxxxxxxxxxxxxxxx"
# consumer_secret = "xxxxxxxxxxxxxxxxxxxxxxx"
# access_token = "xxxxxxxxxxxxxxxxxxxxxx"
# access_token_secret = "xxxxxxxxxxxxxxxxxxxxxxx"

API Reference

get_user_timeline()

Returns a summary of the latest 20 tweets of a specific twitter account.

# if you want to interact with the data, store it in a new dataframe
df = Api.get_user_timeline()
df.head()

get_followers_details()

Returns a user's followers details.

df = Api.get_followers_details()
df.head()

get_mentions_timeline()

Returns the 20 most recent mentions, including retweets.

df = Api.get_mentions_timeline()
df.head()

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

About

Simplifying Twitter APIs by leveraging tweepy library.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •