MCPcopy Create free account
hub / github.com/geekcomputers/Python / randomPassword

Function randomPassword

spotifyAccount.py:20–21  ·  view source on GitHub ↗
(size=14, chars=string.ascii_letters + string.digits)

Source from the content-addressed store, hash-verified

18
19
20def randomPassword(size=14, chars=string.ascii_letters + string.digits):
21 return "".join(random.choice(chars) for i in range(size))
22
23
24global maxi

Callers 1

creatorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected