Skip to content

Instantly share code, notes, and snippets.

@jaboutboul
Created August 30, 2012 21:19
Show Gist options
  • Save jaboutboul/3541323 to your computer and use it in GitHub Desktop.
Save jaboutboul/3541323 to your computer and use it in GitHub Desktop.
kivikfinder-bitly
#create Bitly Url
def makeBit(url):
b = bitlyapi.BitLy("mauerbac", local_settings.BITLY_API_KEY) #Add bitly API key
res = b.shorten(longUrl=url)
return res['url']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment