Generate strongly-typed Python helpers (TypedDict param classes + path/url builders) from a React Router v6+ route tree so Python code can build frontend URLs safely.
Project description
Generate Typed Python URL helpers from React Router routes
Generate strongly-typed Python helpers (TypedDict param objects + overloads) from a React Router v6+ route tree. This is useful when a Python backend, worker, or test suite needs to construct URLs that stay in sync with a JavaScript/TypeScript frontend using React Router.
What you get
Given a React Router project, the CLI either:
- Runs
pnpm react-router routes --json(if you pass--directory), or - Reads a pre-generated JSON file (if you pass
--json-file)
It walks the returned route objects and produces a Python module containing:
RoutePathsLiteral of every concrete route pattern (e.g./users/:userId?,/files/*).- Per-route
TypedDictclasses containing snake_case parameter keys. - Overloaded
react_router_path()to build a relative path with validation + percent-encoding. - Overloaded
react_router_url()to prepend a base URL (explicit argument orBASE_URLenv var).
Installation
Requires Python 3.11+.
Using uv (recommended):
uv add react-router-routes
Or with pip:
pip install react-router-routes
Prerequisites
Your JS project must have react-router and the pnpm react-router routes --json command available (React Router v6+ data APIs). The Python process must run inside (or have access to) that project directory so the CLI can execute the command.
CLI Usage
The script entry point is named react-router-routes (see pyproject.toml).
Two ways to supply routes:
- Have the tool invoke
pnpm react-router routes --jsonby providing a directory:
react-router-routes ./routes_typing.py --directory ./frontend
- Provide an existing JSON file (output of
pnpm react-router routes --json):
react-router-routes ./routes_typing.py --json-file tests/react-router.json
Then import the generated module in Python code:
from routes_typing import react_router_path, react_router_url, RoutePaths
react_router_path('/users/:userId', {'user_id': 123}) # -> '/users/123'
react_router_url('/files/*', {'splat': 'docs/readme.md'}, base_url='https://example.com')
Environment Variables
BASE_URL(optional) – If set and you omitbase_urlwhen callingreact_router_url, this value is prepended. If missing the function returns the path and logs a warning.LOG_LEVEL(optional) – Standard Python logging level (INFO, DEBUG, etc.).
Development
Clone and install dev deps:
uv sync --group dev
Run tests:
uv run pytest
Release process
This project uses uv for building and publishing. Adjust version in pyproject.toml, then build and publish as desired.
License
MIT (see repository).
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
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 react_router_routes-0.2.0.tar.gz.
File metadata
- Download URL: react_router_routes-0.2.0.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a655ed674c38fb60a42d201aa45d16d6c809f96b745a9981bca62675b940cd3
|
|
| MD5 |
7e6f21bad1b534aa313ebdb90b93375e
|
|
| BLAKE2b-256 |
434c346ed42781164dc76caec7d6d9d79121b34bd7554b7a648a87694eed48b2
|
File details
Details for the file react_router_routes-0.2.0-py3-none-any.whl.
File metadata
- Download URL: react_router_routes-0.2.0-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.8.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4dee0781df772619a9659fff0ed315bad5ba71d18f74ebc1c02eee98cdb4e3e
|
|
| MD5 |
ae7fb5772f247639f97fb330941cf768
|
|
| BLAKE2b-256 |
985387d68d5de953e201bd3cd05a8c6af440fd6fe47644b1b720d00015b84f5b
|