Skip to content

Instantly share code, notes, and snippets.

View kylemoseby's full-sized avatar

Kyle Moseby kylemoseby

View GitHub Profile
@kylemoseby
kylemoseby / tumblr_api_example.py
Last active December 22, 2022 20:39
Work with the Tumblr API using Python
import csv
import pytumblr
class tumblrAccount():
# Authenticate via OAuth
client = pytumblr.TumblrRestClient(
# INPUT API INFO HERE
)
@kylemoseby
kylemoseby / twitter_api_example.py
Last active June 21, 2022 23:04
Clean up for Twitter account automatcally
import csv
from threading import Timer
import tweepy
class mkm():
apiCalls = 0
def __init__(self, api):
print "Initialising Twitter Account Tools"