The Twitter API and Authentication

Intermediate Importing Data in Python

Hugo Bowne-Anderson

Data Scientist at DataCamp

Herein, you’ll learn

  • How to stream data from the Twitter API
  • How to filter incoming tweets for keywords
  • About API Authentication and OAuth

 

ch_3_1.003.png

Intermediate Importing Data in Python

Herein, you’ll learn

  • How to stream data from the Twitter API
  • How to filter incoming tweets for keywords
  • About API Authentication and OAuth
  • How to use the Tweepy Python package

ch_3_1.006.png

Intermediate Importing Data in Python

Access the Twitter API

ch_3_1.008.png

Intermediate Importing Data in Python

Access the Twitter API

ch_3_1.009.png

Intermediate Importing Data in Python

Access the Twitter API

ch_3_1.011.png

Intermediate Importing Data in Python

Access the Twitter API

ch_3_1.013.png

Intermediate Importing Data in Python

Twitter has a number of APIs

ch_3_1.015.png

Intermediate Importing Data in Python

Twitter has a number of APIs

ch_3_1.017.png

Intermediate Importing Data in Python

Twitter has a number of APIs

ch_3_1.018.png

Intermediate Importing Data in Python

Twitter has a number of APIs

ch_3_1.020.png

Intermediate Importing Data in Python

Twitter has a number of APIs

ch_3_1.022.png

Intermediate Importing Data in Python

Tweets are returned as JSONs

ch_3_1.024.png

Intermediate Importing Data in Python

Tweets are returned as JSONs

ch_3_1.026.png

Intermediate Importing Data in Python

Using Tweepy: Authentication

tweets.py

import tweepy, json

access_token = "..." access_token_secret = "..." consumer_key = "..." consumer_secret = "..."
Intermediate Importing Data in Python

Using Tweepy: stream tweets!!

tweets.py

# Create Streaming object
stream = tweepy.Stream(consumer_key, consumer_secret, 
                       access_token, access_token_secret)

# This line filters Twitter Streams to capture data by keywords: stream.filter(track=['apples', 'oranges'])
Intermediate Importing Data in Python

Let's practice!

Intermediate Importing Data in Python

Preparing Video For Download...