Allin is an experimental asynchronous web framework.
Project description
allin
Allin is an experimental asynchronous web framework.
I didn't expect this framework to be used in a production environment, as it's still in the early stages of development. Not sure when this framework can be used in production 😬
You can help this project get better by creating an issue or PR. Thank you for your time!
Table of Contents:
Allin
is heavily inspired by Flask, Starlette & Falcon.
:raised_eyebrow: Why ?
I'm just curious :monocle_face:
Yup, I'm curious about how a web application based on ASGI works.
It may not yet fully comply with the ASGI application specifications as documented. But, for the main features like route mapping, HTTP responses, error handling, parsing the request body it's there.
...and I want to build my own framework from scratch so I know how the application works.
Literally, the "framework parts" weren't built from scratch as I also used third party modules and some "parts from other sources" were used as references.
This is part of the journey
:books: Roadmap
-
Lifespan Protocol
-
HTTP Protocol
-
HTTP Headers
-
HTTP Request
- JSON Body Support
- MessagePack Body Support
- Form Data Support
- Cookies
- Query Parameters
-
HTTP Responses
- JSONResponse
- MessagePackResponse
-
HTTP Middleware
- Before HTTP Request
- After HTTP Request
-
Routing
- Decorator shortcuts such as
@get
,@post
,@put
, etc. are available. - Nesting routers
- Decorator shortcuts such as
-
-
Extension
-
Websocket Support
:star_struck: Features
- Global variables. (It means, you can access the
app
andrequest
object instances globally) - Error handling
-
JSON
andMessagePack
requests are supported out of the box (thanks to msgspec) - Form Data Support (
application/x-www-form-urlencoded
ormultipart/form-data
) - Decorator shortcuts such as
@get
,@post
,@put
, etc. are available. - Nesting routers
:love_you_gesture: Quick Start
Here is an example application based on the Allin
framework and I'm sure you are familiar with it.
from allin import Allin, JSONResponse
app = Allin()
@app.route("/")
async def index():
return JSONResponse({"message": "Hello World!"})
:point_down: Explanation
- The
app
variable is the ASGI application instance. - And we create an endpoint with the route
/
on the lineapp.route(...)
- Then we add the
index()
function to handle the/
route. - And the handler function will return a JSON response with the content
{"message": "Hello World!"}
That's it! looks familiar right?
Want more? check out other sample projects here
:sunglasses: Installation
Install from source
git clone --depth 1 https://github.com/aprilahijriyan/allin.git
cd allin
Need https://python-poetry.org/ installed on your device
poetry build
pip install ./dist/*.whl
Install with pip
Currently I just published the pre-release version v0.1.1a0
. So, maybe you need to install it with the --pre
option. Example:
pip install --pre allin
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 allin-0.1.1a1.tar.gz
.
File metadata
- Download URL: allin-0.1.1a1.tar.gz
- Upload date:
- Size: 20.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe50cbee0f85a28e8394584b3903a9dc6432a77257118f78e07a473136359f95 |
|
MD5 | fe7e96b6a865ae5b073e0bfc4bda77ea |
|
BLAKE2b-256 | bf03e110aab815b592680e04fce6bba8071e46478da0bfb35d2f8deffbed16f0 |
File details
Details for the file allin-0.1.1a1-py3-none-any.whl
.
File metadata
- Download URL: allin-0.1.1a1-py3-none-any.whl
- Upload date:
- Size: 23.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 958512e65ac22860d18c7b44daa029a921a41cd1d976a02325d5487818ce8c0e |
|
MD5 | c059ec583c623452e5c7cf354cad2df0 |
|
BLAKE2b-256 | f0086ed275083234db2d33a8bc1eec942db7bfe540d4f541bd903fd9ae008838 |