Transfer logs acquired by logging module to discord with webhook!
Project description
discord_logging
discord_logging is a logging extension module.
By using this module, logs can be sent by webhook.
installing
Install and update using pip:
pip install discord_logging
A simple example.
import discord
import logging
import discord_logging
logger = logging.getLogger()
WEBHOOK_URL = "Your webhook url"
handler = discord_logging.Discord_Handler(WEBHOOK_URL)
logger.addHandler(handler)
client = discord.Client()
@client.event
async def on_ready():
print('login!(\'◇\')ゞ')
@client.event
async def on_message(message):
if message.author.bot:
return
if message.content == '/hello':
await message.channel.send('hello')
client.run('THi5IsDuMMyaCCesSTOK3nQ4.Cl2FMQ.ThIsi5DUMMyAcc3s5ToKen7kKWs')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
discord_logging-1.0.tar.gz
(2.3 kB
view hashes)
Built Distribution
Close
Hashes for discord_logging-1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e59f663f4cb8d0535dfe5905f8dcb8d1c1e44c7ee90a5203d42bad43a31b105 |
|
MD5 | e2d60343b5def8c3e174b9b1f150dd2d |
|
BLAKE2b-256 | 6fde18202fb2d1892abb698a70ea7fe2cc583a4e7b67357e0bef613d7b683785 |