Skip to main content

Genro Routes

Genro Routes Logo

PyPI version Tests codecov Documentation Python 3.10+ License Code style: black

Genro Routes is a transport-agnostic routing engine that decouples method routing from how those methods are exposed. Define your handlers once, then expose them via HTTP, CLI, WebSocket, or any other transport layer.

The routing logic lives in your application objects - the transport adapter (like genro-asgi for HTTP) simply maps external requests to router entries.

Why Transport-Agnostic?

Traditional web frameworks tightly couple routing to HTTP. Genro Routes separates these concerns:

Layer Responsibility
genro-routes Method registration, hierarchies, plugins, introspection
Transport adapter Protocol handling, request/response mapping

This separation enables:

  • Same handlers, multiple transports - Expose your API via HTTP and CLI without duplication
  • Runtime introspection - Query available routes, generate documentation, build admin UIs
  • Testability - Test business logic without HTTP overhead
  • Flexibility - Swap transports without changing application code

Use Cases

  • HTTP APIs - Via genro-asgi adapter
  • CLI tools - Via the built-in RoutingCli adapter (see below)
  • Internal services - Direct method invocation with plugin pipeline
  • Admin dashboards - Runtime introspection for dynamic UIs

Key Features

  1. One class, one router - Every RoutingClass owns exactly one router with isolated state, auto-created and exposed as the route property.
  2. Friendly registration - @route(...) accepts explicit names, auto-strips prefixes, and supports custom metadata.
  3. Simple hierarchies - add_branches({"name": "alias", "instance": child}) (method on RoutingClass) connects an already-built instance with path access (parent.route.node("child/method")).
  4. Plugin pipeline - BasePlugin provides on_decore/wrap_handler hooks and plugins inherit from parents automatically.
  5. Runtime configuration - routing.configure() applies global or per-handler overrides with wildcards and returns reports ("?").
  6. Built-in plugins - logging, pydantic, auth, env, and channel plugins are included out of the box.
  7. Response schema generation - Return type annotations (TypedDict, dataclass, etc.) are automatically converted to JSON Schema and exposed in route metadata for bridges to consume.
  8. Full coverage - The package ships with a comprehensive test suite and no hidden compatibility layers.

Quick Example

from genro_routes import RoutingClass, route

class OrdersAPI(RoutingClass):
    def __init__(self, label: str):
        self.label = label

    @route()
    def list(self):
        return ["order-1", "order-2"]

    @route()
    def retrieve(self, ident: str):
        return f"{self.label}:{ident}"

    @route()
    def create(self, payload: dict):
        return {"status": "created", **payload}

orders = OrdersAPI("acme")
print(orders.route.node("list")())        # ["order-1", "order-2"]
print(orders.route.node("retrieve")("42"))  # acme:42

overview = orders.route.nodes()
print(overview["entries"].keys())      # dict_keys(['list', 'retrieve', 'create'])

Hierarchical Routing

Build nested service structures with path access:

class UsersAPI(RoutingClass):
    @route()
    def list(self):
        return ["alice", "bob"]

class Application(RoutingClass):
    def __init__(self):
        self.users = UsersAPI()

        # Attach child service (instance form: eager, linked immediately)
        self.add_branches({"name": "users", "instance": self.users})

app = Application()
print(app.route.node("users/list")())  # ["alice", "bob"]

# Introspect hierarchy
info = app.route.nodes()
print(info["routers"].keys())  # dict_keys(['users'])

Branches: Lazy Subtrees and Aliases

On large trees (thousands of leaves), building every child instance at startup is wasteful. Branches declare subtrees as factory specs — nothing is constructed until actually needed:

class Application(RoutingClass):
    def __init__(self):
        self.add_branches([
            {"name": "sales",  "cls": SalesAPI},                    # factory: lazy, built at first traversal
            {"name": "users",  "instance": UsersAPI()},             # instance: eager, linked immediately
            {"name": "shop",   "alias": "sales"},                   # alias: symlink to another branch
        ])

