Skip to content

Instantly share code, notes, and snippets.

View bilguis92's full-sized avatar

Betty bilguis92

View GitHub Profile
@bilguis92
bilguis92 / twitter crawler.txt
Created July 28, 2018 15:52 — 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)