Backbone package for interfaces and infrastructure in Python projects
Project description
nlbone
nlbone (NumberLand Backbone) is a lightweight Python package that provides the foundational interfaces and
infrastructure for NumberLand projects.
It follows a clean architecture style (ports & adapters) so that domain logic is separated from infrastructure concerns.
✨ Features
- Domain interfaces
- Immutable domain models
- Application services (use cases) independent of infrastructure.
- Infrastructure adapters (DB, HTTP, etc.).
- Config management with pydantic-settings.
- Dependency injection container for easy wiring.
- Testing ready with pytest + pytest-asyncio.
- Dev tools: Ruff (lint), Mypy (typing), Pre-commit hooks.
📦 Installation
pip install nlbone
🛠 For development:
git clone https://github.com/your-org/nlbone.git
cd nlbone
python -m venv .venv
source .venv/bin/activate # (Linux/macOS)
# .venv\Scripts\activate # (Windows)
pip install -e ".[dev]"
python -m pip install build twine
python -m build
🚀 Quick Example
import anyio
from nlbone import build_container
async def main():
container = build_container()
user = await container.register_user("me@numberland.com")
print(user)
anyio.run(main)
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nlbone-0.1.33.tar.gz.
File metadata
- Download URL: nlbone-0.1.33.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41aae206e573ebec2b9c580b11a63be0b5663594f1bec19da19c7d847f87a4f6
|
|
| MD5 |
ca3ffa8c48be04dc8c7e49847e1462d5
|
|
| BLAKE2b-256 |
239e768617dd90780bf8d5f41828985d5fc07aa1f471ca3d37aed570eeb8e748
|
File details
Details for the file nlbone-0.1.33-py3-none-any.whl.
File metadata
- Download URL: nlbone-0.1.33-py3-none-any.whl
- Upload date:
- Size: 26.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e35316ea4f2c49b05d0803a281907b351fecd5215c59c0d5f5a90ec5a0e50c8d
|
|
| MD5 |
e2809fefdcc2a00599e2989d4ca78a3b
|
|
| BLAKE2b-256 |
ba877c9f51cbccffdaef76fbab21716ad45271038e5bc788d99fec87e5d550c0
|