Skip to main content

Minimalistic Python Bot Framework

Project description

Kuroko

Minimalistic Python Task Executor Framework

Requirements

Installation

pip install kuroko

Usage

examples

5sec interval task execution

import kuroko

class MyBot(kuroko.Bot):

    @kuroko.timer(5)
    def echo_pong(self):
        print("pong")

bot = MyBot()
bot.start()

crontab like task execution

class MyBot(kuroko.Bot):

    @kuroko.crontab('*/5 * * * *')
    def echo_pong(self):
        print("pong")

watchdog thin wrapper

class MyBot(kuroko.Bot):

    @kuroko.watch
    def echo_pong(self, event):
        print("pong", event)

    @kuroko.watch(patterns=['*.py'])
    def echo_ping(self, event):
        print("ping", event)

logging

class MyBot(kuroko.Bot):

    @kuroko.crontab('*/5 * * * *')
    def echo_pong(self):
        self.log.info("app logging")

TODO

  • colorize logging

  • statistics web frontend

  • terminal like interface

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kuroko-0.1.3.tar.gz (3.9 kB view details)

Uploaded Source

File details

Details for the file kuroko-0.1.3.tar.gz.

File metadata

  • Download URL: kuroko-0.1.3.tar.gz
  • Upload date:
  • Size: 3.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for kuroko-0.1.3.tar.gz
Algorithm Hash digest
SHA256 0b7cf6ec937bc11f5fc53b3e687a6934a5a5c7d94fb41eb08a3094d08abb5718
MD5 01284a3bddc0f5556981431481e68bf5
BLAKE2b-256 bbdea34be6ad58b90a7c4059800eec63cc0b12d5dca9e759d3fe9c8e8e57cc71

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page