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

Function randomName

spotifyAccount.py:16–17  ·  view source on GitHub ↗
(size=10, chars=string.ascii_letters + string.digits)

Source from the content-addressed store, hash-verified

14
15
16def randomName(size=10, chars=string.ascii_letters + string.digits):
17 return "".join(random.choice(chars) for i in range(size))
18
19
20def randomPassword(size=14, chars=string.ascii_letters + string.digits):

Callers 1

creatorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected