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 / get_vk_album.py
Created May 24, 2017 14:14
Script to download all photos from certain album on vk.com
'''
Example:
python3 get_vk_album.py https://vk.com/album405303935_244066721
Supports not more than 1000 photos in album.
'''
import requests
import json
from bs4 import BeautifulSoup
@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 = ''