Skip to content

Instantly share code, notes, and snippets.

@dirn
Created July 16, 2014 04:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dirn/f2e343d92786a76a35eb to your computer and use it in GitHub Desktop.
Save dirn/f2e343d92786a76a35eb to your computer and use it in GitHub Desktop.
PyGotham discount code generator
import random
import string
characters = string.ascii_letters + string.digits
s = set()
while len(s) < 200:
s.add(''.join(random.choice(characters) for _ in range(6)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment