Skip to main content

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.12.tar.gz (36.3 kB view details)

Uploaded Source

File details

Details for the file Amino.ed-2.8.4.12.tar.gz.

File metadata

  • Download URL: Amino.ed-2.8.4.12.tar.gz
  • Upload date:
  • Size: 36.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for Amino.ed-2.8.4.12.tar.gz
Algorithm Hash digest
SHA256 bf4fcd65b175fa5f89319118cead67efedfd9ea8a9e4f1e56348e9d79741c699
MD5 2d36b5980315361aad0d0a964e9e3c89
BLAKE2b-256 f94d819dad397f5547d07a7c85160e6f0d38b1e74b5f3d9caacd0b9824d1a737

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page