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
import csv | |
import pytumblr | |
class tumblrAccount(): | |
# Authenticate via OAuth | |
client = pytumblr.TumblrRestClient( | |
# INPUT API INFO HERE | |
) |
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
import csv | |
from threading import Timer | |
import tweepy | |
class mkm(): | |
apiCalls = 0 | |
def __init__(self, api): | |
print "Initialising Twitter Account Tools" |