Skip to content

Instantly share code, notes, and snippets.

@uzegonemad
Last active December 21, 2015 11:19
Show Gist options
  • Save uzegonemad/6298079 to your computer and use it in GitHub Desktop.
Save uzegonemad/6298079 to your computer and use it in GitHub Desktop.
Generate Short URL... It's my first day in Python
from random import choice
from string import (ascii_letters, digits)
def generateLinkSlug(length = 6):
return "".join([choice(ascii_letters + digits) for x in xrange(length)])
print generateLinkSlug()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment