View twitter_collection_examples.py
import json | |
from requests_oauthlib import OAuth1Session | |
# For a blog post describing this process more, see: | |
# https://medium.com/analytics-vidhya/creating-a-twitter-collection-via-api-1378ecfe20df | |
api_key = 'your api key' | |
api_secret_key = 'your api secret key' | |
access_token = 'your access token' |