Descripción de mi paquete
Project description
Amisynth
Amisynth es un paquete para integrar funciones personalizadas en Discord.
Instalación
Para instalar este paquete, usa pip:
pip install Amisynth
Codigo Basico
from Amisynth.client import AmiClient
bot = AmiClient(prefix="!")
bot.new_command(name="test",
type="text",
code="Hi everyone!")
bot.run("""TOKEN BOT""")
Codigo con Cogs
AmiClient(prefix="!", cogs="carpeta de cogs")
Eventos
from Amisynth.client import AmiClient
bot = AmiClient(prefix="!")
bot.new_event(name="$onMessage",
code="Hi everyone!")
bot.run("""TOKEN BOT""")
Cog Exmaple
# cog/test.py
def setup(bot):
bot.new_command(name="test",
type="text",
code="Hi everyone!")
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
amisynth-0.1.3.tar.gz
(20.9 kB
view details)
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
amisynth-0.1.3-py3-none-any.whl
(47.7 kB
view details)
File details
Details for the file amisynth-0.1.3.tar.gz.
File metadata
- Download URL: amisynth-0.1.3.tar.gz
- Upload date:
- Size: 20.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53b6611984c08f67c27bd7534bfa7162b97f4025cfbc6906910a12a43a0c0abe
|
|
| MD5 |
899e62c5635c24578c2769284eb4a853
|
|
| BLAKE2b-256 |
db533153147f497fc0bf6318d7f2fec78b955798b35634b8648ca40d8ba99aca
|
File details
Details for the file amisynth-0.1.3-py3-none-any.whl.
File metadata
- Download URL: amisynth-0.1.3-py3-none-any.whl
- Upload date:
- Size: 47.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f69ba64746f2421a1f95360253dc70fb11d6ee4be68f72d49acb9bff91c5a85
|
|
| MD5 |
d19151846220282970ecbd7c7d732697
|
|
| BLAKE2b-256 |
d710ce5beb4f5e126bcbe92fea3829b721cf4e913168ce3fb41a563868fa1acf
|