Lightweight ASGI framework based on Starlette.
Project description
Mojito
ASGI Python web framework.
Based on Starlette and Jinja2 templates, Mojito is an async python web framework meant to resemble the same ease of use as Flask but built with an ASGI implementation.
Mojito is Starlette underneath and provides a thin layer on top to make dealing with app management easier, providing ease-of-life defaults, and adding a few handy tools like g, the global context variable similar to Flask's g.
Provided handy bits:
- g: Global context variable
- Message flashing: built off of g and cookies. Provides a way of displaying messages the same way as Flask during the session.
Route functions
Routes are created primarily by decorating a function with @AppRouter.route()
.
Each function must take the Request as the first parameter.
The default response type of routes is HTMLResponse.
Handy bits
g: GlobalContextVar
Global context variable similar to g in Flask. Scoped to the request lifecycle it can be used anywhere throughout the application and will be unique to each request.
Usage
g.foo = 'foood'
print(g.foo) -> 'foood'
Message flashing
Provides message flashing like Flask with methods flash_message()
and get_flashed_messages()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mojito_web-0.1.0a2.tar.gz
.
File metadata
- Download URL: mojito_web-0.1.0a2.tar.gz
- Upload date:
- Size: 14.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fec18abac03651ebccd26677ea71c37ceaad6dabb796ed76ea60f4bf23b7864 |
|
MD5 | 651dae063d515e5fafa4681d38839765 |
|
BLAKE2b-256 | 1f99768f041d3fa64585978fdee92a52c8f9c43daf60d2ed05141cc7514cd1fd |
File details
Details for the file mojito_web-0.1.0a2-py3-none-any.whl
.
File metadata
- Download URL: mojito_web-0.1.0a2-py3-none-any.whl
- Upload date:
- Size: 16.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4509ea3898c039574b040957b5b2c8d91986fafb827c40482b0e66f8fed97be0 |
|
MD5 | d061743730c86198caf72e72b0ec99e4 |
|
BLAKE2b-256 | 853f8395d4b51ca1cc3067f846f96dbb7e9e6d0915fe4bd17503f183480671ff |