app = Application()
app.route.node("sales/report")()   # first traversal builds SalesAPI here
app.route.node("shop/report")()    # same subtree via the alias (target's plugins)
  • Each spec is one of three mutually exclusive forms: a factory ({"cls": ...}) is lazy — built the first time a path traverses it; an instance ({"instance": ...}) is eager — already built, linked at the add_branches call; an alias ({"alias": ...}) is a symlink. Factory constructor errors surface at first traversal.
  • add_branches accepts one dict, a list, or a generator — so a discovery function can yield thousands of factory specs with zero construction cost.
  • Aliases are transparent symlinks by absolute path from the tree root: the whole target subtree is reachable, with the target's plugins.
  • Introspection never builds implicitly: nodes() shows lazy factories and aliases as unresolved markers (with their class-declared @route leaves, read without instantiating). Use nodes(_eager=True) to expand everything (e.g. to generate a full OpenAPI document) or nodes(basepath="sales") to open one branch explicitly.
  • add_branches is the single entry point: pass a class for lazy construction, or an instance to attach an already-built child eagerly.

See the Branches Guide for the full lifecycle.

Learn by Example

We provide a comprehensive gallery of examples in the examples/ directory:

Read our guide on Why wrap a library with Genro-Routes? for more specialized insights.

CLI Adapter

Expose any RoutingClass as a full-featured command-line tool with tab completion, help, and typed parameters — automatically generated from router introspection.

pip install genro-routes[cli]
#!/usr/bin/env python
from genro_routes.cli import RoutingCli
from myapp import OrdersAPI

cli = RoutingCli(OrdersAPI("acme"))
cli.run()
$ myapp list                        # call handler directly
["order-1", "order-2"]

$ myapp retrieve 42                 # positional arguments
acme:42

$ myapp --help                      # auto-generated help
Usage: myapp [OPTIONS] COMMAND [ARGS]...

Commands:
  create    Create a new order.
  list      List all orders.
  retrieve  Retrieve a single order.

$ myapp retrieve --help             # per-command help with types
Usage: myapp retrieve [OPTIONS] IDENT

Arguments:
  IDENT  (str)

Features:

  • Child routers become command groups - Attached child services create nested subcommands
  • Parameters from signatures - Type hints map to click types (int, bool flags, Choice for Literal/Enum, multiple for list)
  • Tab completion - Native bash/zsh/fish via click (eval "$(_MYAPP_COMPLETE=bash_source myapp)")
  • Output formatting - Auto (JSON for dicts, plain for strings), or force json/table/raw
  • Accepts class or instance - RoutingCli(MyClass) or RoutingCli(MyClass(config=cfg))

Installation

pip install genro-routes

With CLI support:

pip install genro-routes[cli]

For development:

git clone https://github.com/genropy/genro-routes.git
cd genro-routes
pip install -e ".[all]"

Typed Response Schemas

Annotate return types to generate response schemas automatically. genro-routes exposes them as dialect-neutral metadata (the per-entry result block in nodes(), plus entry.metadata); external bridges (MCP, or OpenAPI via genro-asgi) consume it without extra work — the routing core does not generate OpenAPI itself:

from typing import TypedDict
from genro_routes import RoutingClass, route

class UserResponse(TypedDict):
    id: int
    name: str
    active: bool

class UsersAPI(RoutingClass):
    def __init__(self):
        self.route.plug("pydantic")

    @route()
    def get_user(self, user_id: int) -> UserResponse:
        return {"id": user_id, "name": "alice", "active": True}

api = UsersAPI()

# The return schema is exposed in the neutral result block of nodes()
entry = api.route.nodes()["entries"]["get_user"]
result = entry["result"]
# {"schema": {"type": "object", "properties": {"id": {"type": "integer"}, ...}},
#  "media_type": None}

# A transport adapter (e.g. genro-asgi) reads this block to build the
# OpenAPI/MCP output schema — genro-routes does not translate it in-core.

Supported types: TypedDict, dict[str, int], list[...], str, int, bool, and any type Pydantic can serialize.

Core Concepts

  • Router - Runtime router owned by a RoutingClass instance, auto-created lazily and exposed as the read-only route property (never instantiated by user code)
  • @route() - Decorator that marks bound methods for the class's single router (keyword-only options: name, endpoint_id, plugin flags)
  • RoutingClass - Mixin that binds a class to its single router and exposes the routing proxy
  • Section - Empty RoutingClass used as a grouping node: svc.add_branches({"name": "admin", "instance": Section("Admin area")})
  • RoutingContext - Extensible execution context with parent chain delegation. Attach any attribute (ctx.db, ctx.user, ctx.session); missing lookups walk up RoutingContext(parent=...). Stored in a _ctx slot on each instance — children inherit via _routing_parent chain. See Execution Context Guide.
  • BasePlugin - Base class for creating plugins with on_decore and wrap_handler hooks
  • obj.routing - Proxy exposed by every RoutingClass that provides configure(...) for managing plugin settings without polluting the instance namespace.
  • RouterNode - Callable wrapper returned by node(), with path, error, doc, metadata properties.
  • NotFound / NotAuthenticated / NotAuthorized / NotAvailable - Exceptions for routing errors (not found, auth required, auth denied, capabilities missing)

One Name Per Operation

Genro Routes uses unique names for handlers rather than overloading the same path with different HTTP methods. Each entry is an operation (list_orders, create_order, approve_order), not a resource acted upon by a verb.

This matches how modern API paradigms work: GraphQL, gRPC, tRPC, and MCP all identify operations by name, not by HTTP method. The HTTP verb is inferred automatically at the transport layer (e.g., genro-asgi) when generating OpenAPI schemas or mapping to HTTP endpoints.

See Why One Name Per Operation for the full rationale.

Pattern Highlights

  • Explicit naming + prefixes - @route(name="detail") and self.route.prefix = "handle_" separate method names from public route names.
  • Explicit instance hierarchies - self.add_branches({"name": "alias", "instance": child}) connects an already-built RoutingClass instance eagerly. Navigate with route.node("alias/handler") or inspect with route.nodes(basepath="alias").
  • Declarative branches - self.add_branches({"name": "sales", "cls": Sales}) declares a factory subtree, built lazily at first traversal; {"name": "users", "instance": UsersAPI()} attaches an already-built instance eagerly. See Branches.
  • Branch aliases - {"name": "fake", "alias": "real/path"} exposes an existing subtree under a second name, like a filesystem symlink.
  • Endpoint ID - @route(endpoint_id="USR-001") assigns a stable identifier for reverse lookup via router.node("@USR-001").
  • Grouping nodes - add_branches({"name": "admin", "instance": Section("Admin area")}) creates pure organizational nodes without handlers.
  • Built-in and custom plugins - self.route.plug("logging"), self.route.plug("pydantic"), or custom plugins.
  • Shorthand plugin syntax - @route(auth="admin") instead of @route(auth_rule="admin"). Plugins declare their default parameter via plugin_default_param.
  • Channel filtering - @route(channel="mcp,bot_.*") controls which transport channels can access each handler. Supports regex patterns.
  • Runtime configuration - routing.configure("logging/_all_", enabled=False) applies targeted overrides with wildcards or batch updates.
  • Lazy binding - Routers auto-bind on first use; no explicit bind() call needed.

Documentation

Testing

Genro Routes ships with a comprehensive test suite:

PYTHONPATH=src pytest --cov=src/genro_routes --cov-report=term-missing

All examples in documentation are verified by the test suite.

Repository Structure

