Skip to content

Instantly share code, notes, and snippets.

@dk1
dk1 / bulkster.py
Created November 17, 2012 16:47
Bulk-queueing photo posts on Tumblr
import sys, os.path, shutil
from tumblpy import Tumblpy
oauth_consumer_key = '<oauth consumer key from http://www.tumblr.com/oauth/apps>'
secret_key = '<secret key from http://www.tumblr.com/oauth/apps>'
blog_url = '<your tumblr>.tumblr.com'
images = [];
for file in sys.argv[1:]:
images.append(os.path.abspath(file))