Skip to content

Instantly share code, notes, and snippets.

@mt3
Forked from ChewingPencils/rename_pinboard_tag.py
Created December 28, 2012 11:43
Show Gist options
  • Save mt3/4397038 to your computer and use it in GitHub Desktop.
Save mt3/4397038 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# A quick and dirty script to rename a pinboard.in tag.
# I'll probably update this become a proper command line app one day
import urllib2
import pinboard
pinuser = ""
pinpasswd = ""
p = pinboard.open(pinuser, pinpasswd)
# Enter in the tag information below
p.rename_tag(old="old-tag", new="new_tag")
print "Done!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment