English | Русский
The library for developing systems for messengers and social networks. Great for developing bots. Refer to example for the showcase of the library abilities.
Nice foundation for bot using kutana library - kubot.
python -m pip install kutana
- Create
Kutana
application and add managers. - Register your plugins in the executor. You can import plugin from folders
with function
load_plugins
. Files should be a valid python modules with availableplugin
field with your plugin (Plugin
) or fieldplugins
with list of instances ofPlugin
class. - Start application.
Token for VKManager is loaded from the file "configuration.json" and plugins are loaded from folder "plugins/"
from kutana import *
# Load configuration
with open("configuration.json") as fh:
config = json.load(fh)
# Create application
app = Kutana()
# Create and add VKManager to application
app.add_manager(VKManager(config["vk_token"]))
# Load and register plugins
app.register_plugins(load_plugins("plugins/"))
# Run application
app.run()
from kutana import Plugin
plugin = Plugin(name="Echo")
@plugin.on_startswith_text("echo")
async def _(message, env):
await env.reply("{}".format(env.body))
If your function exists only to be decorated, you can use
_
to avoid unnecessary names
- VKManager (for vk.com groups)
- TGManager (for telegram.org bots)
-
document
's type is nameddoc
inside of Kutana. -
TGAttachmentTemp
is used for storing attachments before sending them withsend_message
orreply
. Attachments can't be uploaded other way -
If you want to download file (attachment) from telegram, you have to use
TGEnvironment.get_file_from_attachment
-
- Michael Krukov - @michaelkrukov
- Other contributors