mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
8b06e9cd39815df356fe36b4e9c0663de079d607
Argenta
Library for creating modular CLI applications
RU - README.ru.md • DE - README.de.md
Installing
pip install argenta
or
poetry add argenta
Quick start
An example of a simple application
# routers.py
from argenta.router import Router
from argenta.command import Command
from argenta.response import Response
router = Router()
@router.command(Command("hello"))
def handler(response: Response):
print("Hello, world!")
# main.py
from argenta.app import App
from argenta.orchestrator import Orchestrator
from routers import router
app: App = App()
orchestrator: Orchestrator = Orchestrator()
def main() -> None:
app.include_router(router)
orchestrator.start_polling(app)
if __name__ == '__main__':
main()
Features in development
- Full support for autocompleter on Linux
- Ability to configure stdout capture when handling input by the handler
Full docs | MIT 2025 kolo | made by kolo
Languages
Python
99.6%
Just
0.4%
