Registry / devops / inboard

inboard

JSON →
library0.92.0pypypi✓ verified 83d ago

Inboard provides Docker images and utilities to power your Python APIs and help you ship faster. It wraps uvicorn with gunicorn for production-ready ASGI/WSGI serving. Current version: 0.92.0, requires Python >=3.10, <4. Release cadence: irregular, mostly maintenance.

pip install inboard
INSTALL
IMPORT
SIG · INBOARD
I
inboard
devopspythonv0.92.0
Install
3.2s avg
Import
894ms
Disk
35MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v0.92.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.910 runs
installs and imports cleanly · install 0.0s · import 0.936s · 36.1MB
glibc
py 3.103.910 runs
installs and imports cleanly · install 3.2s · import 0.852s · 36MB
35MB installed
● package 35MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

start
from inboard import start
logging_config
from inboard import logging_config

Basic usage: call start() to run the server. Configure via environment variables (e.g., INBOARD_SERVER_ADDRESS).

from inboard import start import os if __name__ == "__main__": start()
inboard --version
Debug
Known issues
breakingInboard dropped support for Python 3.9 in version 0.87.0. Upgrade your Python runtime to >=3.10.
fix
Use Python 3.10+ or pin inboard<0.87.0.
affects: >=0.87.0
gotchaThe 'start()' function only works if called from the main module (__name__ == '__main__'). Importing and calling directly will hang or fail.
fix
Wrap the call in an if __name__ == '__main__' guard.
affects: all
deprecatedThe 'inboard_logging' module is deprecated; use 'inboard.logging_config' instead.
fix
Replace 'from inboard_logging import ...' with 'from inboard import logging_config'.
affects: <0.87.0
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'inboard'
Inboard not installed or installed in wrong environment.
fix
Run 'pip install inboard' in your active environment.
ImportError: cannot import name 'start' from 'inboard' (unknown location)
Inboard version is too old or too new; API changed.
fix
Upgrade to >=0.87.0: 'pip install --upgrade inboard'.
RuntimeError: This event loop is already running
Calling start() inside an asynchronous context (e.g., Jupyter notebook).
fix
Run start() as a script (python your_app.py), not interactively.
Upgrade
Version history
0.92.0latest on PyPI · released Apr 28, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
10
Resources
inboard — pip install inboard · libregistry