Async (ASGI) Python web framework
Project description
Backendpy
Async (ASGI) Python web framework for building the backend of your project!
Some features:
- Application-based architecture and the ability to install third-party applications in a project
- Support of middlewares for different layers such as Application, Handler, Request or Response
- Supports events by hook feature
- Data handler classes, including validators and filters to automatically apply to request input data
- Supports a variety of responses including JSON, HTML, file and… with various settings such as stream, gzip and…
- Router with the ability to define urls as Python decorator or as separate files
- Application-specific error codes
- Optional default database layer by the Sqlalchemy async ORM with management of sessions for the scope of each request
- Optional default templates layer by the Jinja template engine
- …
Requirements
Python 3.8+
Installation
$ pip3 install backendpy
You also need to install an ASGI server such as Uvicorn, Hypercorn or Daphne:
$ pip3 install uvicorn
Examples
Basic usage
asgi.py
from backendpy.app import Backendpy
from backendpy.response import response
backendpy = Backendpy()
@backendpy.uri(r'^/hello-world$', ['GET'])
async def hello(request):
return response.Text('Hello, World!')
Run:
$ uvicorn asgi:backendpy
Application based usage
Example app:
python_path/hello_app/main.py
from backendpy.app import App
from .handlers import routes
app = App(
routes=[routes])
python_path/hello_app/handlers.py
from backendpy.router import Routes
from backendpy.response import response
routes = Routes()
@routes.uri(r'^/hello-world$', ['GET'])
async def hello(request):
return response.Text('Hello World!')
Example project:
project/asgi.py
from backendpy.app import Backendpy
backendpy = Backendpy()
project/config.ini
[apps]
active =
python_path.hello_app
Run project with uvicorn asgi:backendpy
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
backendpy-0.1.0a1.tar.gz
(24.9 kB
view details)
Built Distribution
File details
Details for the file backendpy-0.1.0a1.tar.gz
.
File metadata
- Download URL: backendpy-0.1.0a1.tar.gz
- Upload date:
- Size: 24.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c0f7461748b6ac7c70ab9bac07165c8ff67f006b15b330e2edfcdc539ccb7ef |
|
MD5 | 066b48ba9c270b46a66664a584221699 |
|
BLAKE2b-256 | 8c2b0fdd1305c65727356064b7d7743935269255b29eb72716a6c08746c0c974 |
File details
Details for the file backendpy-0.1.0a1-py3-none-any.whl
.
File metadata
- Download URL: backendpy-0.1.0a1-py3-none-any.whl
- Upload date:
- Size: 30.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 930d1913f2e32ac63e72a757d0d64ea147ca1421e1e12bb778378a7792310d83 |
|
MD5 | 2b062c613c59f0a2fada0a7f68759b7c |
|
BLAKE2b-256 | f027f98dda353587c303a311023873f25041f61c95dbbbdc01dd0b39ca299d04 |