This file contains 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
#wont work tho | |
import tweepy | |
# Authenticate to Twitter | |
auth = tweepy.OAuth1UserHandler( | |
"CONSUMER_KEY", "CONSUMER_SECRET", | |
"ACCESS_TOKEN", "ACCESS_TOKEN_SECRET" | |
) | |
# Create API object |
This file contains 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
import praw | |
import json | |
import tweepy | |
import time | |
import os | |
import csv | |
import configparser | |
import urllib.parse | |
import sys | |
from imgurpython import ImgurClient |
This file contains 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
import requests | |
from requests_oauthlib import OAuth1 | |
#twitter official keys *Twitter for Android* | |
consumer_key = "3nVuSoBZnx6U4vzUxf5w" | |
consumer_secret = "Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys" | |
#change these to your user&pass | |
username = "NordsWarrior" | |
password = "NeverGonnaGiveYouUp" |