Visualize FastAPI application's routing tree and dependencies
Project description
This repo is still in early stage, currently it support pydantic v2 only, previous name: fastapi-router-viz
Inspect your API interactively
Installation
pip install fastapi-voyager
# or
uv add fastapi-voyager
Dependencies
- FastAPI
- pydantic-resolve
Feature
For scenarios of using FastAPI as internal API integration endpoints, fastapi-voyager helps to visualize the dependencies.
It is also an architecture inspection tool that can identify issues in data relationships through visualization during the design phase.
If the process of building the view model follows the ER model, the full potential of fastapi-voyager can be realized. It allows for quick identification of APIs that use entities, as well as which entities are used by a specific API
git clone https://github.com/allmonday/fastapi-voyager.git
cd fastapi-voyager
voyager -m tests.demo
--server --port=8001
--module_color=tests.service:blue
--module_color=tests.demo:tomato
pick tag, rotue (optional) and click generate.
click a node to highlight it's upperstream and downstream nodes. figure out the related models of one page, or homw many pages are related with one model.
shift click a node to check related nodes.
pick a field to narrow the result.
alt click a node to show source code or open file in vscode.
more in video:
Command Line Usage
open in browser
# open in browser
voyager -m tests.demo --server
voyager -m tests.demo --server --port=8002
generate the dot file
# generate .dot file
voyager -m tests.demo
voyager -m tests.demo --app my_app
voyager -m tests.demo --schema Task
voyager -m tests.demo --show_fields all
voyager -m tests.demo --module_color=tests.demo:red --module_color=tests.service:tomato
voyager -m tests.demo -o my_visualization.dot
voyager --version
The tool will generate a DOT file that you can render using Graphviz:
# Install graphviz
brew install graphviz # macOS
apt-get install graphviz # Ubuntu/Debian
# Render the graph
dot -Tpng router_viz.dot -o router_viz.png
# Or view online at: https://dreampuf.github.io/GraphvizOnline/
or you can open router_viz.dot with vscode extension graphviz interactive preview
Plan
features:
- group schemas by module hierarchy
- module-based coloring via Analytics(module_color={...})
- view in web browser
- config params
- make a explorer dashboard, provide list of routes, schemas, to make it easy to switch and search
- support programmatic usage
- better schema /router node appearance
- hide fields duplicated with parent's (show
parent fieldsinstead) - refactor the frontend to vue, and tweak the build process
- find dependency based on picked schema and it's field.
- optimize static resource (cdn -> local)
- add configuration for highlight (optional)
- alt+click to show field details
- display source code of routes (including response_model)
- handle excluded field
- user can generate nodes/edges manually and connect to generated ones
- support dataclass
- group routes by module hierarchy
- integration with pydantic-resolve
- show difference between resolve, post fields
- strikethrough for excluded fields
- display loader as edges
- test cases
bugs:
- fix duplicated link from class and parent class, it also break clicking highlight
Credits
- https://apis.guru/graphql-voyager/, for inspiration.
- https://github.com/tintinweb/vscode-interactive-graphviz, for web visualization.
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 fastapi_voyager-0.4.1.tar.gz.
File metadata
- Download URL: fastapi_voyager-0.4.1.tar.gz
- Upload date:
- Size: 241.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a68e271757b931f4655161a4ca85d9f727612e145d3ed87c989562caea32a74a
|
|
| MD5 |
9ba631f23b3b879c7cd33d7e85cbe1a8
|
|
| BLAKE2b-256 |
82a7dd30682cc25e1c8a245bd5dd034d10eb4d6953a07f08418c2ac93f3d9de1
|
File details
Details for the file fastapi_voyager-0.4.1-py3-none-any.whl.
File metadata
- Download URL: fastapi_voyager-0.4.1-py3-none-any.whl
- Upload date:
- Size: 226.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77945201f4c469d07104dbd1ec01332a97933d319010d27da9180c9bd9bf258c
|
|
| MD5 |
68d1a1dedcb3229bb6ae0a48f515c613
|
|
| BLAKE2b-256 |
2998753f96817644437cc9e454f3246857512ef8829a9ae1f2e0a8bb4536d758
|