Skip to content
This repository has been archived by the owner on Dec 26, 2022. It is now read-only.

Pincer - 0.3.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@Sigmanificient Sigmanificient released this 05 Sep 17:15
  • Added basic event support

An example on on_ready event

from time import perf_counter
from pincer.client import Client

client = Client("...")


@client.event
async def on_ready():
    print(f"Logged in as {client.bot} after {perf_counter()} seconds")


client.run()