Skip to content

Instantly share code, notes, and snippets.

@ChewingPencils
Created November 30, 2012 21:51
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save ChewingPencils/4178945 to your computer and use it in GitHub Desktop.
Save ChewingPencils/4178945 to your computer and use it in GitHub Desktop.
Rename Pinboard Tag
#!/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