All Projects → asleep-cult → snekcord

asleep-cult / snekcord

Licence: MIT license
A work-in-progress Discord API wrapper written in Python.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to snekcord

discljord
A Clojure wrapper library for the Discord API, with full API coverage (except voice, for now), and high scalability
Stars: ✭ 179 (+1093.33%)
Mutual labels:  discord-api-wrapper
fastapi-framework
A FastAPI Framework for things like Database, Redis, Logging, JWT Authentication, Rate Limits and Sessions
Stars: ✭ 26 (+73.33%)
Mutual labels:  asyncio
FinanceCenter
Fetching Financial Data (US/China)
Stars: ✭ 26 (+73.33%)
Mutual labels:  asyncio
stream video server
demonstrates how to create video streaming server with the help of aiohttp and opencv
Stars: ✭ 15 (+0%)
Mutual labels:  asyncio
tellerbot
Telegram Bot for over-the-counter trading
Stars: ✭ 17 (+13.33%)
Mutual labels:  asyncio
fbemissary
A bot framework for the Facebook Messenger platform, built on asyncio and aiohttp
Stars: ✭ 30 (+100%)
Mutual labels:  asyncio
asyncwhois
asyncio-compatible Python module for retrieving and parsing WHOIS information for any domain.
Stars: ✭ 26 (+73.33%)
Mutual labels:  asyncio
aioppspp
IETF PPSP RFC7574 in Python/asyncio
Stars: ✭ 21 (+40%)
Mutual labels:  asyncio
AsyncIO
.NET library for handling asynchronous file system operations
Stars: ✭ 20 (+33.33%)
Mutual labels:  asyncio
cognitojwt
Decode and verify Amazon Cognito JWT tokens
Stars: ✭ 50 (+233.33%)
Mutual labels:  asyncio
postmodel
ORM library for Python 3.6+, asyncio. Provides Django ORM like API.
Stars: ✭ 15 (+0%)
Mutual labels:  asyncio
pyladies-courseware
Homework/task submit and review web app · based on React and Python aiohttp
Stars: ✭ 14 (-6.67%)
Mutual labels:  asyncio
fast-api-sqlalchemy-template
Dockerized web application on FastAPI, sqlalchemy1.4, PostgreSQL
Stars: ✭ 25 (+66.67%)
Mutual labels:  asyncio
aiotunnel
HTTP tunnel on top of aiohttp and asyncio
Stars: ✭ 29 (+93.33%)
Mutual labels:  asyncio
feedsearch-crawler
Crawl sites for RSS, Atom, and JSON feeds.
Stars: ✭ 23 (+53.33%)
Mutual labels:  asyncio
aioflask
Flask running on asyncio!
Stars: ✭ 192 (+1180%)
Mutual labels:  asyncio
aioamqp consumer
consumer/producer/rpc library built over aioamqp
Stars: ✭ 36 (+140%)
Mutual labels:  asyncio
glQiwiApi
The ultrarapid and multifunctional wrapper over QIWI and YooMoney
Stars: ✭ 44 (+193.33%)
Mutual labels:  asyncio
steam.py
An async python wrapper to interact with the Steam API and its CMs
Stars: ✭ 74 (+393.33%)
Mutual labels:  asyncio
aioapns
An efficient APNs Client Library for Python/asyncio
Stars: ✭ 60 (+300%)
Mutual labels:  asyncio

snekcord!

A higly customizable Discord API wrapper.

import asyncio
import snekcord

intents = (
    snekcord.WebSocketIntents.GUILDS
    | snekcord.WebSocketIntents.GUILD_MESSAGES
)
client = snekcord.WebSocketClient("Bot <TOKEN>", intents=intents)


@client.messages.on_create()
async def message_create(evt: snekcord.MessageCreateEvent):
    channel = await evt.channel.unwrap()

    if evt.message.content == 'ping':
        await channel.messages.create(content='pong')


if __name__ == '__main__':
    asyncio.run(client.connect())
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].