A web based explorer for fn_graph function composers
Project description
FnGraph Studio
A visual studio for investigating fn_graph composers, light weight function pipelines for python.
See fn_graph for more information.
Installation
pip install fn_graph_studio
Usage
If you don't know what fn_graph is you really do need to check it out at fn_graph.
Assuming you have a composer already built, create a python file.
from fn_graph_studio import run_studio
# Assume you have a composer at this location
from .my_composer_module import my_composer
run_studio(my_composer)
then run the file. Then open your browser to http://localhost:8050.
The interface
The interface allows the user to investigate the results of a query, as well as any intermediate results. It allows the user to navigate through the function graph either as a graph, or as a tree that is nested by namespace.
You can view both the result as well as the function definition that led to that result.
You can an expression over all the results, as well, which can be useful for filtering down to particular elements.
Navigator selector
The navigator selector (top left) allows you to select to view either the graph navigator or the tree navigator.
Tree navigator
The tree navigator shows all the functions in the composer as a hierarchy nested by namespace. You can click on a function name to select it, and see the result or definition of the function.
Graph navigator
The graph navigator allows you to directly visualize and navigate the function graph. You can click on a function node to select it, and see the result or definition of the function.
The Filter selector, along with the neighborhood size selector, will limit which nodes will be visible. This allows you to home in on just the important parts of the graph you are working on.
- All: Show all the functions in the graph
- Ancestors: Show the ancestors of the selectors node, up to neighborhood size levels away.
- Descendants: Show the descendants of the selectors node, up to neighborhood size levels away.
- Neighbors: Show any nodes that are a distance of neighborhood size away from the selected node.
The Display options control how the graph is displayed:
- Flatten: If selected this will not show namespaces as a hierarchical graph, but just show the full names directly in the node. This can be useful for looking as smaller parts of complicated graphs.
- Parameters: If selected this will show the parameter nodes. Hiding these can clean up the graph and make it easier to navigate.
- Links: If selected this will show graph links as full nodes, otherwise they as shows as small circles for clarities sake.
- Caching: This will show caching information. Nodes outlined in green will not be calculated at all, nodes outlined in orange will be pulled from cache, nodes outlined in red will be calculated.
Selected function display
The function display selector (top right) controls whether the result of the selected function, or its definition will be shown.
The selected functions full name is and the result type is always shown.
Result processor
You can process all the results of a query by using the result processor (bottom left). This will evaluate a python expression on the results and show the result of teh expression. You can use any python code. The incoming result is available as the result variable.
Hot reloading
The FnGraph Studio take advantage of the hot reloading built into the dash framework. As such whenever you change any code the studio will reload and show the new result.
Caching
It can be extremely useful to use the development cache with the studio, the development cache will store results to disk (so it will maintain through live reloading), and will invalidate the cache when functions are changed. To do this alter your studio python file to something like.
from fn_graph_studio import run_studio
# Assume you have a composer at this location
from .my_composer_module import my_composer
run_studio(my_composer.development_cache(__name__))
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
File details
Details for the file fn_graph_studio-0.3.10.tar.gz
.
File metadata
- Download URL: fn_graph_studio-0.3.10.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.8.2 Linux/4.15.0-91-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2331b24adeaa8087f58f7194fcad0bdbbabb066d435904e3dae448a5cb59199f |
|
MD5 | bb9c207543cba2a9b6d4037633f8fac7 |
|
BLAKE2b-256 | 74cfc1bf710e323f162e76068bf3e8941c293865ffdb4639b6507a51beb11338 |
File details
Details for the file fn_graph_studio-0.3.10-py3-none-any.whl
.
File metadata
- Download URL: fn_graph_studio-0.3.10-py3-none-any.whl
- Upload date:
- Size: 16.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.5 CPython/3.8.2 Linux/4.15.0-91-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82e431aea2866a6ed93dd0a9825d73aa779160d5845becb6466bf28c0becdf12 |
|
MD5 | d33be72df69a944249a0f5a9177b9530 |
|
BLAKE2b-256 | c0f125993c55316d117bbe37d194a94c247240b3fde64519d628c1706f6c4d9f |