Metadata-Version: 2.1
Name: vkbee
Version: 2.2
Summary: Simple Async VKLibrary faster than vk_api
Home-page: https://github.com/asyncvk/vkbee
Author-email: cryptoyamafox@gmail.com
License: Mozilla Public License 2.0
Project-URL: Github, https://github.com/asyncvk/vkbee
Project-URL: Documentation, https://github.com/asyncvk/vkbee
Keywords: vk api framework python
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Requires-Python: >=2
Description-Content-Type: text/markdown
Requires-Dist: aiohttp
Requires-Dist: requests

﻿![vkbee](https://github.com/asyncvk/vkbee/blob/master/vkbee/bgtio.png?raw=true)

[Documentation](https://asyncvk.github.io)

[Example Bot](https://pastebin.com/raw/hxhXPyb9)

### vkbee
## Установка
```bash
pip3 install vkbee
```
Simple Async VKLibrary faster than vk_api
# Пример работы
```python
import asyncio
import vkbee

async def main(loop):
    token = "сюдатокен"
    vk_s = vkbee.VkApi(token, loop=loop)
    vk = vk_s.get_api()
    await vk_s.messages.send(
        chat_id=1,
        message='VKBEE',
        random_id=0
    )
loop = asyncio.get_event_loop()
loop.run_until_complete(main(loop))
loop.close()
```





