Skip to content

Instantly share code, notes, and snippets.

View todatasudata's full-sized avatar
🏠
Working from home

Vitalik Esipov todatasudata

🏠
Working from home
View GitHub Profile
@todatasudata
todatasudata / tweet_dumper.py
Last active February 19, 2017 23:17 — forked from yanofsky/LICENSE
A script to download all of a user's tweets into a csv (ported to Python3)
#!/usr/bin/env python3
# forked from https://gist.github.com/yanofsky/5436496 and ported to Python3
import tweepy #https://github.com/tweepy/tweepy
import csv
#Twitter API credentials
consumer_key = ''
consumer_secret = ''
access_key = ''
access_secret = ''