PagerMaid_Plugins/keyword_func/ranstr.py

11 lines
229 B
Python
Raw Normal View History

2021-02-07 04:03:12 +00:00
import random
import string
2021-04-05 03:40:30 +00:00
async def main(context, length):
2021-02-07 04:03:12 +00:00
if length > 1000:
length = 100
s = ""
for i in range(length):
s += random.choice(string.ascii_letters + string.digits)
2021-02-07 04:06:31 +00:00
return f"`{s}`"