This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 = '' |