Metadata-Version: 2.4
Name: evatygram
Version: 2.1.1
Summary: This is an unofficial library and fastest library for deploying robots on Rubika accounts.
Home-page: https://github.com/eeeterii/evatygram/
Author: Eva
Author-email: marwanalknah017@gmail.com
Keywords: rubika,evatygram,rubikaio,chat,bot,robot,asyncio
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet
Classifier: Topic :: Communications
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: ~=3.8
Description-Content-Type: text/markdown
Requires-Dist: wheel
Requires-Dist: pycryptodome
Requires-Dist: websockets
Requires-Dist: ujson
Requires-Dist: pybase64
Requires-Dist: urllib3
Requires-Dist: mutagen
Requires-Dist: TinyTag
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

<p align="center">
    <a href="https://github.com/snipe4kill/evatygram">
        <img src="https://upcdn.io/W142hJk/thumbnail/demo/4mrDXtYPJA.png.crop" alt="evatygram" width="128">
    </a>
    <br>
    <b>Rubika API Framework for Python</b>
    <br>
    <a href="https://pypi.org/project/evatygram/">Homepage</a>
    •
    <a href="https://t.me/evatygram_doc">Documentation</a>
    •
    <a href="https://pypi.org/project/evatygram/#history">Releases</a>
    •
    <a href="https://t.me/rubika_library">News</a>
</p>

---

# evatygram

> Elegant, modern and asynchronous Rubika API framework in Python for users and bots

[![PyPI version](https://badge.fury.io/py/evatygram.svg)](https://pypi.org/project/evatygram/)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

---

## Example

```python
from evatygram import Client

app = Client("my_account")

@app.Handler
async def hello(message):
    await app.sendMessage(message.get('object-guid'), 'Hello from **evatygram**!')
