AresBlackheart / K_Amino

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

k_amino

k_amino is unofficial client for Aminoapps API in Python.

Installation

You can use either python3 setup.py install or pip3 install k-amino.py to install. This module is tested on Python 3.9+.

Contributing

k_amino is open source module, anyone can contribute. Please see the Github Repository

Discord

You can join the Discord Server to add suggestions or to report problems and to get new updates and changes

Youtube Channel

you can check this youtube channel for more information about script and bots

Features

  • Faster than other Aminoapps python modules
  • Supports async and sockets, events
  • Easy and sample to use
  • No Too many requests.
  • Continual updates and bug fixes
  • Have alot of useful functions

Examples

Bot Support

from k_amino import Client


client = Client(bot=True)
client.login("< email >", "< password >")


@client.command()
def test(data, ok: str = "ok"):
    data.subClient.send_message(data.chatId, f"Test is {ok}!")

Get SessionID

import k_amino

client = k_amino.Client()
client.login("< email >", "< password >")
print(client.sid)

Login with SessionID

import k_amino

client = k_amino.Client()
client.sid_login("< sid >")
print(client.sid)

Send a message in chat

from k_amino import(
Client,
SubClient
)
import getpass

client = Client()
email = input("email:  ")
password = getpass.getpass("password:  ")
client.login(email=email, password=password)

chat_link = client.get_from_link(input("chat link:  "))
chat_id = chat_link.objectId
ndc_client = SubClient(comId=chat_link.comId)



while True:
    text = input("Your message: ")
    ndc_client.send_message(chatId=chat_id,message=text, messageType=0)
    print(f"message sended:  {text}")

About

License:Other


Languages

Language:Python 100.0%