#100DaysOfCode in Python Transcripts
Chapter: Days 58-60: Twitter data analysis with Python
Lecture: Create a Twitter app
Login or
purchase this course
to watch this video and the rest of the course contents.
0:00
First we want to make an app using the Twitter API,
0:04
so head over to apps.twitter.com/app/new,
0:09
I'm going to call it Twitter API Demo
0:13
to work on the small Tweepy Python code example.
0:17
We can just put in our website and callback
0:19
URL's not needed.
0:21
After I agree with the terms and create your
0:25
Twitter application.
0:26
With the app created you'll want to head over
0:28
to keys and access tokens,
0:31
and note down the consumer key, consumer secret,
0:35
and your access token, and secret.
0:37
And we will need to export those as variables,
0:40
which I will show you in the next video.