Async (ASGI) Python web framework
Project description
Backendpy
Python web framework for building the backend of your project!
Some features:
- Asynchronous programming (ASGI-based projects)
- 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 and hooks
- 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 templating layer by the Jinja template engine
- …
Requirements
Python 3.8+
Installation
$ pip3 install backendpy
Or use the following command to install optional additional libraries:
$ pip3 install backendpy[full]
You also need to install an ASGI server such as Uvicorn, Hypercorn or Daphne:
$ pip3 install uvicorn
Quick Start
Create Project
project/main.py
from backendpy import Backendpy
bp = Backendpy()
Create Application
project/apps/hello/main.py
from backendpy.app import App
from .handlers import routes
app = App(
routes=[routes])
project/apps/hello/handlers.py
from backendpy.router import Routes
from backendpy.response import Text
routes = Routes()
@routes.get(r'^/hello-world$')
async def hello(request):
return Text('Hello World!')
Activate Application
project/config.ini
[apps]
active =
project.apps.hello
Run Project
Inside the project root path:
$ uvicorn main:bp
Command line
Project creation
$ backendpy create_project --name myproject
To create a project with more complete sample components:
$ backendpy create_project --name myproject --full
App creation
$ backendpy create_app --name myapp
$ backendpy create_app --name myapp --full
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.6a1.tar.gz
(26.7 kB
view details)
Built Distribution
File details
Details for the file backendpy-0.1.6a1.tar.gz
.
File metadata
- Download URL: backendpy-0.1.6a1.tar.gz
- Upload date:
- Size: 26.7 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 | 100a0d6fd5aa116e7d58027ca29d087800b2f7387ec8cdb7830c718cd06b724b |
|
MD5 | 2e736127e379f3aa728002304338b5c1 |
|
BLAKE2b-256 | 580735cad07ca6dc5b5f074acc6dbd90dc28959dd17731b61392d8e3b792bbe9 |
File details
Details for the file backendpy-0.1.6a1-py3-none-any.whl
.
File metadata
- Download URL: backendpy-0.1.6a1-py3-none-any.whl
- Upload date:
- Size: 32.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 | b86713779679b476c0442eaae6e826548ae593a56c81d1917e2407fcea06940c |
|
MD5 | 22d4256044dd623e5c519ec84ad624bd |
|
BLAKE2b-256 | ad4f4eeb464ae26bdb3925c6d195f5b21e3604349e7aa1cd8ec1c9cba5100372 |