cara menghitung pesan obrolan perselisihan dengan python

counter = 0
repeat = 0
for x in range(0, 4): # Repeats 4 times
    async for msg in client.logs_from(message.channel, limit=500):
        if msg.author == message.author:
            counter += 1
    repeat += 1
await client.send_message(message.channel, "{} has {} out of the first {} messages in {}".format(message.author, str(counter), 500*repeat, message.channel))
Thankful Tapir