Metadata-Version: 2.1
Name: testcanarybot
Version: 0.802
Summary: VKontakte asynchronous bot framework like Django
Home-page: https://github.com/kensoi/testcanarybot
Author: andprokofieff
Author-email: prokofieff.help@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: aiohttp

<p align="center">
    <a href = "http://kensoi.github.io/testcanarybot/">
        <img src="http://kensoi.github.io/testcanarybot/kcb-wide-white.jpg">
    </a>
</p>

# testcanarybot
async framework for vk chatbots


### simple bot run script example
There's a sample of your simple bot
```
import testcanarybot

token = """7a6fa4dff77a228eeda56603b8f53806c883f011c40b72630bb50df056f6479e52a"""
group_id = 1 # your community id

bot = testcanarybot.app(token = token, group_id = group_id)
bot.install()
bot.listen()
```
## Guides
First bot manual -- http://kensoi.github.io/testcanarybot/firstbot.html  
Creating testcanarybot module manual -- http://kensoi.github.io/testcanarybot/createmodule.html  

## Testcanarybot instruments
Events -- http://kensoi.github.io/testcanarybot/events.html  
Objects -- http://kensoi.github.io/testcanarybot/objects.html  

### Tools
Handler tools -- http://kensoi.github.io/testcanarybot/tools/handlers.html  
Assets -- http://kensoi.github.io/testcanarybot/tools/assets.html  
Keyboard -- http://kensoi.github.io/testcanarybot/tools/keyboard.html  
Uploader -- http://kensoi.github.io/testcanarybot/tools/upload.html  

## Examples
[root examples](https://github.com/kensoi/testcanarybot/tree/master/examples/bot)  
[module examples](https://github.com/kensoi/testcanarybot/tree/master/examples/modules)  

