因此,我将如何在json中存储用户不和谐ID,仅存储用户ID,别无其他。不确定如何执行此操作。
感谢您的帮助!
答案 0 :(得分:0)
您可以为此使用常规的txt文件。看到新的ID后,请附加它们。启动机器人时,请将所有ID加载到set
中以防止重复
ids = set()
@bot.event
async def on_ready():
with open("ids.txt") as f:
for id in f:
ids.add(id.strip())
@bot.command(pass_context=True)
async def register(ctx):
id = ctx.message.author.id
if id not in ids:
ids.add(id)
with open("ids.txt", "a") as f:
print(id, file=f)
await bot.say("ID {} added".format(id))