如何使用一个python脚本运行多个discord机器人

时间:2018-04-03 18:00:42

标签: python python-3.x discord discord.py

我正在尝试创建一个同时运行多个discord机器人的脚本。到目前为止,我已经实现了如何运行单个帐户,但我试图在同一个python discord.py脚本中使用不同的帐户多次重复该过程。非常感谢任何建议/帮助。

import discord

Email = [];
Pass = [];


client = discord.Client()



@client.event
async def on_ready():
    print("Connection Made Succesfully")
    print('Logged in as')
    print(client.user.name)
    print(client.user.id)
    print('------')

client.run('email', 'password')

0 个答案:

没有答案