genro-routes/
├── src/genro_routes/
│   ├── __init__.py          # Public API exports
│   ├── exceptions.py        # NotFound, NotAuthorized, NotAuthenticated, NotAvailable
│   ├── core/                # Core router implementation
│   │   ├── base_router.py   # BaseRouter (plugin-free runtime)
│   │   ├── router.py        # Router (with plugin support)
│   │   ├── router_node.py   # RouterNode (callable wrapper from node())
│   │   ├── router_interface.py  # RouterInterface (abstract base)
│   │   ├── context.py       # RoutingContext (extensible execution context)
│   │   ├── decorators.py    # @route decorator
│   │   └── routing.py       # RoutingClass, ResultWrapper
│   ├── cli/                 # CLI transport adapter
│   │   ├── __init__.py      # RoutingCli (public API)
│   │   ├── _builder.py      # CliBuilder (click tree from nodes())
│   │   ├── _type_map.py     # ParamConverter (Python → click types)
│   │   └── _formatters.py   # OutputFormatter (JSON/table/raw)
│   └── plugins/             # Built-in plugins
│       ├── _base_plugin.py  # BasePlugin, MethodEntry
│       ├── logging.py       # LoggingPlugin
│       ├── pydantic.py      # PydanticPlugin
│       ├── auth.py          # AuthPlugin
│       ├── env.py           # EnvPlugin (+ CapabilitiesSet)
│       └── channel.py       # ChannelPlugin (channel-based filtering)
├── examples/                # Example applications
├── tests/                   # Comprehensive test suite
└── docs/                    # Documentation (Sphinx)

Project Status

Genro Routes is currently in beta. The core API is stable with complete documentation.

  • Python Support: 3.10, 3.11, 3.12, 3.13
  • License: Apache 2.0

Current Limitations

  • Instance methods only - Routers assume decorated functions are bound methods (no static/class method or free function support)
  • Minimal plugin system - Intentionally simple; advanced features must be added manually

Roadmap

  • genro-asgi - ASGI adapter for HTTP exposure (in development)
  • Additional plugins (async, storage, audit trail, metrics)
  • Example applications and use cases

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

License

Apache License 2.0 - see LICENSE for details.

Origin

This project was originally developed as "smartroute" under MIT license and has been renamed and relicensed.

Download files

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

Source Distribution

genro_routes-0.29.0.tar.gz (2.9 MB view details)

Uploaded Source

Built Distribution

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

genro_routes-0.29.0-py3-none-any.whl (74.3 kB view details)

Uploaded Python 3

File details

Details for the file genro_routes-0.29.0.tar.gz.

File metadata

  • Download URL: genro_routes-0.29.0.tar.gz
  • Upload date:
  • Size: 2.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for genro_routes-0.29.0.tar.gz
Algorithm Hash digest
SHA256 9f5330c1235198c4d0d3b46350f5046ca95c01385b04367fb3f5332492099144
MD5 b6020b1c5e5db897124cb835145bc56c
BLAKE2b-256 85430ee29bcee8803d90521849be15dcb35210c57705255f7ebb75814b50bdf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for genro_routes-0.29.0.tar.gz:

Publisher: publish.yml on genropy/genro-routes

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genro_routes-0.29.0-py3-none-any.whl.

File metadata

  • Download URL: genro_routes-0.29.0-py3-none-any.whl
  • Upload date:
  • Size: 74.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for genro_routes-0.29.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6364223965df9235eb9d740261c699a492cc3f36c24018c8c8f9642112efea3b
MD5 f1013fd95d304a86dbec6a8556b8aff1
BLAKE2b-256 29f92db7b0aa402e2ef91cce1dd70e2d5518d92c2f6c44caaa422e63e1500664

See more details on using hashes here.

Provenance

The following attestation bundles were made for genro_routes-0.29.0-py3-none-any.whl:

Publisher: publish.yml on genropy/genro-routes

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.29.0 This release

2 files

0.28.0

2 files

0.27.0

2 files

0.26.3

2 files

0.26.2

2 files

0.26.1

2 files

0.26.0

2 files

0.25.1

2 files

0.25.0

2 files

0.24.0

2 files

0.23.0

2 files

0.22.0

2 files

0.21.2

2 files

0.21.0

2 files

0.20.1

2 files

0.20.0

2 files

0.19.1

2 files

0.19.0

2 files

0.17.0

2 files

0.16.0

2 files

0.15.0

2 files

0.14.0

2 files

0.13.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page