Simple command line utility to run Bjoern WSGI

Kapustlo c934f85217 exit > sys.exit hai 1 ano
bjcli c934f85217 exit > sys.exit hai 1 ano
scripts 5bb4f07c82 Added helper scripts hai 1 ano
tests 276e30f527 Simplified test app hai 1 ano
.gitignore 49a897a08f Ignored pyright config hai 1 ano
LICENSE 7c39a99e55 Initial commit %!s(int64=2) %!d(string=hai) anos
README.md 9fa039a775 Refactoring (dropped support for Python3.8) hai 1 ano
requirements.txt 2d434b4347 Added wheel to requirements hai 1 ano
setup.py d7d360e39d Fixed classifiers hai 1 ano

README.md

bjcli

bjcli is a simple command line utility to run Bjoern WSGI server

Features

  • Forks
  • Environment variables support

Installation

pip install bjcli

Usage

bjcli -w 4 -i 127.0.0.1 -p 8088 app.wsgi:application

Using sockets

bjcli -w 4 -i unix:/path/to/socket app.wsgi:application

Examples above would import application from app.wsgi and pass it to Bjoern

Argument Description Required Default Type
-w Number of workers False 1 int
-i Host False 127.0.0.1 str
-p Port. If left blank and the host is an IP address, 8088 is assigned False None None/int
module:wsgi_app (first positional) Module containing "wsgi_app" (module attr name after ":") True - module