Skip to main content

The library for management events

Project description

tapp

Asyncio library for creating applications for handling events from the user.

Documentation:

Quick start

Install:

pip install tapp

Example:

# !/usr/bin/python

# content examples/some.py

import asyncio

from tapp import TApp

app = TApp()


@app.route(method="method")
async def method_handler(message: str, version: str) -> None:
    print(message, version)


async def main() -> None:
    await app("method", "message", version="version")


if __name__ == "__main__":
    asyncio.run(main())

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

tapp-1.1.tar.gz (9.2 kB view hashes)

Uploaded Source

Built Distribution

tapp-1.1-py3-none-any.whl (13.4 kB view hashes)

Uploaded Python 3

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