Skip to content

Instantly share code, notes, and snippets.

@GlowSquid
GlowSquid / strong_password_generator.py
Created July 18, 2019 19:34
Strong Password Generator
#!/usr/bin/env python3
import string
from random import randint, choice
letters = string.ascii_letters
special = 'ÆÄØÖÅËÏÖÜŸÂÊÎÔÛŶÃẼĨÕŨỸæäøöåëïöüÿâêîôûŷãẽĩõũỹ'
digits = string.digits
symbols = string.punctuation