def psw_gen():
lis1 = '123456789'
lis2 = 'qwertyuiopasdfghjklzxcvbnm'
lis3 = lis2.upper()
lis4 = lis1+lis2+lis3
ls = list(lis4)
random.shuffle(ls)
psw = ''.join([random.choice(ls) for x in range(15)])
ui.lineEdit.setText(psw)
cop_psw(psw)
def cop_psw(psw):
pyperclip.copy(psw)
bot.send_video(message.from_user.id, data, caption='test')
for user in member:
try:
load1=discord.Embed(title="Тебя убили", description = f"{ctx.author.mention} заебашил {user.mention}", color=2358184)
load1.set_author(name = pybot.user.name, icon_url = cap.avatar_url)
load1.set_image(url = "gif")
await ctx.channel.send(embed = load1)
except:
pass