A Python library to wrap the Revolt API, made to be easy-to-use but powerful and feature rich.
Project description
pyrevolt
Installing pyrevolt
Python 3.10 or greater is required
To install pyrevolt, you can run the following command:
# Linux/macOS command
python3 -m pip install pyrevolt
# Windows
py -m pip install pyrevolt
Using pyrevolt
This shows a very quick example of how to use pyrevolt. As a note, pyrevolt is still under heavy development and this example and the library as a whole may change.
import pyrevolt
bot = pyrevolt.Bot(prefix="!")
@pyrevolt.ReadySimplified()
async def onReady() -> None:
print("Ready!")
@bot.on(pyrevolt.GatewayEvent.OnMessage)
async def onMessage(message: pyrevolt.Message) -> None:
print(f"{message.author.username} said: {message.content}")
@bot.commands.Command(name="ping")
async def ping(message: pyrevolt.Message) -> None:
await message.Send(content=f"Pong {message.author.username}!", embed=pyrevolt.Embed.Create(title="Pong!", description=f"{message.author.mention}!", colour="#0000ff"), replies=[pyrevolt.Reply(message.messageID, True)])
@bot.commands.Command(name="hello", aliases=["hi"])
async def hello(message: pyrevolt.Message, name: str) -> None:
await message.Send(content=f"Hello {name}!")
@hello.Error
async def helloError(message: pyrevolt.Message, error: Exception) -> None:
await message.Send(content=f"{str(error)}")
bot.Run(token="TOKEN")
As the library expands, more examples will be added, but we expect users during the very initial development phases to read through the documentation and see how to use the library. If you have any questions, please join the support server and ask for help.
Useful Information
Code Quality
Repository Information
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
Built Distribution
File details
Details for the file pyrevolt-0.2.9.dev0.tar.gz
.
File metadata
- Download URL: pyrevolt-0.2.9.dev0.tar.gz
- Upload date:
- Size: 18.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 281dcd5401096e407c62c1605cfa849a502edc0b5d46c9d3c1d865461131595a |
|
MD5 | bf9f7dc9a1b3ebdbefaf02d36bc5b646 |
|
BLAKE2b-256 | fc5151203e20438bbedace2a68f985790d00e4e27f55488a51d8c6a7e572ca6d |
File details
Details for the file pyrevolt-0.2.9.dev0-py3-none-any.whl
.
File metadata
- Download URL: pyrevolt-0.2.9.dev0-py3-none-any.whl
- Upload date:
- Size: 21.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6e142451638d9b36d7b75909d2d29e9747cadfcc0c88f191eee5f749c703604 |
|
MD5 | 954115b79054305a9e61b9ce4195979f |
|
BLAKE2b-256 | 6d2a3c3a7c10916d01da9beacc4addcd3191b6e6133b56d1ed0c0e2b8747ed08 |