A Python wrapper for the Fluxer API
Project description
fluxer-py
A Python API wrapper for Fluxer. Build bots and interact with the Fluxer platform in a simple and elegant way.
Quick example
A dead simple bot with a ping command:
import fluxer
bot = fluxer.Bot(command_prefix="!", intents=fluxer.Intents.default())
@bot.event
async def on_ready():
print(f"Bot is ready! Logged in as {bot.user.username}")
@bot.command()
async def ping(message):
await message.reply("Pong!")
if __name__ == "__main__":
TOKEN = "your_bot_token"
bot.run(TOKEN)
Getting started to contribute
You'll need uv installed, then:
git clone https://github.com/your-username/fluxer-py.git
cd fluxer-py
uv sync --dev
That's it, you're sorted. Uv will handle the .venv and dependecies without conflicts, like a traditional package manager!
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fluxer_py-0.2.0.tar.gz.
File metadata
- Download URL: fluxer_py-0.2.0.tar.gz
- Upload date:
- Size: 25.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4afd13c7836b6509c7d0dfada13d5fb76aa78838d5c26b4781d4db4c1d36d2c4
|
|
| MD5 |
6807727ee02ca4d719e471de33f39b42
|
|
| BLAKE2b-256 |
e21b30c598a8f8bc144bbb8dec00ba0d25bd5575d0d820a03ef96c2f120d6674
|
File details
Details for the file fluxer_py-0.2.0-py3-none-any.whl.
File metadata
- Download URL: fluxer_py-0.2.0-py3-none-any.whl
- Upload date:
- Size: 31.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03bb8c8859a0f91e500515819d657fa3bb53dc6bb77f57fc6419d98dc3116816
|
|
| MD5 |
55d014d4dc05dde465413b15b4cb6904
|
|
| BLAKE2b-256 |
c5d332eb8b167a53ca4ba0928bcbc395442c4958a3e3b75bec35e61ab9b72eb3
|