Metadata-Version: 2.1
Name: eitaapy
Version: 1.0.0
Summary: An asynchronous Python wrapper for the Eitaayar API.
Home-page: https://api-free.ir
Author: Mahdi Ahmadi
Author-email: mahdiahmadi.1208@gmail.com
License: MIT
Project-URL: Bug Tracker, https://t.me/dev_jav
Project-URL: Documentation, https://api-free.ir/
Project-URL: Source Code, https://api-free.ir/
Keywords: eitaayar,eitaa,bot,api,python,asynchronous,aiohttp
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
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: Operating System :: OS Independent
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Environment :: Console
Classifier: Natural Language :: English
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: aiohttp>=3.8.1
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Provides-Extra: docs
Requires-Dist: mkdocs; extra == "docs"
Requires-Dist: pdoc3; extra == "docs"

# eitaapy

🔹 **eitaapy** یک **بسته‌ی غیرهمزمان (Asynchronous)** برای تعامل با API رسمی **Eitaa** است.  
این پکیج به شما امکان ارسال پیام، دریافت اطلاعات کاربران و گروه‌ها، مدیریت بات‌ها و ... را به صورت **آسان و کارآمد** می‌دهد.

---

## 🚀 ویژگی‌ها

✅ **ارتباط غیرهمزمان** (Async) با استفاده از `aiohttp`  
✅ **سادگی در استفاده** با یک رابط کاربری راحت  
✅ **مدیریت پیام‌ها و گروه‌ها**  
✅ **ارسال و دریافت اطلاعات از API**  
✅ **نصب و استفاده‌ی آسان**  

---

## 🛠 نصب

برای نصب **eitaapy** از طریق `pip` کافیست دستور زیر را اجرا کنید:

```sh
pip install eitaapy


```python
import asyncio
from eitaapy import Robot

async def main():
    client = Robot(token="YOUR_API_TOKEN")

    # ارسال پیام به یک کانال یا کاربر
    response = await client.send_message(chat_id="TARGET_GUID", text="سلام! این یک پیام تستی است.")
    
    print(response)

asyncio.run(main())```
