Skip to content

Instantly share code, notes, and snippets.

View 7asterisk's full-sized avatar

Abhishek kumar 7asterisk

View GitHub Profile
@7asterisk
7asterisk / twitter crawler.txt
Created March 28, 2020 13: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)