Browse Source

Update README example.

pull/468/head
Rapptz 8 years ago
parent
commit
3c6d677f85
  1. 45
      README.md

45
README.md

@ -56,29 +56,28 @@ Please note that on Linux installing voice you must install the following packag
import discord import discord
import asyncio import asyncio
client = discord.Client() class MyClient(discord.Client):
async def on_ready(self):
@client.event print('Logged in as')
async def on_ready(): print(self.user.name)
print('Logged in as') print(self.user.id)
print(client.user.name) print('------')
print(client.user.id)
print('------') async def on_message(self, message):
if message.content.startswith('!test'):
@client.event counter = 0
async def on_message(message): tmp = await message.channel.send('Calculating messages...')
if message.content.startswith('!test'): async for msg in message.channel.history(limit=100):
counter = 0 if msg.author == message.author:
tmp = await client.send_message(message.channel, 'Calculating messages...') counter += 1
async for log in client.logs_from(message.channel, limit=100):
if log.author == message.author: await tmp.edit(content='You have {} messages.'.format(counter))
counter += 1 elif message.content.startswith('!sleep'):
with message.channel.typing():
await client.edit_message(tmp, 'You have {} messages.'.format(counter)) await asyncio.sleep(5.0)
elif message.content.startswith('!sleep'): await message.channel.send('Done sleeping.')
await asyncio.sleep(5)
await client.send_message(message.channel, 'Done sleeping') client = MyClient()
client.run('token') client.run('token')
``` ```

Loading…
Cancel
Save