Skip to main content

In-memory pub/sub engine plugin for process-local publish-subscribe channels, events, and Tigrbl realtime workflows.

Project description

tigrbl_engine_mempubsub

Tigrbl logo

In-memory pub/sub engine plugin for process-local publish-subscribe channels, events, and Tigrbl realtime workflows.

PyPI version for tigrbl_engine_mempubsub Downloads for tigrbl_engine_mempubsub Discord community for tigrbl_engine_mempubsub Repository hits for tigrbl_engine_mempubsub README Apache 2.0 license Python versions 3.10 | 3.11 | 3.12 | 3.13 | 3.14 for tigrbl_engine_mempubsub Workspace group for tigrbl_engine_mempubsub

What is tigrbl_engine_mempubsub?

In-memory pub/sub engine plugin for process-local publish-subscribe channels, events, and Tigrbl realtime workflows.

Why use tigrbl_engine_mempubsub?

Use it when a Tigrbl application needs this backend without installing every engine package.

When should I install tigrbl_engine_mempubsub?

Install it when the storage, analytics, cache, or integration workload named by this package is the intended runtime backend.

Who is tigrbl_engine_mempubsub for?

Application developers, data platform engineers, and operators choosing concrete persistence or data-plane behavior.

Where does tigrbl_engine_mempubsub fit?

tigrbl_engine_mempubsub lives at pkgs/engines/tigrbl_engine_mempubsub and serves process-local in-memory runtime behavior.

How does tigrbl_engine_mempubsub work?

It exposes a tigrbl.engine entry point and a package register() hook so Tigrbl can discover or load the backend at runtime.

Certification Status

  • Package status: governed package in the tigrbl/tigrbl workspace.
  • Governance source: SSOT registry.
  • Release evidence: publish workflow validates package builds, tests, GitHub release assets, and PyPI publication for managed packages.
  • Local certification guard: pkgs/core/tigrbl_tests/tests/unit/test_package_badges_and_notices.py verifies every package README keeps the Discord badge, Apache 2.0 badge, explicit Python-version badge, LICENSE, and NOTICE.
  • Scope note: this README documents the package boundary. Runtime feature support remains governed by .ssot/ entities and the conformance docs linked below.

Install

uv add tigrbl_engine_mempubsub
pip install tigrbl_engine_mempubsub

Surface Coverage

Surface Value
PyPI package tigrbl_engine_mempubsub
Repository path pkgs/engines/tigrbl_engine_mempubsub
Python import root tigrbl_engine_mempubsub
Console scripts none declared
Entry points tigrbl.engine
Optional extras none declared
Legal files LICENSE, NOTICE
Supported Python `3.10

What It Owns

tigrbl_engine_mempubsub owns the engine plugin boundary. It should be installed when you need this package's focused responsibility without assuming every other Tigrbl workspace package is present.

Implementation orientation:

  • tigrbl_engine_mempubsub: plugin, pubsub, session

Public API and Import Surface

  • Import roots: tigrbl_engine_mempubsub.
  • Public symbols: __version__.
  • Workspace dependencies: tigrbl.
  • External runtime dependencies: none declared.

Usage Examples

Verify the installed package

python -m pip show tigrbl_engine_mempubsub
python - <<'PY'
from importlib.metadata import version
print(version("tigrbl_engine_mempubsub"))
PY

Register the engine plugin explicitly

from tigrbl_engine_mempubsub.plugin import register

register()

Discover the engine through package metadata

from importlib.metadata import entry_points

for entry_point in entry_points(group="tigrbl.engine"):
    if entry_point.module.startswith("tigrbl_engine_mempubsub"):
        plugin_register = entry_point.load()
        plugin_register()

Install alongside the facade

uv add tigrbl tigrbl_engine_mempubsub
pip install tigrbl tigrbl_engine_mempubsub

How To Choose This Package

Choose tigrbl_engine_mempubsub when the quick-answer table matches your use case. Choose tigrbl instead when you want the full public facade. Choose a lower-level package such as tigrbl-core, tigrbl-base, or tigrbl-runtime when you are building framework extensions or testing a specific internal boundary.

Related Packages

Documentation Links

Support

Package-local Boundary

This README is the package-local distribution entry point for tigrbl_engine_mempubsub. It answers install, usage, API, ownership, and certification-orientation questions for this package. Broader architectural decisions, release status, and cross-package proof chains remain in the repository-level docs and SSOT registry.

License

Licensed under the Apache License, Version 2.0. See LICENSE, NOTICE, and the official Apache 2.0 license text.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tigrbl_engine_mempubsub-0.4.2.tar.gz (10.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tigrbl_engine_mempubsub-0.4.2-py3-none-any.whl (15.4 kB view details)

Uploaded Python 3

File details

Details for the file tigrbl_engine_mempubsub-0.4.2.tar.gz.

File metadata

  • Download URL: tigrbl_engine_mempubsub-0.4.2.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tigrbl_engine_mempubsub-0.4.2.tar.gz
Algorithm Hash digest
SHA256 af15e4595ec6061581ab66468a1f0eb781d6c4f88e5341306a5d7367189d721c
MD5 68125ed2b520010068c07c0dc89a409a
BLAKE2b-256 4cdd23f848900b9b01e8b2524ef9d54efa0f1e2fd4915abecc472746e64ce0c5

See more details on using hashes here.

File details

Details for the file tigrbl_engine_mempubsub-0.4.2-py3-none-any.whl.

File metadata

  • Download URL: tigrbl_engine_mempubsub-0.4.2-py3-none-any.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.18 {"installer":{"name":"uv","version":"0.11.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for tigrbl_engine_mempubsub-0.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 bdf4f00ebec6c558553a933a463f90bdb64240f6ad07039badd2c2334237d4bb
MD5 57fdbe0d2d929ecc4f92e26639d57afa
BLAKE2b-256 1bec36a5c7693fbed4b3babb5c2b1a6a3770fbeea695e3ceec0f5e3be1a870a4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page