A library to create Amino bots.
Project description
Installing
pip install amino.ed
Example
import aminoed
@aminoed.run_with_client()
async def main(client: aminoed.Client):
await client.login("email", "password")
Chat-bot example
from aminoed import *
bot = Client(prefix="!")
@bot.execute() # Runs in the background, after bot.start()
async def on_start():
print(f"Bot {bot.auth.user.nickname} working.")
@bot.command() # Comand name - function name
async def help(event: Event):
await event.send_message("[c]Comands\n" \
"?chatmembers - members count.")
@bot.command("chatmembers", "?") # Custom command and prefix
async def chatmembers(event: Event):
chat = await event.client.get_chat_thread(event.threadId)
await event.send_message(f"Chat members count: {chat.membersCount}.")
bot.start("email", "password")
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
Amino.ed-2.8.4.10.tar.gz
(36.2 kB
view details)
File details
Details for the file Amino.ed-2.8.4.10.tar.gz
.
File metadata
- Download URL: Amino.ed-2.8.4.10.tar.gz
- Upload date:
- Size: 36.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e74d4a8ca479b4a3088f0edcda3960c378dd9d67ed942610aea47511db0caa6 |
|
MD5 | 952f13007e7ae952559b5dec1b1bf49b |
|
BLAKE2b-256 | cff56df1117f2111ef5309498175febe3c5767a8257f6164d58620d935101993 |