Skip to content

Latest commit

 

History

History
76 lines (47 loc) · 1.72 KB

README.md

File metadata and controls

76 lines (47 loc) · 1.72 KB

Lyght

Lighting fast python web framework.

Installation

Use the package manager pip to install lyght.

pip install lyght

Usage

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,
    ]
)

Contributing

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.

License

MIT

Features

  • TODO

Authors