Skip to content

Instantly share code, notes, and snippets.

View dennismachel's full-sized avatar
💭
Data Engineering...

Dennis Machel dennismachel

💭
Data Engineering...
View GitHub Profile
@dennismachel
dennismachel / twitter crawler.txt
Created September 26, 2019 14:01 — forked from vickyqian/twitter crawler.txt
A Python script to download all the tweets of a hashtag into a csv
import tweepy
import csv
import pandas as pd
####input your credentials here
consumer_key = ''
consumer_secret = ''
access_token = ''
access_token_secret = ''
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)