Lyght
Lighting fast python web framework.
- Documentation: https://SimeonAleksov.github.io/lyght
- GitHub: https://github.com/SimeonAleksov/lyght
- PyPI: https://pypi.org/project/lyght/
Use the package manager pip to install lyght.
pip install lyght
from lyght.routes import Route, Routes
from example.controllers import MyController
home_routes = Route(
path='/home',
controller=MyController,
name='example.home',
)
route_config = Routes(
routes=[
home_routes,
]
)
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
- TODO