Metadata-Version: 2.1
Name: kavk-api
Version: 1.1.0
Summary: 
License: MIT
Author: Kravandir
Author-email: kravandir@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: aiohttp (>=3.8.4,<4.0.0)
Description-Content-Type: text/markdown

# KAVK_API
[![](https://img.shields.io/pypi/v/kavk_api?style=for-the-badge)](https://pypi.org/project/kavk-api/)
[![](https://img.shields.io/pypi/l/kavk_api?style=for-the-badge)](https://pypi.org/project/kavk-api/)
[![](https://img.shields.io/badge/VK-Contact-blue?style=for-the-badge)](https://vk.com/klm_ahmed)

## Установка
`pip install kavk_api`

## Пример
``` python
import asyncio
from kavk_api import Vk
from kavk_api.longpoll import BotLongPoll

async def main():
    vk = Vk('token')
    longpoll = LongPoll(vk)
    await vk.wall.post(message="Привет kavk_api!")
    async for event in longpoll.listen():
        print(event.type, event.object)
        
asyncio.run(main())
```

## TODO
- Замена asyncio.run()

