Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/igorgue/fire
Fire is a web framework written in Mojo (🔥) with some Python (🐍) magic (✨)
https://github.com/igorgue/fire
Last synced: about 2 months ago
JSON representation
Fire is a web framework written in Mojo (🔥) with some Python (🐍) magic (✨)
- Host: GitHub
- URL: https://github.com/igorgue/fire
- Owner: igorgue
- Created: 2023-12-29T18:50:24.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-26T21:31:06.000Z (4 months ago)
- Last Synced: 2024-07-26T22:59:10.494Z (4 months ago)
- Language: Mojo
- Size: 2.11 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-max-mojo - igorgue/fire
- awesome-max-mojo - igorgue/fire
README
# fire 🔥
A web framework written in Mojo.
**NOTE**: This is a work in progress. It is not ready for production use.
## example
```python
from fire import Request, Response, app, route as rfn index(request: Request) -> Response:
# TODO: add response attributes
return Response()fn posts(request: Request) -> Response:
return Response()fn main():
r["/"](index)
r["/posts"](posts)app.run()
```