From c289c2dc8dde37197d9c5f6e7843763e8a3f2e69 Mon Sep 17 00:00:00 2001 From: Ulysse DURAND Date: Wed, 5 Aug 2026 12:16:38 +0200 Subject: [PATCH] docs(catalogs): add download of remote images to serve them itself --- docs/vitepress/external_repos.yml | 26 ++++---- docs/vitepress/fetch_repos.py | 62 ++++++++++++++++++- docs/vitepress/public/repos_images/.gitignore | 1 + docs/vitepress/repos.json | 2 +- docs/vitepress/requirements.txt | 3 +- 5 files changed, 76 insertions(+), 18 deletions(-) create mode 100644 docs/vitepress/public/repos_images/.gitignore diff --git a/docs/vitepress/external_repos.yml b/docs/vitepress/external_repos.yml index c2ede437..9d2911f7 100644 --- a/docs/vitepress/external_repos.yml +++ b/docs/vitepress/external_repos.yml @@ -1,51 +1,51 @@ https://github.com/kmarchais/mmgpy: topics: [trame, trame-app, vtk] - image: "https://github.com/kmarchais/mmgpy/raw/main/assets/mechanical_piece_remeshing.png" + remoteImage: "https://github.com/kmarchais/mmgpy/raw/main/assets/mechanical_piece_remeshing.png" https://github.com/dhruvhaldar/FOAMFlask: - image: "https://github.com/dhruvhaldar/FOAMFlask/raw/dev_pyvista_ts_lkgc/Screenshots/geometry.png" + remoteImage: "https://github.com/dhruvhaldar/FOAMFlask/raw/dev_pyvista_ts_lkgc/Screenshots/geometry.png" https://github.com/MBradley1985/ViSAGE: topics: [trame, trame-app] - image: "https://raw.githubusercontent.com/MBradley1985/ViSAGE/main/docs/images/hero.png" + remoteImage: "https://raw.githubusercontent.com/MBradley1985/ViSAGE/main/docs/images/hero.png" https://github.com/jwindgassen/jupyter-trame-proxy: topics: [trame, trame-app, paraview] https://github.com/utkarshayachit/simplified-batch: topics: [trame, trame-app, paraview] - image: https://raw.githubusercontent.com/utkarshayachit/simplified-batch/refs/heads/main/images/trame.gif + remoteImage: https://raw.githubusercontent.com/utkarshayachit/simplified-batch/refs/heads/main/images/trame.gif https://github.com/vicentebolea/virtual-thermostat: topics: [trame, trame-app] https://github.com/linson7017/pymipf: topics: [trame, trame-app, vtk] - image: "https://github.com/linson7017/pymipf/raw/master/imgs/multi_view.png" + remoteImage: "https://github.com/linson7017/pymipf/raw/master/imgs/multi_view.png" https://github.com/ndminhvn/interactive-population-visualization: topics: [trame, trame-app, vtk] https://github.com/Chahat08/BioSET_Visualizer: topics: [trame, trame-app, vtk] - image: https://raw.githubusercontent.com/Chahat08/BioSET_Visualizer/master/src/bioset/ui/assets/icon.jpg + remoteImage: https://raw.githubusercontent.com/Chahat08/BioSET_Visualizer/master/src/bioset/ui/assets/icon.jpg # https://github.com/jph6366/trame-aoc: # topics: [trame, trame-app] https://github.com/brendanjmeade/fennil: topics: [trame, trame-app, py-deck] - image: "https://raw.githubusercontent.com/brendanjmeade/fennil/main/fennil.jpg" + remoteImage: "https://raw.githubusercontent.com/brendanjmeade/fennil/main/fennil.jpg" trusted: true https://github.com/brendanjmeade/parsli: topics: [trame, trame-app, vtk] - image: "https://raw.githubusercontent.com/brendanjmeade/parsli/refs/heads/main/parsli.png" + remoteImage: "https://raw.githubusercontent.com/brendanjmeade/parsli/refs/heads/main/parsli.png" trusted: true https://github.com/XAITK/xaitk-saliency-web-demo: topics: [trame, trame-app] - image: "https://raw.githubusercontent.com/XAITK/xaitk-saliency-web-demo/refs/heads/master/gallery/xaitk.png" + remoteImage: "https://raw.githubusercontent.com/XAITK/xaitk-saliency-web-demo/refs/heads/master/gallery/xaitk.png" trusted: true https://github.com/festim-dev/festim-gui: @@ -54,17 +54,17 @@ https://github.com/festim-dev/festim-gui: https://github.com/cardinalgeo/drilldown: topics: [trame, trame-app, vtk] - image: "https://github.com/cardinalgeo/drilldown/raw/main/media/poster.jpg" + remoteImage: "https://github.com/cardinalgeo/drilldown/raw/main/media/poster.jpg" https://github.com/MXJK851/SpinView: topics: [trame, trame-app] - image: "https://github.com/MXJK851/SpinView/raw/main/docs/assets/readme.png" + remoteImage: "https://github.com/MXJK851/SpinView/raw/main/docs/assets/readme.png" https://gitlab.kitware.com/keu-public/trame-catalyst-demo: topics: [trame, trame-app, paraview] nameWithOwner: "keu-public/trame-catalyst-demo" name: "trame-catalyst-demo" - image: "https://gitlab.kitware.com/keu-public/trame-catalyst-demo/-/raw/main/screenshot.png" + remoteImage: "https://gitlab.kitware.com/keu-public/trame-catalyst-demo/-/raw/main/screenshot.png" commitCount: 10 createdAt: "2026-05-07T00:00:00Z" description: "A trame application for Catalyst live visualization." @@ -75,5 +75,5 @@ https://gitlab.kitware.com/keu-public/trame-catalyst-demo: https://github.com/epicsuite/episcope: topics: [trame, trame-app, paraview] - image: https://raw.githubusercontent.com/epicsuite/episcope/refs/heads/main/doc/img/selection.gif + remoteImage: https://raw.githubusercontent.com/epicsuite/episcope/refs/heads/main/doc/img/selection.gif trusted: true diff --git a/docs/vitepress/fetch_repos.py b/docs/vitepress/fetch_repos.py index 435f61c4..3760c8f4 100644 --- a/docs/vitepress/fetch_repos.py +++ b/docs/vitepress/fetch_repos.py @@ -35,11 +35,33 @@ import json import re from datetime import datetime, timedelta, timezone +import requests import warnings +import time import yaml +from pathlib import Path EXTERNAL_REPOS_FILE = "external_repos.yml" OUTPUT_FILE = "repos.json" +IMAGES_DOWNLOAD_DIR = Path("public/repos_images") +IMAGES_SERVE_SUFFIX = "/trame/repos_images" + + +class ImageCacheMaker: + """Downloads remote images to make the page serve them itself""" + + _img_id = 0 + + def __init__(self, download_dir: Path, serve_url_suffix_base: str): + """download_dir must be served at serve_url_suffix_base""" + self._download_dir = download_dir + self._serve_url_suffix_base = serve_url_suffix_base + + def download(self, url: str): + download_remote_image(url, self._download_dir / f"{self._img_id}.png") + serve_url_suffix = f"{self._serve_url_suffix_base}/{self._img_id}.png" + self._img_id += 1 + return serve_url_suffix def minify_graphql(query): @@ -56,7 +78,7 @@ def make_gh_request(request: list[str]): result = subprocess.run(request, capture_output=True, text=True, env=os.environ) if result.returncode != 0: raise Exception( - f"Error executing command {' '.join(request)}:\n{result.stderr}" + f"Error executing command {' '.join(request)[:100]}:\n{result.stderr}\n{result.stdout}" ) return result.stdout @@ -85,6 +107,35 @@ def retrieve_gh_repos_from_topic(topic: str, owners: list = []): return repos +def download_remote_image(remote_url: str, local_path: str, max_retries: int = 5): + for attempt in range(max_retries): + response = requests.get(remote_url) + + if response.status_code == 200: + with open(local_path, "wb") as file: + file.write(response.content) + print(f" Saved {local_path}") + return + + if response.status_code == 429: # Too many requests + retry_after = response.headers.get("Retry-After") + wait = float(retry_after) if retry_after else (2**attempt) + print( + f" Rate limited fetching {remote_url}, retrying in {wait:.1f}s " + f"(attempt {attempt + 1}/{max_retries})..." + ) + time.sleep(wait) + continue + + raise Exception( + f"Failed to download {remote_url}, status code: {response.status_code}" + ) + + raise Exception( + f"Failed to download {remote_url} after {max_retries} retries (still rate limited)." + ) + + def retrieve_repos_from_file(filename: str) -> list[str]: with open(filename, "r") as f: repos = yaml.safe_load(f) @@ -169,7 +220,7 @@ def repos_data_to_json(repos_data): fetched_repos[url] = { "name": repo_data["name"], "description": repo_data["description"] or "", - "image": repo_data["openGraphImageUrl"], + "remoteImage": repo_data["openGraphImageUrl"], "topics": topics, "createdAt": repo_data["createdAt"], "lastCommitDate": last_commit_date, @@ -197,6 +248,7 @@ def fetch_gh_info(gh_repos): def add_info(repos): + image_cache_maker = ImageCacheMaker(IMAGES_DOWNLOAD_DIR, IMAGES_SERVE_SUFFIX) one_year_ago = datetime.now(timezone.utc) - timedelta(days=365) for url, repo_info in repos.items(): if not repo_info["trusted"]: @@ -207,6 +259,8 @@ def add_info(repos): ) repo_info["createdWithinLastYear"] = created_at >= one_year_ago + repo_info["image"] = image_cache_maker.download(repo_info["remoteImage"]) + if __name__ == "__main__": print("- Discovering trusted repositories from GitHub...") @@ -230,7 +284,9 @@ def add_info(repos): print(f"- Fetching GraphQL metadata for {len(gh_repos)} GitHub repositories...") fetched_gh_repos = fetch_gh_info(gh_repos) - print("- Enriching repository information and calculating age...") + print( + "- Enriching repository information, downloading images and calculating age..." + ) repos_w_info = non_gh_repos | fetched_gh_repos add_info(repos_w_info) diff --git a/docs/vitepress/public/repos_images/.gitignore b/docs/vitepress/public/repos_images/.gitignore new file mode 100644 index 00000000..aab52d90 --- /dev/null +++ b/docs/vitepress/public/repos_images/.gitignore @@ -0,0 +1 @@ +*.png \ No newline at end of file diff --git a/docs/vitepress/repos.json b/docs/vitepress/repos.json index 35356a30..9cdffddf 100644 --- a/docs/vitepress/repos.json +++ b/docs/vitepress/repos.json @@ -1 +1 @@ -{"https://github.com/Chahat08/BioSET_Visualizer": {"commitCount": 393, "createdAt": "2026-01-28T15:52:35Z", "createdWithinLastYear": true, "description": "A multi resolution volume renderer, specifically for analysing biomarker interactions in 3D CyCIF.", "image": "https://raw.githubusercontent.com/Chahat08/BioSET_Visualizer/master/src/bioset/ui/assets/icon.jpg", "lastCommitDate": "2026-04-14T12:16:13Z", "name": "BioSET_Visualizer", "pullRequestCount": 51, "stars": 0, "topics": ["trame", "trame-app", "vtk", "..."], "trusted": false}, "https://github.com/Kitware/E3SMQuickCompare": {"commitCount": 558, "createdAt": "2025-11-12T16:29:30Z", "createdWithinLastYear": true, "description": "QuickCompare is an offshoot of QuickView, an interactive tool for inspecting data files produced by Earth system simulations. Instead of presenting a single simulation, QuickCompare contrasts two or more simulations that use the same horizontal mesh.", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/1095134670/864dc74a-d211-48f5-9be4-e27131130e93?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=fb9fd67e3abbd9a68ec74d67c967b73b12d7a630a0a5c501d0825982a2fde6ff&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-07-27T12:42:00Z", "name": "E3SMQuickCompare", "pullRequestCount": 5, "stars": 0, "topics": ["paraview", "trame", "trame-app"], "trusted": true}, "https://github.com/Kitware/QuickView": {"commitCount": 811, "createdAt": "2025-09-22T20:56:31Z", "createdWithinLastYear": true, "description": "A ParaView based, easy-to-use application for exploration of atmospheric data from E3SM.", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/1062125521/5abdf8b7-e466-42db-a6d5-7751b5143fc6?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=0c6ea72828651326936af325efe1ba8daa3ff97f3c1ffeb194c889fb75de2455&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-07-20T20:25:36Z", "name": "QuickView", "pullRequestCount": 69, "stars": 2, "topics": ["paraview", "trame-app", "trame"], "trusted": true}, "https://github.com/Kitware/SiteView": {"commitCount": 25, "createdAt": "2026-02-04T18:19:01Z", "createdWithinLastYear": true, "description": "The SiteView UI presents an ARM observatory as a candidate location for in-depth analysis of simulation results.", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/1149966776/df118a72-d27a-4192-b11e-49eed1cd3b58?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=110cded70bd8dd3747a2808ecc07c312973cbe6397fba6f304efeb2bcd7f6543&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-07-23T21:26:45Z", "name": "SiteView", "pullRequestCount": 2, "stars": 0, "topics": ["trame", "trame-app"], "trusted": true}, "https://github.com/Kitware/VERACore": {"commitCount": 98, "createdAt": "2022-09-06T20:43:40Z", "createdWithinLastYear": false, "description": "VERACore is a Python application for visualization and engineering analyses of output data from VERA (Virtual Environment for Reactor Applications). Implemented in Python, it provides instantaneous 2D and 3D images, 1D plots, and alphanumeric data from VERA multi-physics simulations.", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/533496282/a7c4e57f-fcc1-498a-b6e4-419dfa23c2cd?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=177dc00a36452c9d3ad51eaaa3a88fe1050aab1255a6b19e0dba72cde1edd415&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2025-01-23T15:46:18Z", "name": "VERACore", "pullRequestCount": 6, "stars": 14, "topics": ["trame", "trame-app", "vtk"], "trusted": true}, "https://github.com/Kitware/conceptual-modeler": {"commitCount": 17, "createdAt": "2021-06-16T21:07:55Z", "createdWithinLastYear": false, "description": "Conceptual Modeler based on GemPy and trame", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/377628213/c01f6ca4-47f0-432e-a0bd-a53cfb115222?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=63079a5e8c29dbcdee5595c8cea5416e229a341f822e64c49cbeb845f627f847&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2024-04-02T22:54:29Z", "name": "conceptual-modeler", "pullRequestCount": 3, "stars": 13, "topics": ["trame-app", "trame", "python"], "trusted": true}, "https://github.com/Kitware/multivariate-view": {"commitCount": 97, "createdAt": "2024-04-12T21:06:42Z", "createdWithinLastYear": false, "description": "Multivariate volume visualizer", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/785890887/e42c292d-c11c-404c-8a81-4dc2b60bfffb?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=d30f0b80d07c054ea6a9fb53a077ca26f7de0c9b5ad6194ddb51e4f1b1ca77ab&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-05-15T21:59:30Z", "name": "multivariate-view", "pullRequestCount": 14, "stars": 6, "topics": ["trame", "trame-app", "vtk"], "trusted": true}, "https://github.com/Kitware/nrtk-explorer": {"commitCount": 473, "createdAt": "2023-12-08T22:23:25Z", "createdWithinLastYear": false, "description": "NRTK Explorer is a web application for exploring image datasets. It provides insights of a image dataset in COCO format and it evaluate image transformation and perturbation resilience of object recognition DL models.", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/729319732/1fdbb101-aacb-4f55-aea8-57ba3c206b42?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=3ddb97646190975bfea2ab99b9cde058e264ca638269c7a34ad8eb025d6b85ef&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-03-06T03:34:39Z", "name": "nrtk-explorer", "pullRequestCount": 202, "stars": 11, "topics": ["trame-app", "trame"], "trusted": true}, "https://github.com/Kitware/pan3d": {"commitCount": 664, "createdAt": "2022-05-02T20:29:51Z", "createdWithinLastYear": false, "description": "Python library for easily loading, interacting and visualizing XArray dataset using VTK and trame.", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/487981863/bffbd457-47c9-47ca-89f7-5fc15b5c4272?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=31d2ea8aadfd9dce29880234e7297cfc01fa2562802491b97a482d04d03256b9&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-04-27T17:43:14Z", "name": "pan3d", "pullRequestCount": 93, "stars": 36, "topics": ["3d", "trame", "visualization", "vtk", "xarray", "xarray-accessor", "trame-app"], "trusted": true}, "https://github.com/Kitware/paraview-trame-components": {"commitCount": 156, "createdAt": "2024-04-11T16:22:13Z", "createdWithinLastYear": false, "description": "High level components for ParaView and trame", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/785311795/cd3a3f01-5053-485d-a095-8bd18f46fa40?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=91459434b146b8f0f8772585d14e1e5d47d95f86b8becd5d49853fac69737542&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-02-10T10:03:34Z", "name": "paraview-trame-components", "pullRequestCount": 20, "stars": 14, "topics": ["paraview", "trame", "trame-app"], "trusted": true}, "https://github.com/Kitware/pf-simulation-modeler": {"commitCount": 59, "createdAt": "2022-01-25T23:15:36Z", "createdWithinLastYear": false, "description": "Simulation modeler for ParFlow. Trame application providing user interface for configuring a parflow simulation.", "image": "https://opengraph.githubassets.com/31d536c5d82fcfed6f54e642ccd9b29f178677c2b3693bfe8b4eb46570c7cf83/Kitware/pf-simulation-modeler", "lastCommitDate": "2023-07-26T18:50:52Z", "name": "pf-simulation-modeler", "pullRequestCount": 4, "stars": 1, "topics": ["trame"], "trusted": true}, "https://github.com/Kitware/trame": {"commitCount": 663, "createdAt": "2021-09-24T21:38:47Z", "createdWithinLastYear": false, "description": "Trame lets you weave various components and technologies into a Web Application solely written in Python.", "image": "https://opengraph.githubassets.com/51166cf626e7467fb89eaef467aa93f2f7d3528899786d57589bf78fde5b46ed/Kitware/trame", "lastCommitDate": "2026-07-27T15:12:13Z", "name": "trame", "pullRequestCount": 135, "stars": 687, "topics": ["data-visualization", "plotting", "3d", "vtk", "paraview", "trame", "python3", "web-ui", "trame-maintenance-program"], "trusted": true}, "https://github.com/Kitware/trame-bbox": {"commitCount": 1, "createdAt": "2024-05-07T21:36:11Z", "createdWithinLastYear": false, "description": "Widget library for trame to draw or interact with bounding box via svg.", "image": "https://opengraph.githubassets.com/e1bcebf07b2391e5c68ef628b5eff4a7fe04a28c60576b0d0bf06d4b3bfb386d/Kitware/trame-bbox", "lastCommitDate": "2024-05-07T22:47:09Z", "name": "trame-bbox", "pullRequestCount": 0, "stars": 2, "topics": ["trame"], "trusted": true}, "https://github.com/Kitware/trame-client": {"commitCount": 340, "createdAt": "2022-05-04T22:46:35Z", "createdWithinLastYear": false, "description": "Internal client side implementation of trame", "image": "https://opengraph.githubassets.com/436bba775f7d481841accd5b62b24aad601cc1f7e5d835a5edaf16fbdd2f0c4a/Kitware/trame-client", "lastCommitDate": "2026-06-16T15:29:03Z", "name": "trame-client", "pullRequestCount": 54, "stars": 12, "topics": ["trame", "trame-maintenance-program"], "trusted": true}, "https://github.com/Kitware/trame-code": {"commitCount": 38, "createdAt": "2022-11-10T23:52:12Z", "createdWithinLastYear": false, "description": "VS Code text editor widget for trame ", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/564540701/c6ef1f15-4b10-4267-8bb0-ad5a488256f4?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=42f63ce8cefc36d627d97b63dfd507d1a8991d742da543439991bf08a330d85e&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-06-17T15:26:27Z", "name": "trame-code", "pullRequestCount": 5, "stars": 7, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-colormaps": {"commitCount": 66, "createdAt": "2026-05-13T23:09:00Z", "createdWithinLastYear": true, "description": "Trame widget and dataclass to control vtk mapper and colormaps", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/1238205135/92448d3c-1f03-45d9-b27f-03f5d6b0e53f?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=06a2646344b55239ab1bc5a563519f0ec3786b21c56d985b223306807eb4ca22&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-07-22T19:11:02Z", "name": "trame-colormaps", "pullRequestCount": 17, "stars": 0, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-components": {"commitCount": 54, "createdAt": "2022-05-11T21:03:27Z", "createdWithinLastYear": false, "description": "Helper widgets for trame", "image": "https://opengraph.githubassets.com/4e4f2270b991fbcff569370fc5edd4bb5849ddd6d8f79ab70ac8faf991557e0d/Kitware/trame-components", "lastCommitDate": "2025-05-30T14:21:33Z", "name": "trame-components", "pullRequestCount": 4, "stars": 3, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-cookiecutter": {"commitCount": 78, "createdAt": "2022-01-03T01:17:58Z", "createdWithinLastYear": false, "description": "Cookie Cutter template for creating trame application/module", "image": "https://opengraph.githubassets.com/41016b9f52c135cdb3a56e4eb38268bbd957cbe37a9b2956559f8c0a3da98632/Kitware/trame-cookiecutter", "lastCommitDate": "2026-07-27T16:27:45Z", "name": "trame-cookiecutter", "pullRequestCount": 18, "stars": 20, "topics": ["cookiecutter", "trame", "trame-maintenance-program"], "trusted": true}, "https://github.com/Kitware/trame-dataclass": {"commitCount": 103, "createdAt": "2025-08-26T16:43:31Z", "createdWithinLastYear": true, "description": "Typed Python dataclasses with automatic server-to-browser state sync for trame applications", "image": "https://opengraph.githubassets.com/e2cff070f3036eea96ed6b715163ba810e2aac4e039b3d8cdf2657326f4262d4/Kitware/trame-dataclass", "lastCommitDate": "2026-06-30T23:46:00Z", "name": "trame-dataclass", "pullRequestCount": 10, "stars": 1, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-datagrid": {"commitCount": 22, "createdAt": "2024-01-18T20:34:00Z", "createdWithinLastYear": false, "description": "Trame wrapper to RevoGrid component", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/745195298/ad63d855-38b3-4121-a5bc-017e36734fe3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=3276f5d6057d94a82b7bfd54ab894cbcea014db3cdeb30750ae4e50ace4bb57f&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2025-06-04T17:03:18Z", "name": "trame-datagrid", "pullRequestCount": 2, "stars": 9, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-deckgl": {"commitCount": 29, "createdAt": "2022-05-11T19:36:02Z", "createdWithinLastYear": false, "description": "Deck.gl widget for trame", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/491248891/6e788ae7-c0dd-4ff3-8eee-581a9f64fc7f?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=3422ef3b339fbd71971b39018c20fd89c5ca4c6925aedade99138971dd54cef7&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-02-03T18:36:37Z", "name": "trame-deckgl", "pullRequestCount": 3, "stars": 3, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-dockview": {"commitCount": 37, "createdAt": "2025-06-22T04:38:42Z", "createdWithinLastYear": false, "description": "Trame wrapper to a Docking Layout Manager", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/1006355758/26f0f8a4-850a-42b2-ac5c-ad0e77a1de6d?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=1af485dbb275d64a268ddd47c97e861015d4a00735cd9cbdfe7985c068462bde&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-07-15T22:02:40Z", "name": "trame-dockview", "pullRequestCount": 6, "stars": 0, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-formkit": {"commitCount": 12, "createdAt": "2023-02-13T20:24:32Z", "createdWithinLastYear": false, "description": "FormKit widgets exposed in trame", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/601319791/fc13a8d1-1a61-49f4-a3ff-9c9457fea802?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=77bff7f79cf9596c06fde48462858b304d74a28de96d60853e6181309d8cc318&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2025-01-09T21:18:00Z", "name": "trame-formkit", "pullRequestCount": 0, "stars": 1, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-grid-layout": {"commitCount": 21, "createdAt": "2022-09-09T21:44:30Z", "createdWithinLastYear": false, "description": "Bring grid-layout widgets to trame ", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/534814820/8609d8cf-b704-476a-9a5a-5f358c7a9eb2?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=0240ede24b14d80aa2718778091a289408af55681e4410fe5ddcdf04eb8fbf0e&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2025-04-15T00:59:03Z", "name": "trame-grid-layout", "pullRequestCount": 1, "stars": 3, "topics": ["trame", "trame-widget", "vue2"], "trusted": true}, "https://github.com/Kitware/trame-gwc": {"commitCount": 36, "createdAt": "2024-10-15T15:14:26Z", "createdWithinLastYear": false, "description": "Bring girder-web-components widgets to trame", "image": "https://opengraph.githubassets.com/a3e7e9a2c21f4d590e83d9bce67ef866e4cd17fe8cc97f79e86e3fd849c2ec3d/Kitware/trame-gwc", "lastCommitDate": "2026-05-26T14:07:38Z", "name": "trame-gwc", "pullRequestCount": 13, "stars": 2, "topics": ["girder", "trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-iframe": {"commitCount": 22, "createdAt": "2023-03-28T20:38:16Z", "createdWithinLastYear": false, "description": "Helper widget for trame to help for cross-origin communication between window/iframe", "image": "https://opengraph.githubassets.com/7413ac78fefb09e80e42690a5578f0caf7a5c6da1c1b1d311ee62561f10360e0/Kitware/trame-iframe", "lastCommitDate": "2025-01-01T06:19:37Z", "name": "trame-iframe", "pullRequestCount": 2, "stars": 4, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-image-tools": {"commitCount": 13, "createdAt": "2025-04-16T14:35:15Z", "createdWithinLastYear": false, "description": "Interactive annotation tool using SVG shapes. ", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/967492396/8b34d802-4943-4128-9131-31e9399ef525?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=b3db846fea7f6710975a4a1b716ffaa72ace326a1bb1d4a356190a7bd566e135&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2025-08-05T21:15:42Z", "name": "trame-image-tools", "pullRequestCount": 2, "stars": 5, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-jupyter-extension": {"commitCount": 26, "createdAt": "2023-07-24T20:18:24Z", "createdWithinLastYear": false, "description": "Jupyter extension for trame client/server communication", "image": "https://opengraph.githubassets.com/04f04e19bf84f1ba9b963195fcf8bd05b68aa792d2143991484abd3afaa0d9d0/Kitware/trame-jupyter-extension", "lastCommitDate": "2025-01-01T23:16:17Z", "name": "trame-jupyter-extension", "pullRequestCount": 2, "stars": 13, "topics": ["trame", "trame-maintenance-program"], "trusted": true}, "https://github.com/Kitware/trame-leaflet": {"commitCount": 34, "createdAt": "2022-05-11T20:03:28Z", "createdWithinLastYear": false, "description": "Enable leaflet widgets into trame", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/491256235/fb92a96a-9dd8-4f95-bf0c-6426eb2e11ba?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=08462978dfc6744038360208b98f8e1b5131e6e968e4208ce62d5b34a84a1792&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2025-03-09T20:00:33Z", "name": "trame-leaflet", "pullRequestCount": 6, "stars": 4, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-markdown": {"commitCount": 34, "createdAt": "2022-05-10T20:40:39Z", "createdWithinLastYear": false, "description": "Trame widget to embed markdown content into a trame application", "image": "https://opengraph.githubassets.com/e4bf2246a767fb203c29230f590badf0b95500f0cf45ea699fb6e705928da1fb/Kitware/trame-markdown", "lastCommitDate": "2025-06-11T14:13:50Z", "name": "trame-markdown", "pullRequestCount": 2, "stars": 1, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-matplotlib": {"commitCount": 21, "createdAt": "2022-05-10T23:12:15Z", "createdWithinLastYear": false, "description": "Trame widget for Matplotlib", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/490887975/47386bcb-fe4d-409b-a958-fac274ec444d?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=75e208da3d78d476561d857e2957a0b659b318f5f69d67ca43a7741513be3f60&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2025-04-15T01:04:44Z", "name": "trame-matplotlib", "pullRequestCount": 2, "stars": 6, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-mnist": {"commitCount": 22, "createdAt": "2022-02-12T00:19:08Z", "createdWithinLastYear": false, "description": "Simple trame demonstrator using the MNIST dataset with XAITK for saliency analysis", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/458378860/01982c09-0c47-4774-8bbe-c5df9754c248?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=5904c289f24c1d347d98e847f3449cc706c9de263c551ba58b41855428cf8c6a&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2025-04-15T01:04:14Z", "name": "trame-mnist", "pullRequestCount": 4, "stars": 1, "topics": ["trame", "trame-app"], "trusted": true}, "https://github.com/Kitware/trame-monitor": {"commitCount": 6, "createdAt": "2022-05-22T17:21:57Z", "createdWithinLastYear": false, "description": "Trame application and utility functions for resource monitoring", "image": "https://opengraph.githubassets.com/80e5541c8c399f14047d69b33bfc3d4a62f118624d231eda24a560926831b20a/Kitware/trame-monitor", "lastCommitDate": "2022-05-30T23:22:43Z", "name": "trame-monitor", "pullRequestCount": 0, "stars": 2, "topics": ["trame"], "trusted": true}, "https://github.com/Kitware/trame-plotly": {"commitCount": 40, "createdAt": "2022-05-10T17:43:30Z", "createdWithinLastYear": false, "description": "trame-plotly brings Plotly charts into trame", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/490802069/f220246a-9323-401b-815f-c340662a8e4a?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=e3cb961d0ceae586bf30f831178f095bec56482beab9556c8360d371657fc48b&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-04-18T04:20:09Z", "name": "trame-plotly", "pullRequestCount": 5, "stars": 5, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-quasar": {"commitCount": 15, "createdAt": "2023-08-17T03:49:25Z", "createdWithinLastYear": false, "description": "About trame-quasar brings Quasar UI Material Components into trame", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/679528211/aa0a9ccf-de96-45b5-9f65-a25a835cdc37?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=8f929088de47740b28ce148b0251bae15c43a345702bd9f1b2bcc622ce6897e4&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2025-04-15T00:58:02Z", "name": "trame-quasar", "pullRequestCount": 2, "stars": 5, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-radial-menu": {"commitCount": 48, "createdAt": "2026-05-28T11:57:12Z", "createdWithinLastYear": true, "description": "A trame widget that creates a radial menu around the mouse cursor", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/1252316706/4562feeb-8037-4399-8462-336317272c40?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=9e7c50d9a20188d85d00f189972a8a850508724e275b3ec5f8b5bc9577072683&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-06-23T08:57:07Z", "name": "trame-radial-menu", "pullRequestCount": 2, "stars": 0, "topics": ["trame", "trame-widget", "trame-component", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-rca": {"commitCount": 180, "createdAt": "2022-10-06T15:45:31Z", "createdWithinLastYear": false, "description": "Remote Controlled Area: Enable remote rendering from any backend. VTK integration supported with either image or video encoding. This is a modern implementation of trame-vtk for handling remote rendering.", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/546760215/39187e72-59ea-4257-ae59-c20fadaf2621?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=2f3bbb0c97b6f7fced116ab889ee1280569ccc16958094cc4148a692aed00748&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-07-28T13:55:30Z", "name": "trame-rca", "pullRequestCount": 46, "stars": 7, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-router": {"commitCount": 33, "createdAt": "2022-05-05T23:27:29Z", "createdWithinLastYear": false, "description": "trame-router brings Vue Router capabilities into trame widgets and ui", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/489154515/ec70c4ee-dbd2-4b8c-8a87-f01db5be1ed1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=6b67a9fbb4ad327371d6bbd710b588cd79003bd6ddbd9950347ee1a2131fd909&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2025-04-15T00:56:21Z", "name": "trame-router", "pullRequestCount": 1, "stars": 2, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-server": {"commitCount": 299, "createdAt": "2022-05-04T22:05:18Z", "createdWithinLastYear": false, "description": "Internal server side implementation of trame", "image": "https://opengraph.githubassets.com/0afea7a5a3313e0ce788cfc26ecc41b69de5208f91a5c3237329362e49555f56/Kitware/trame-server", "lastCommitDate": "2026-07-20T14:52:22Z", "name": "trame-server", "pullRequestCount": 80, "stars": 16, "topics": ["trame", "trame-maintenance-program"], "trusted": true}, "https://github.com/Kitware/trame-simput": {"commitCount": 132, "createdAt": "2022-05-26T22:03:18Z", "createdWithinLastYear": false, "description": "Simple input forms for any data model.", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/496784210/c51f590b-0441-43ca-8051-18cd5863c825?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=df15fa32a562663a017acd79bcb357244199d20f4e04460075d27a34a4bcd538&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-06-16T05:53:16Z", "name": "trame-simput", "pullRequestCount": 33, "stars": 10, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-tauri": {"commitCount": 66, "createdAt": "2022-10-11T22:36:05Z", "createdWithinLastYear": false, "description": "Widgets/utils library to help with Tauri desktop bundle interaction", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/549889902/0ffbb351-fa26-4b03-9a66-21213912d87d?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=ab9faa419a2a6d0c45f4c72a76b90d50c9b1d3e131ebee14069a8b16454604b9&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2025-10-21T15:48:45Z", "name": "trame-tauri", "pullRequestCount": 10, "stars": 14, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-tutorial": {"commitCount": 55, "createdAt": "2021-11-15T20:45:13Z", "createdWithinLastYear": false, "description": "Tutorial material for trame. ", "image": "https://opengraph.githubassets.com/d0ba6b1accddc8f48b7000a80fdd395c7bdf8766be16049c4e6c8fedd3316b9e/Kitware/trame-tutorial", "lastCommitDate": "2026-05-12T00:39:31Z", "name": "trame-tutorial", "pullRequestCount": 4, "stars": 23, "topics": ["trame"], "trusted": true}, "https://github.com/Kitware/trame-vega": {"commitCount": 26, "createdAt": "2022-05-11T15:51:21Z", "createdWithinLastYear": false, "description": "Vega widget for trame", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/491177541/9fc2495f-d418-44d5-aacd-267a3f022696?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=9c9fa31fa816607d48d56e36d05af4e36ed18562cf553c0e41cde7d999ffcd5b&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2025-04-15T00:57:18Z", "name": "trame-vega", "pullRequestCount": 1, "stars": 3, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-vtk": {"commitCount": 346, "createdAt": "2022-05-05T23:02:08Z", "createdWithinLastYear": false, "description": "VTK/ParaView widgets for trame enabling remote and local rendering", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/489149930/93fc7ee7-c195-460b-84ec-0a1de19063ee?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=aaab56d3a6966887f999fce02683b4597ddf5eda66312ec27acbd7115309639d&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-07-28T18:26:08Z", "name": "trame-vtk", "pullRequestCount": 64, "stars": 33, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-vtklocal": {"commitCount": 313, "createdAt": "2024-02-19T21:40:38Z", "createdWithinLastYear": false, "description": "Local Rendering using VTK.wasm to match server side rendering pipeline on the client side.", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/760145891/777ba66a-a13a-43e5-93a7-335da292e87c?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=7633ccb1b884aec3e21316485daa220ec6a3991c41443d962edd82e69f62006c&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-07-27T17:53:30Z", "name": "trame-vtklocal", "pullRequestCount": 41, "stars": 28, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-vuetify": {"commitCount": 129, "createdAt": "2022-05-05T22:21:25Z", "createdWithinLastYear": false, "description": "trame-vuetify brings Vuetify UI Material Components into trame", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/489141723/e803b4de-bb8c-4d90-99e7-2f302630e3fa?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=6302c9981c0fcf83950fb89b97ebb9f41952050cd17103d94461414ab5a2b0cb&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-07-20T17:58:24Z", "name": "trame-vuetify", "pullRequestCount": 25, "stars": 13, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-xterm": {"commitCount": 31, "createdAt": "2023-04-05T22:02:54Z", "createdWithinLastYear": false, "description": "XTerm widget for trame", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/624163216/265cb988-f93a-4d11-82e5-e4d9aa7322ba?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=419118dee704b963e42ef22c02da2421d8f8cbc77701c14b7437e2ead4d792ea&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-03-14T01:08:31Z", "name": "trame-xterm", "pullRequestCount": 0, "stars": 1, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/vtk-prompt": {"commitCount": 176, "createdAt": "2025-01-22T03:44:34Z", "createdWithinLastYear": false, "description": "Control VTK using natural language", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/920382769/0f37dbda-c867-4c5f-8721-0dd069f238d3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=0ca5da4c87b0b7867344b432c13bdfa0af0dbadd64e8ecb6fa8f0d11fd8e7e33&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-07-21T18:48:31Z", "name": "vtk-prompt", "pullRequestCount": 37, "stars": 12, "topics": ["llm", "openai-api", "trame", "vtk", "sci-vi"], "trusted": true}, "https://github.com/KitwareMedical/trame-slicer": {"commitCount": 304, "createdAt": "2025-01-30T15:04:34Z", "createdWithinLastYear": false, "description": "Bring the capabilities of 3D Slicer to the web with modern UI using the trame framework!", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/924733486/bea134dd-f0c3-446a-9510-032d4dca3ac3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=28c026c59f8427fc12d539011b9ebd3ed5c177fad43b475502741c1a8b893aeb&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2026-07-28T06:47:59Z", "name": "trame-slicer", "pullRequestCount": 80, "stars": 64, "topics": ["3d-slicer", "medical-imaging", "trame", "3d-slicer-custom-application", "3d-slicer-fork", "3d-slicer-software", "trame-app", "trame-maintenance-program", "vue3", "trame-widget"], "trusted": true}, "https://github.com/MBradley1985/ViSAGE": {"commitCount": 229, "createdAt": "2026-06-14T06:54:28Z", "createdWithinLastYear": true, "description": "Interactive 3D visualization of dark matter haloes and SAGE galaxies across cosmic time \u2014 PyVista + Trame", "image": "https://raw.githubusercontent.com/MBradley1985/ViSAGE/main/docs/images/hero.png", "lastCommitDate": "2026-07-30T10:13:07Z", "name": "ViSAGE", "pullRequestCount": 38, "stars": 1, "topics": ["trame", "trame-app", "..."], "trusted": false}, "https://github.com/MXJK851/SpinView": {"commitCount": 34, "createdAt": "2023-09-18T14:08:12Z", "createdWithinLastYear": false, "description": "SpinView: General interactive visual analysis tool for multi-scale computational magnetism", "image": "https://github.com/MXJK851/SpinView/raw/main/docs/assets/readme.png", "lastCommitDate": "2023-11-15T21:32:29Z", "name": "SpinView", "pullRequestCount": 0, "stars": 32, "topics": ["trame", "trame-app", "..."], "trusted": false}, "https://github.com/XAITK/xaitk-saliency-web-demo": {"commitCount": 103, "createdAt": "2021-10-07T14:36:05Z", "createdWithinLastYear": false, "description": "Demonstration Web UI to visualize XAITK Saliency functionality.", "image": "https://raw.githubusercontent.com/XAITK/xaitk-saliency-web-demo/refs/heads/master/gallery/xaitk.png", "lastCommitDate": "2026-07-13T16:11:06Z", "name": "xaitk-saliency-web-demo", "pullRequestCount": 22, "stars": 18, "topics": ["trame", "trame-app"], "trusted": true}, "https://github.com/brendanjmeade/fennil": {"commitCount": 110, "createdAt": "2025-11-24T13:14:34Z", "createdWithinLastYear": true, "description": "fennel", "image": "https://raw.githubusercontent.com/brendanjmeade/fennil/main/fennil.jpg", "lastCommitDate": "2026-06-03T19:28:30Z", "name": "fennil", "pullRequestCount": 3, "stars": 4, "topics": ["trame", "trame-app", "py-deck"], "trusted": true}, "https://github.com/brendanjmeade/parsli": {"commitCount": 235, "createdAt": "2025-01-16T23:00:38Z", "createdWithinLastYear": false, "description": "Visualization of celeri and skies results", "image": "https://raw.githubusercontent.com/brendanjmeade/parsli/refs/heads/main/parsli.png", "lastCommitDate": "2026-07-21T21:13:22Z", "name": "parsli", "pullRequestCount": 36, "stars": 12, "topics": ["trame", "trame-app", "vtk"], "trusted": true}, "https://github.com/cardinalgeo/drilldown": {"commitCount": 250, "createdAt": "2023-11-15T18:42:40Z", "createdWithinLastYear": false, "description": "Visualization tools for \"drilling down\" into ore deposits datasets", "image": "https://github.com/cardinalgeo/drilldown/raw/main/media/poster.jpg", "lastCommitDate": "2024-10-24T11:46:06Z", "name": "drilldown", "pullRequestCount": 19, "stars": 63, "topics": ["trame", "trame-app", "vtk", "..."], "trusted": false}, "https://github.com/dhruvhaldar/FOAMFlask": {"commitCount": 1353, "createdAt": "2025-09-06T13:07:06Z", "createdWithinLastYear": true, "description": "Yet another OpenFOAM frontend", "image": "https://github.com/dhruvhaldar/FOAMFlask/raw/dev_pyvista_ts_lkgc/Screenshots/geometry.png", "lastCommitDate": "2026-07-18T04:17:45Z", "name": "FOAMFlask", "pullRequestCount": 514, "stars": 2, "topics": ["docker", "openfoam", "openfoam-solver", "python3", "pyvista", "trame", "trame-app", "vtk", "vtk-applications", "post-processing", "..."], "trusted": false}, "https://github.com/epicsuite/episcope": {"commitCount": 133, "createdAt": "2025-04-03T22:05:37Z", "createdWithinLastYear": false, "description": "A tool for exploration of epigenetic datasets", "image": "https://raw.githubusercontent.com/epicsuite/episcope/refs/heads/main/doc/img/selection.gif", "lastCommitDate": "2026-06-15T17:04:22Z", "name": "episcope", "pullRequestCount": 16, "stars": 1, "topics": ["trame", "trame-app", "paraview"], "trusted": true}, "https://github.com/festim-dev/festim-gui": {"commitCount": 72, "createdAt": "2026-04-15T18:10:44Z", "createdWithinLastYear": true, "description": "Repo for the FESTIM gui developed with Trame", "image": "https://opengraph.githubassets.com/6487991df65669bd7d94f50317c8f9ad2c2bde50bf3f4e3511a78e442dac6644/festim-dev/festim-gui", "lastCommitDate": "2026-07-28T17:44:50Z", "name": "festim-gui", "pullRequestCount": 3, "stars": 1, "topics": ["trame", "trame-app", "paraview"], "trusted": true}, "https://github.com/jwindgassen/jupyter-trame-proxy": {"commitCount": 6, "createdAt": "2022-11-30T18:33:48Z", "createdWithinLastYear": false, "description": "JupyterServerProxy for trame and ParaView Visualizer", "image": "https://opengraph.githubassets.com/103a4954a4ac0264f0d7363607a9d7cb14ff06d2c012f9649d56b4848ffd0fef/jwindgassen/jupyter-trame-proxy", "lastCommitDate": "2022-12-06T17:35:51Z", "name": "jupyter-trame-proxy", "pullRequestCount": 0, "stars": 1, "topics": ["trame", "trame-app", "paraview", "..."], "trusted": false}, "https://github.com/kmarchais/mmgpy": {"commitCount": 380, "createdAt": "2024-12-01T21:31:38Z", "createdWithinLastYear": false, "description": "Pythonic remeshing library based on the MMG software.", "image": "https://github.com/kmarchais/mmgpy/raw/main/assets/mechanical_piece_remeshing.png", "lastCommitDate": "2026-07-20T06:53:14Z", "name": "mmgpy", "pullRequestCount": 273, "stars": 25, "topics": ["trame", "trame-app", "vtk", "..."], "trusted": false}, "https://github.com/linson7017/pymipf": {"commitCount": 22, "createdAt": "2025-01-15T14:47:47Z", "createdWithinLastYear": false, "description": "medical image web viewer with python", "image": "https://github.com/linson7017/pymipf/raw/master/imgs/multi_view.png", "lastCommitDate": "2025-04-03T01:30:57Z", "name": "pymipf", "pullRequestCount": 0, "stars": 1, "topics": ["trame", "trame-app", "vtk", "..."], "trusted": false}, "https://github.com/ndminhvn/interactive-population-visualization": {"commitCount": 5, "createdAt": "2025-12-01T05:32:47Z", "createdWithinLastYear": true, "description": "An interactive visualization system designed to explore county-level population trends", "image": "https://opengraph.githubassets.com/20508c5b8fe53dd6b39543c4c3e496befb736fedf3fb54a54a48df523c5d014e/ndminhvn/interactive-population-visualization", "lastCommitDate": "2025-12-08T04:07:01Z", "name": "interactive-population-visualization", "pullRequestCount": 0, "stars": 0, "topics": ["trame", "trame-app", "vtk", "..."], "trusted": false}, "https://github.com/utkarshayachit/simplified-batch": {"commitCount": 36, "createdAt": "2022-10-11T19:05:46Z", "createdWithinLastYear": false, "description": "HPC applications on Azure using Azure Batch", "image": "https://raw.githubusercontent.com/utkarshayachit/simplified-batch/refs/heads/main/images/trame.gif", "lastCommitDate": "2023-11-04T12:50:20Z", "name": "simplified-batch", "pullRequestCount": 0, "stars": 1, "topics": ["trame", "trame-app", "paraview", "..."], "trusted": false}, "https://github.com/vicentebolea/virtual-thermostat": {"commitCount": 20, "createdAt": "2025-05-18T00:46:21Z", "createdWithinLastYear": false, "description": "AC without Thermostat? here is your free OSS solution", "image": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/985529189/2dd89436-7c75-4954-a33e-d31dead923bc?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260730%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260730T112612Z&X-Amz-Expires=300&X-Amz-Signature=ea8ab644fa096193693c960561cc526b2443d5d27160efdb2597a37ede8743a1&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTQxMTA3MiwibmJmIjoxNzg1NDEwNzcyLCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.TcCZThQyw84MHjYirArLATmEK54526mb1NND5pxLyJo", "lastCommitDate": "2025-06-29T03:48:39Z", "name": "virtual-thermostat", "pullRequestCount": 0, "stars": 1, "topics": ["trame", "trame-app", "..."], "trusted": false}, "https://gitlab.kitware.com/keu-public/trame-catalyst-demo": {"commitCount": 10, "createdAt": "2026-05-07T00:00:00Z", "createdWithinLastYear": true, "description": "A trame application for Catalyst live visualization.", "image": "https://gitlab.kitware.com/keu-public/trame-catalyst-demo/-/raw/main/screenshot.png", "lastCommitDate": "2026-05-28T00:00:00Z", "name": "trame-catalyst-demo", "nameWithOwner": "keu-public/trame-catalyst-demo", "pullRequestCount": 0, "stars": 0, "topics": ["trame", "trame-app", "paraview"], "trusted": true}} \ No newline at end of file +{"https://github.com/Chahat08/BioSET_Visualizer": {"commitCount": 393, "createdAt": "2026-01-28T15:52:35Z", "createdWithinLastYear": true, "description": "A multi resolution volume renderer, specifically for analysing biomarker interactions in 3D CyCIF.", "image": "/trame/repos_images/57.png", "lastCommitDate": "2026-04-14T12:16:13Z", "name": "BioSET_Visualizer", "pullRequestCount": 51, "remoteImage": "https://raw.githubusercontent.com/Chahat08/BioSET_Visualizer/master/src/bioset/ui/assets/icon.jpg", "stars": 0, "topics": ["trame", "trame-app", "vtk", "..."], "trusted": false}, "https://github.com/Kitware/E3SMQuickCompare": {"commitCount": 564, "createdAt": "2025-11-12T16:29:30Z", "createdWithinLastYear": true, "description": "QuickCompare is an offshoot of QuickView, an interactive tool for inspecting data files produced by Earth system simulations. Instead of presenting a single simulation, QuickCompare contrasts two or more simulations that use the same horizontal mesh.", "image": "/trame/repos_images/43.png", "lastCommitDate": "2026-08-04T18:42:32Z", "name": "E3SMQuickCompare", "pullRequestCount": 6, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/1095134670/864dc74a-d211-48f5-9be4-e27131130e93?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=7b9931a9a44061e85b7aaa4fe069741e30421ef7547bb8355b297c3eb52b6a85&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 0, "topics": ["paraview", "trame", "trame-app"], "trusted": true}, "https://github.com/Kitware/QuickView": {"commitCount": 813, "createdAt": "2025-09-22T20:56:31Z", "createdWithinLastYear": true, "description": "A ParaView based, easy-to-use application for exploration of atmospheric data from E3SM.", "image": "/trame/repos_images/35.png", "lastCommitDate": "2026-08-04T18:42:12Z", "name": "QuickView", "pullRequestCount": 69, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/1062125521/5abdf8b7-e466-42db-a6d5-7751b5143fc6?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=fb196db02c60be16c74904ef0b6470ea33d8528f31aa985ef4951c46b35d073c&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 2, "topics": ["paraview", "trame-app", "trame"], "trusted": true}, "https://github.com/Kitware/SiteView": {"commitCount": 25, "createdAt": "2026-02-04T18:19:01Z", "createdWithinLastYear": true, "description": "The SiteView UI presents an ARM observatory as a candidate location for in-depth analysis of simulation results.", "image": "/trame/repos_images/45.png", "lastCommitDate": "2026-07-23T21:26:45Z", "name": "SiteView", "pullRequestCount": 2, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/1149966776/df118a72-d27a-4192-b11e-49eed1cd3b58?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=5255007be616a8241ab57fce2cafadc90ddde430099b05325ca05fa863e8c49e&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 0, "topics": ["trame", "trame-app"], "trusted": true}, "https://github.com/Kitware/VERACore": {"commitCount": 98, "createdAt": "2022-09-06T20:43:40Z", "createdWithinLastYear": false, "description": "VERACore is a Python application for visualization and engineering analyses of output data from VERA (Virtual Environment for Reactor Applications). Implemented in Python, it provides instantaneous 2D and 3D images, 1D plots, and alphanumeric data from VERA multi-physics simulations.", "image": "/trame/repos_images/9.png", "lastCommitDate": "2025-01-23T15:46:18Z", "name": "VERACore", "pullRequestCount": 6, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/533496282/a7c4e57f-fcc1-498a-b6e4-419dfa23c2cd?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=05bab20bde6f9be601fb83aa1251ba6ac19dd6eebcd6f6057acb3d17848477fd&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 14, "topics": ["trame", "trame-app", "vtk"], "trusted": true}, "https://github.com/Kitware/conceptual-modeler": {"commitCount": 17, "createdAt": "2021-06-16T21:07:55Z", "createdWithinLastYear": false, "description": "Conceptual Modeler based on GemPy and trame", "image": "/trame/repos_images/11.png", "lastCommitDate": "2024-04-02T22:54:29Z", "name": "conceptual-modeler", "pullRequestCount": 3, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/377628213/c01f6ca4-47f0-432e-a0bd-a53cfb115222?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=196fd4ca471e853c35aa339a9eede5aabc3f746d861ef61c0e768e66d1eb9171&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 13, "topics": ["trame-app", "trame", "python"], "trusted": true}, "https://github.com/Kitware/multivariate-view": {"commitCount": 97, "createdAt": "2024-04-12T21:06:42Z", "createdWithinLastYear": false, "description": "Multivariate volume visualizer", "image": "/trame/repos_images/22.png", "lastCommitDate": "2026-05-15T21:59:30Z", "name": "multivariate-view", "pullRequestCount": 14, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/785890887/e42c292d-c11c-404c-8a81-4dc2b60bfffb?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=76f0076bac18c181a4c77631b3554ad1f7c8a5afa75c0bef866277278dee803c&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 6, "topics": ["trame", "trame-app", "vtk"], "trusted": true}, "https://github.com/Kitware/nrtk-explorer": {"commitCount": 473, "createdAt": "2023-12-08T22:23:25Z", "createdWithinLastYear": false, "description": "NRTK Explorer is a web application for exploring image datasets. It provides insights of a image dataset in COCO format and it evaluate image transformation and perturbation resilience of object recognition DL models.", "image": "/trame/repos_images/16.png", "lastCommitDate": "2026-03-06T03:34:39Z", "name": "nrtk-explorer", "pullRequestCount": 202, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/729319732/1fdbb101-aacb-4f55-aea8-57ba3c206b42?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=28b42223b074c8a0cda556f4ef990314f8bb0fa1572e1a96a80db79d8b2b1d29&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 11, "topics": ["trame-app", "trame"], "trusted": true}, "https://github.com/Kitware/pan3d": {"commitCount": 664, "createdAt": "2022-05-02T20:29:51Z", "createdWithinLastYear": false, "description": "Python library for easily loading, interacting and visualizing XArray dataset using VTK and trame.", "image": "/trame/repos_images/2.png", "lastCommitDate": "2026-04-27T17:43:14Z", "name": "pan3d", "pullRequestCount": 93, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/487981863/bffbd457-47c9-47ca-89f7-5fc15b5c4272?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=d4189b16198bbb5d953ac642709f9354d78198e58816fbf1f63ecdd5ac418d7b&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 36, "topics": ["3d", "trame", "visualization", "vtk", "xarray", "xarray-accessor", "trame-app"], "trusted": true}, "https://github.com/Kitware/paraview-trame-components": {"commitCount": 156, "createdAt": "2024-04-11T16:22:13Z", "createdWithinLastYear": false, "description": "High level components for ParaView and trame", "image": "/trame/repos_images/8.png", "lastCommitDate": "2026-02-10T10:03:34Z", "name": "paraview-trame-components", "pullRequestCount": 20, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/785311795/cd3a3f01-5053-485d-a095-8bd18f46fa40?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=499eff188dbfca413af93fa23e6e98a9ac3e6d897611363c516175fcf10d0fc4&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 14, "topics": ["paraview", "trame", "trame-app"], "trusted": true}, "https://github.com/Kitware/pf-simulation-modeler": {"commitCount": 59, "createdAt": "2022-01-25T23:15:36Z", "createdWithinLastYear": false, "description": "Simulation modeler for ParFlow. Trame application providing user interface for configuring a parflow simulation.", "image": "/trame/repos_images/41.png", "lastCommitDate": "2023-07-26T18:50:52Z", "name": "pf-simulation-modeler", "pullRequestCount": 4, "remoteImage": "https://opengraph.githubassets.com/31d536c5d82fcfed6f54e642ccd9b29f178677c2b3693bfe8b4eb46570c7cf83/Kitware/pf-simulation-modeler", "stars": 1, "topics": ["trame"], "trusted": true}, "https://github.com/Kitware/trame": {"commitCount": 665, "createdAt": "2021-09-24T21:38:47Z", "createdWithinLastYear": false, "description": "Trame lets you weave various components and technologies into a Web Application solely written in Python.", "image": "/trame/repos_images/1.png", "lastCommitDate": "2026-07-30T13:43:34Z", "name": "trame", "pullRequestCount": 137, "remoteImage": "https://opengraph.githubassets.com/488c18412098be9969fafb1563c19dddb1cc8399e449bf281ca50b99f4fe8e46/Kitware/trame", "stars": 689, "topics": ["data-visualization", "plotting", "3d", "vtk", "paraview", "trame", "python3", "web-ui", "trame-maintenance-program"], "trusted": true}, "https://github.com/Kitware/trame-bbox": {"commitCount": 1, "createdAt": "2024-05-07T21:36:11Z", "createdWithinLastYear": false, "description": "Widget library for trame to draw or interact with bounding box via svg.", "image": "/trame/repos_images/34.png", "lastCommitDate": "2024-05-07T22:47:09Z", "name": "trame-bbox", "pullRequestCount": 0, "remoteImage": "https://opengraph.githubassets.com/e1bcebf07b2391e5c68ef628b5eff4a7fe04a28c60576b0d0bf06d4b3bfb386d/Kitware/trame-bbox", "stars": 2, "topics": ["trame"], "trusted": true}, "https://github.com/Kitware/trame-client": {"commitCount": 342, "createdAt": "2022-05-04T22:46:35Z", "createdWithinLastYear": false, "description": "Internal client side implementation of trame", "image": "/trame/repos_images/15.png", "lastCommitDate": "2026-08-05T04:41:58Z", "name": "trame-client", "pullRequestCount": 55, "remoteImage": "https://opengraph.githubassets.com/83f079dd6baaa0c6282bd1db3ed451fcbf6d6622e960edb2de10ee1b31e4984b/Kitware/trame-client", "stars": 12, "topics": ["trame", "trame-maintenance-program"], "trusted": true}, "https://github.com/Kitware/trame-code": {"commitCount": 38, "createdAt": "2022-11-10T23:52:12Z", "createdWithinLastYear": false, "description": "VS Code text editor widget for trame ", "image": "/trame/repos_images/19.png", "lastCommitDate": "2026-06-17T15:26:27Z", "name": "trame-code", "pullRequestCount": 5, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/564540701/c6ef1f15-4b10-4267-8bb0-ad5a488256f4?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=530f9583bb927158ad95c396dea9b3a5746b82d1c1a7aeb138acc785ebbaa2e0&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 7, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-colormaps": {"commitCount": 66, "createdAt": "2026-05-13T23:09:00Z", "createdWithinLastYear": true, "description": "Trame widget and dataclass to control vtk mapper and colormaps", "image": "/trame/repos_images/47.png", "lastCommitDate": "2026-07-22T19:11:02Z", "name": "trame-colormaps", "pullRequestCount": 17, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/1238205135/92448d3c-1f03-45d9-b27f-03f5d6b0e53f?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=ddc7bf180c3d3ecba55cedd4ddf11b2ab4025190cb2446e67d0f767df06574ba&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 0, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-components": {"commitCount": 54, "createdAt": "2022-05-11T21:03:27Z", "createdWithinLastYear": false, "description": "Helper widgets for trame", "image": "/trame/repos_images/30.png", "lastCommitDate": "2025-05-30T14:21:33Z", "name": "trame-components", "pullRequestCount": 4, "remoteImage": "https://opengraph.githubassets.com/4e4f2270b991fbcff569370fc5edd4bb5849ddd6d8f79ab70ac8faf991557e0d/Kitware/trame-components", "stars": 3, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-cookiecutter": {"commitCount": 78, "createdAt": "2022-01-03T01:17:58Z", "createdWithinLastYear": false, "description": "Cookie Cutter template for creating trame application/module", "image": "/trame/repos_images/6.png", "lastCommitDate": "2026-07-27T16:27:45Z", "name": "trame-cookiecutter", "pullRequestCount": 18, "remoteImage": "https://opengraph.githubassets.com/41016b9f52c135cdb3a56e4eb38268bbd957cbe37a9b2956559f8c0a3da98632/Kitware/trame-cookiecutter", "stars": 20, "topics": ["cookiecutter", "trame", "trame-maintenance-program"], "trusted": true}, "https://github.com/Kitware/trame-dataclass": {"commitCount": 103, "createdAt": "2025-08-26T16:43:31Z", "createdWithinLastYear": true, "description": "Typed Python dataclasses with automatic server-to-browser state sync for trame applications", "image": "/trame/repos_images/40.png", "lastCommitDate": "2026-06-30T23:46:00Z", "name": "trame-dataclass", "pullRequestCount": 10, "remoteImage": "https://opengraph.githubassets.com/e2cff070f3036eea96ed6b715163ba810e2aac4e039b3d8cdf2657326f4262d4/Kitware/trame-dataclass", "stars": 1, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-datagrid": {"commitCount": 22, "createdAt": "2024-01-18T20:34:00Z", "createdWithinLastYear": false, "description": "Trame wrapper to RevoGrid component", "image": "/trame/repos_images/18.png", "lastCommitDate": "2025-06-04T17:03:18Z", "name": "trame-datagrid", "pullRequestCount": 2, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/745195298/ad63d855-38b3-4121-a5bc-017e36734fe3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=fccabe805bdef5c7038341ecdd331711c5eee1a4148dcae93ed5f0fd17b992e2&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 9, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-deckgl": {"commitCount": 29, "createdAt": "2022-05-11T19:36:02Z", "createdWithinLastYear": false, "description": "Deck.gl widget for trame", "image": "/trame/repos_images/31.png", "lastCommitDate": "2026-02-03T18:36:37Z", "name": "trame-deckgl", "pullRequestCount": 3, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/491248891/6e788ae7-c0dd-4ff3-8eee-581a9f64fc7f?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=55e275f6dcab3b1d44deb3b1ca4759136e6076eb5a5fa5f966e250f976612e1d&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 3, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-dockview": {"commitCount": 37, "createdAt": "2025-06-22T04:38:42Z", "createdWithinLastYear": false, "description": "Trame wrapper to a Docking Layout Manager", "image": "/trame/repos_images/46.png", "lastCommitDate": "2026-07-15T22:02:40Z", "name": "trame-dockview", "pullRequestCount": 6, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/1006355758/26f0f8a4-850a-42b2-ac5c-ad0e77a1de6d?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=fb687a08153e80667714bf04c846e9b21115836f702153537161da54a9a8f7da&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 0, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-formkit": {"commitCount": 12, "createdAt": "2023-02-13T20:24:32Z", "createdWithinLastYear": false, "description": "FormKit widgets exposed in trame", "image": "/trame/repos_images/38.png", "lastCommitDate": "2025-01-09T21:18:00Z", "name": "trame-formkit", "pullRequestCount": 0, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/601319791/fc13a8d1-1a61-49f4-a3ff-9c9457fea802?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=8cc879882afd0549fea8cabd22ae0260356afd318ec05101c6915969318d17f7&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 1, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-grid-layout": {"commitCount": 21, "createdAt": "2022-09-09T21:44:30Z", "createdWithinLastYear": false, "description": "Bring grid-layout widgets to trame ", "image": "/trame/repos_images/28.png", "lastCommitDate": "2025-04-15T00:59:03Z", "name": "trame-grid-layout", "pullRequestCount": 1, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/534814820/8609d8cf-b704-476a-9a5a-5f358c7a9eb2?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=57c43518bbeff374abe5053a8d017120f021d0944ac72a42b5f82525bbd7b48b&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 3, "topics": ["trame", "trame-widget", "vue2"], "trusted": true}, "https://github.com/Kitware/trame-gwc": {"commitCount": 36, "createdAt": "2024-10-15T15:14:26Z", "createdWithinLastYear": false, "description": "Bring girder-web-components widgets to trame", "image": "/trame/repos_images/36.png", "lastCommitDate": "2026-05-26T14:07:38Z", "name": "trame-gwc", "pullRequestCount": 13, "remoteImage": "https://opengraph.githubassets.com/a3e7e9a2c21f4d590e83d9bce67ef866e4cd17fe8cc97f79e86e3fd849c2ec3d/Kitware/trame-gwc", "stars": 2, "topics": ["girder", "trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-iframe": {"commitCount": 22, "createdAt": "2023-03-28T20:38:16Z", "createdWithinLastYear": false, "description": "Helper widget for trame to help for cross-origin communication between window/iframe", "image": "/trame/repos_images/27.png", "lastCommitDate": "2025-01-01T06:19:37Z", "name": "trame-iframe", "pullRequestCount": 2, "remoteImage": "https://opengraph.githubassets.com/7413ac78fefb09e80e42690a5578f0caf7a5c6da1c1b1d311ee62561f10360e0/Kitware/trame-iframe", "stars": 4, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-image-tools": {"commitCount": 13, "createdAt": "2025-04-16T14:35:15Z", "createdWithinLastYear": false, "description": "Interactive annotation tool using SVG shapes. ", "image": "/trame/repos_images/24.png", "lastCommitDate": "2025-08-05T21:15:42Z", "name": "trame-image-tools", "pullRequestCount": 2, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/967492396/8b34d802-4943-4128-9131-31e9399ef525?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=77bd2f821117989be4c1375c811a37a65248eda9847f94d3162482c66706fe79&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 5, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-jupyter-extension": {"commitCount": 26, "createdAt": "2023-07-24T20:18:24Z", "createdWithinLastYear": false, "description": "Jupyter extension for trame client/server communication", "image": "/trame/repos_images/12.png", "lastCommitDate": "2025-01-01T23:16:17Z", "name": "trame-jupyter-extension", "pullRequestCount": 2, "remoteImage": "https://opengraph.githubassets.com/04f04e19bf84f1ba9b963195fcf8bd05b68aa792d2143991484abd3afaa0d9d0/Kitware/trame-jupyter-extension", "stars": 13, "topics": ["trame", "trame-maintenance-program"], "trusted": true}, "https://github.com/Kitware/trame-leaflet": {"commitCount": 34, "createdAt": "2022-05-11T20:03:28Z", "createdWithinLastYear": false, "description": "Enable leaflet widgets into trame", "image": "/trame/repos_images/26.png", "lastCommitDate": "2025-03-09T20:00:33Z", "name": "trame-leaflet", "pullRequestCount": 6, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/491256235/fb92a96a-9dd8-4f95-bf0c-6426eb2e11ba?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=19833705aa2af07d26e132ac812062e4ff4b72cb1fb4cdb036291502190d946e&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 4, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-markdown": {"commitCount": 34, "createdAt": "2022-05-10T20:40:39Z", "createdWithinLastYear": false, "description": "Trame widget to embed markdown content into a trame application", "image": "/trame/repos_images/37.png", "lastCommitDate": "2025-06-11T14:13:50Z", "name": "trame-markdown", "pullRequestCount": 2, "remoteImage": "https://opengraph.githubassets.com/e4bf2246a767fb203c29230f590badf0b95500f0cf45ea699fb6e705928da1fb/Kitware/trame-markdown", "stars": 1, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-matplotlib": {"commitCount": 21, "createdAt": "2022-05-10T23:12:15Z", "createdWithinLastYear": false, "description": "Trame widget for Matplotlib", "image": "/trame/repos_images/21.png", "lastCommitDate": "2025-04-15T01:04:44Z", "name": "trame-matplotlib", "pullRequestCount": 2, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/490887975/47386bcb-fe4d-409b-a958-fac274ec444d?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=d0b2663cf8292ccc63a40ca6e6e7cc2bde4c7fb0f8040469f41f680232db33b2&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 6, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-mnist": {"commitCount": 22, "createdAt": "2022-02-12T00:19:08Z", "createdWithinLastYear": false, "description": "Simple trame demonstrator using the MNIST dataset with XAITK for saliency analysis", "image": "/trame/repos_images/39.png", "lastCommitDate": "2025-04-15T01:04:14Z", "name": "trame-mnist", "pullRequestCount": 4, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/458378860/01982c09-0c47-4774-8bbe-c5df9754c248?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=76a4342c5b9e658b9115ea05209b09409ea3babf2b63782917f08236693f520c&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 1, "topics": ["trame", "trame-app"], "trusted": true}, "https://github.com/Kitware/trame-monitor": {"commitCount": 6, "createdAt": "2022-05-22T17:21:57Z", "createdWithinLastYear": false, "description": "Trame application and utility functions for resource monitoring", "image": "/trame/repos_images/33.png", "lastCommitDate": "2022-05-30T23:22:43Z", "name": "trame-monitor", "pullRequestCount": 0, "remoteImage": "https://opengraph.githubassets.com/80e5541c8c399f14047d69b33bfc3d4a62f118624d231eda24a560926831b20a/Kitware/trame-monitor", "stars": 2, "topics": ["trame"], "trusted": true}, "https://github.com/Kitware/trame-plotly": {"commitCount": 40, "createdAt": "2022-05-10T17:43:30Z", "createdWithinLastYear": false, "description": "trame-plotly brings Plotly charts into trame", "image": "/trame/repos_images/25.png", "lastCommitDate": "2026-04-18T04:20:09Z", "name": "trame-plotly", "pullRequestCount": 5, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/490802069/f220246a-9323-401b-815f-c340662a8e4a?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=4c9a766fc70339d1001ebc614bc2423d5f340ceab893843eeffa7d271465a4a6&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 5, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-quasar": {"commitCount": 15, "createdAt": "2023-08-17T03:49:25Z", "createdWithinLastYear": false, "description": "About trame-quasar brings Quasar UI Material Components into trame", "image": "/trame/repos_images/23.png", "lastCommitDate": "2025-04-15T00:58:02Z", "name": "trame-quasar", "pullRequestCount": 2, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/679528211/aa0a9ccf-de96-45b5-9f65-a25a835cdc37?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=b4231555a82580c606e4423d3160eba4e5e995dd8119c6a61655438de0e7c45c&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 5, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-radial-menu": {"commitCount": 48, "createdAt": "2026-05-28T11:57:12Z", "createdWithinLastYear": true, "description": "A trame widget that creates a radial menu around the mouse cursor", "image": "/trame/repos_images/44.png", "lastCommitDate": "2026-06-23T08:57:07Z", "name": "trame-radial-menu", "pullRequestCount": 2, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/1252316706/4562feeb-8037-4399-8462-336317272c40?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=f01e96d5bdcd77af40d05cd44940e78149f41aa0268e9128a5ada190e7d5f3c8&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 0, "topics": ["trame", "trame-widget", "trame-component", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-rca": {"commitCount": 180, "createdAt": "2022-10-06T15:45:31Z", "createdWithinLastYear": false, "description": "Remote Controlled Area: Enable remote rendering from any backend. VTK integration supported with either image or video encoding. This is a modern implementation of trame-vtk for handling remote rendering.", "image": "/trame/repos_images/20.png", "lastCommitDate": "2026-07-28T13:55:30Z", "name": "trame-rca", "pullRequestCount": 46, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/546760215/39187e72-59ea-4257-ae59-c20fadaf2621?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=eea3fbef171ed0aa2483953fe43122078b09efe87b9293172ee3638b3ccb1821&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 7, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-router": {"commitCount": 33, "createdAt": "2022-05-05T23:27:29Z", "createdWithinLastYear": false, "description": "trame-router brings Vue Router capabilities into trame widgets and ui", "image": "/trame/repos_images/32.png", "lastCommitDate": "2025-04-15T00:56:21Z", "name": "trame-router", "pullRequestCount": 1, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/489154515/ec70c4ee-dbd2-4b8c-8a87-f01db5be1ed1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=eb99c859a59d2106e3e07951d2c5d2875a68139390fb09f3d760508727c5ca95&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 2, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-server": {"commitCount": 304, "createdAt": "2022-05-04T22:05:18Z", "createdWithinLastYear": false, "description": "Internal server side implementation of trame", "image": "/trame/repos_images/7.png", "lastCommitDate": "2026-07-31T23:06:33Z", "name": "trame-server", "pullRequestCount": 81, "remoteImage": "https://opengraph.githubassets.com/b980b9b149e452bd27b42521d96e9623877e3d235a9439e37f342ca1032a6a57/Kitware/trame-server", "stars": 16, "topics": ["trame", "trame-maintenance-program"], "trusted": true}, "https://github.com/Kitware/trame-simput": {"commitCount": 134, "createdAt": "2022-05-26T22:03:18Z", "createdWithinLastYear": false, "description": "Simple input forms for any data model.", "image": "/trame/repos_images/17.png", "lastCommitDate": "2026-07-31T15:33:06Z", "name": "trame-simput", "pullRequestCount": 34, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/496784210/c51f590b-0441-43ca-8051-18cd5863c825?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=66f02153477dc73ec11281948d37149b81498687305d5148f555c7e888653a43&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 10, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-tauri": {"commitCount": 66, "createdAt": "2022-10-11T22:36:05Z", "createdWithinLastYear": false, "description": "Widgets/utils library to help with Tauri desktop bundle interaction", "image": "/trame/repos_images/10.png", "lastCommitDate": "2025-10-21T15:48:45Z", "name": "trame-tauri", "pullRequestCount": 10, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/549889902/0ffbb351-fa26-4b03-9a66-21213912d87d?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=8274a99ab0d384f93e5fd9c9d178f618bfe8b490e756582ace935ce71ec19735&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 14, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-tutorial": {"commitCount": 55, "createdAt": "2021-11-15T20:45:13Z", "createdWithinLastYear": false, "description": "Tutorial material for trame. ", "image": "/trame/repos_images/5.png", "lastCommitDate": "2026-05-12T00:39:31Z", "name": "trame-tutorial", "pullRequestCount": 4, "remoteImage": "https://opengraph.githubassets.com/d0ba6b1accddc8f48b7000a80fdd395c7bdf8766be16049c4e6c8fedd3316b9e/Kitware/trame-tutorial", "stars": 23, "topics": ["trame"], "trusted": true}, "https://github.com/Kitware/trame-vega": {"commitCount": 26, "createdAt": "2022-05-11T15:51:21Z", "createdWithinLastYear": false, "description": "Vega widget for trame", "image": "/trame/repos_images/29.png", "lastCommitDate": "2025-04-15T00:57:18Z", "name": "trame-vega", "pullRequestCount": 1, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/491177541/9fc2495f-d418-44d5-aacd-267a3f022696?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=d62fb6dc47aec67f5fe7e410ba83cc384db68cd42e3734832cdf22dddb027829&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 3, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-vtk": {"commitCount": 346, "createdAt": "2022-05-05T23:02:08Z", "createdWithinLastYear": false, "description": "VTK/ParaView widgets for trame enabling remote and local rendering", "image": "/trame/repos_images/3.png", "lastCommitDate": "2026-07-28T18:26:08Z", "name": "trame-vtk", "pullRequestCount": 64, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/489149930/93fc7ee7-c195-460b-84ec-0a1de19063ee?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=93154316e48f02df8564ee3a42621c59130ee7e60b95e09b9c3da72ccb8cb779&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 33, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-vtklocal": {"commitCount": 318, "createdAt": "2024-02-19T21:40:38Z", "createdWithinLastYear": false, "description": "Local Rendering using VTK.wasm to match server side rendering pipeline on the client side.", "image": "/trame/repos_images/4.png", "lastCommitDate": "2026-08-04T18:12:50Z", "name": "trame-vtklocal", "pullRequestCount": 45, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/760145891/777ba66a-a13a-43e5-93a7-335da292e87c?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=347395884b10079a86c6fdf91c2c4d3462fe533e4d74efddb4feabbe62450125&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 28, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-vuetify": {"commitCount": 129, "createdAt": "2022-05-05T22:21:25Z", "createdWithinLastYear": false, "description": "trame-vuetify brings Vuetify UI Material Components into trame", "image": "/trame/repos_images/13.png", "lastCommitDate": "2026-07-20T17:58:24Z", "name": "trame-vuetify", "pullRequestCount": 25, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/489141723/e803b4de-bb8c-4d90-99e7-2f302630e3fa?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=cf3920f1d59f1db4f5a5b7528658ea4553059dea97526b83ea7496e3436b03fc&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 13, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/trame-xterm": {"commitCount": 31, "createdAt": "2023-04-05T22:02:54Z", "createdWithinLastYear": false, "description": "XTerm widget for trame", "image": "/trame/repos_images/42.png", "lastCommitDate": "2026-03-14T01:08:31Z", "name": "trame-xterm", "pullRequestCount": 0, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/624163216/265cb988-f93a-4d11-82e5-e4d9aa7322ba?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=3ad7b321514ef945e5f826635dde50a325f50da11d465c1d440ba881fc38d863&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 1, "topics": ["trame", "trame-maintenance-program", "trame-widget", "vue2", "vue3"], "trusted": true}, "https://github.com/Kitware/vtk-prompt": {"commitCount": 176, "createdAt": "2025-01-22T03:44:34Z", "createdWithinLastYear": false, "description": "Control VTK using natural language", "image": "/trame/repos_images/14.png", "lastCommitDate": "2026-07-21T18:48:31Z", "name": "vtk-prompt", "pullRequestCount": 38, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/920382769/0f37dbda-c867-4c5f-8721-0dd069f238d3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=f795e8a5c12b45f06286ca22c5e7813cd8d442dc33a02eeec7f7d5165ead109c&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 12, "topics": ["llm", "openai-api", "trame", "vtk", "sci-vi"], "trusted": true}, "https://github.com/KitwareMedical/trame-slicer": {"commitCount": 305, "createdAt": "2025-01-30T15:04:34Z", "createdWithinLastYear": false, "description": "Bring the capabilities of 3D Slicer to the web with modern UI using the trame framework!", "image": "/trame/repos_images/48.png", "lastCommitDate": "2026-07-31T12:34:41Z", "name": "trame-slicer", "pullRequestCount": 80, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/924733486/bea134dd-f0c3-446a-9510-032d4dca3ac3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=54476866e1f6e578a3cd5eaface25489911dd08e3174bf9a26995a1f60623bdf&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 64, "topics": ["3d-slicer", "medical-imaging", "trame", "3d-slicer-custom-application", "3d-slicer-fork", "3d-slicer-software", "trame-app", "trame-maintenance-program", "vue3", "trame-widget"], "trusted": true}, "https://github.com/MBradley1985/ViSAGE": {"commitCount": 230, "createdAt": "2026-06-14T06:54:28Z", "createdWithinLastYear": true, "description": "Interactive 3D visualization of dark matter haloes and SAGE galaxies across cosmic time \u2014 PyVista + Trame", "image": "/trame/repos_images/51.png", "lastCommitDate": "2026-07-31T00:41:17Z", "name": "ViSAGE", "pullRequestCount": 38, "remoteImage": "https://raw.githubusercontent.com/MBradley1985/ViSAGE/main/docs/images/hero.png", "stars": 1, "topics": ["trame", "trame-app", "..."], "trusted": false}, "https://github.com/MXJK851/SpinView": {"commitCount": 34, "createdAt": "2023-09-18T14:08:12Z", "createdWithinLastYear": false, "description": "SpinView: General interactive visual analysis tool for multi-scale computational magnetism", "image": "/trame/repos_images/63.png", "lastCommitDate": "2023-11-15T21:32:29Z", "name": "SpinView", "pullRequestCount": 0, "remoteImage": "https://github.com/MXJK851/SpinView/raw/main/docs/assets/readme.png", "stars": 33, "topics": ["trame", "trame-app", "..."], "trusted": false}, "https://github.com/XAITK/xaitk-saliency-web-demo": {"commitCount": 103, "createdAt": "2021-10-07T14:36:05Z", "createdWithinLastYear": false, "description": "Demonstration Web UI to visualize XAITK Saliency functionality.", "image": "/trame/repos_images/60.png", "lastCommitDate": "2026-07-13T16:11:06Z", "name": "xaitk-saliency-web-demo", "pullRequestCount": 22, "remoteImage": "https://raw.githubusercontent.com/XAITK/xaitk-saliency-web-demo/refs/heads/master/gallery/xaitk.png", "stars": 18, "topics": ["trame", "trame-app"], "trusted": true}, "https://github.com/brendanjmeade/fennil": {"commitCount": 110, "createdAt": "2025-11-24T13:14:34Z", "createdWithinLastYear": true, "description": "fennel", "image": "/trame/repos_images/58.png", "lastCommitDate": "2026-06-03T19:28:30Z", "name": "fennil", "pullRequestCount": 3, "remoteImage": "https://raw.githubusercontent.com/brendanjmeade/fennil/main/fennil.jpg", "stars": 4, "topics": ["trame", "trame-app", "py-deck"], "trusted": true}, "https://github.com/brendanjmeade/parsli": {"commitCount": 235, "createdAt": "2025-01-16T23:00:38Z", "createdWithinLastYear": false, "description": "Visualization of celeri and skies results", "image": "/trame/repos_images/59.png", "lastCommitDate": "2026-07-21T21:13:22Z", "name": "parsli", "pullRequestCount": 36, "remoteImage": "https://raw.githubusercontent.com/brendanjmeade/parsli/refs/heads/main/parsli.png", "stars": 12, "topics": ["trame", "trame-app", "vtk"], "trusted": true}, "https://github.com/cardinalgeo/drilldown": {"commitCount": 250, "createdAt": "2023-11-15T18:42:40Z", "createdWithinLastYear": false, "description": "Visualization tools for \"drilling down\" into ore deposits datasets", "image": "/trame/repos_images/62.png", "lastCommitDate": "2024-10-24T11:46:06Z", "name": "drilldown", "pullRequestCount": 19, "remoteImage": "https://github.com/cardinalgeo/drilldown/raw/main/media/poster.jpg", "stars": 63, "topics": ["trame", "trame-app", "vtk", "..."], "trusted": false}, "https://github.com/dhruvhaldar/FOAMFlask": {"commitCount": 1353, "createdAt": "2025-09-06T13:07:06Z", "createdWithinLastYear": true, "description": "Yet another OpenFOAM frontend", "image": "/trame/repos_images/50.png", "lastCommitDate": "2026-07-18T04:17:45Z", "name": "FOAMFlask", "pullRequestCount": 515, "remoteImage": "https://github.com/dhruvhaldar/FOAMFlask/raw/dev_pyvista_ts_lkgc/Screenshots/geometry.png", "stars": 2, "topics": ["docker", "openfoam", "openfoam-solver", "python3", "pyvista", "trame", "trame-app", "vtk", "vtk-applications", "post-processing", "..."], "trusted": false}, "https://github.com/epicsuite/episcope": {"commitCount": 133, "createdAt": "2025-04-03T22:05:37Z", "createdWithinLastYear": false, "description": "A tool for exploration of epigenetic datasets", "image": "/trame/repos_images/64.png", "lastCommitDate": "2026-06-15T17:04:22Z", "name": "episcope", "pullRequestCount": 16, "remoteImage": "https://raw.githubusercontent.com/epicsuite/episcope/refs/heads/main/doc/img/selection.gif", "stars": 1, "topics": ["trame", "trame-app", "paraview"], "trusted": true}, "https://github.com/festim-dev/festim-gui": {"commitCount": 73, "createdAt": "2026-04-15T18:10:44Z", "createdWithinLastYear": true, "description": "Repo for the FESTIM gui developed with Trame", "image": "/trame/repos_images/61.png", "lastCommitDate": "2026-07-31T16:46:34Z", "name": "festim-gui", "pullRequestCount": 3, "remoteImage": "https://opengraph.githubassets.com/6445d99c644f14e2f76d60c3cc903097fa17d6dcf42540bafe1c075530d4a96e/festim-dev/festim-gui", "stars": 1, "topics": ["trame", "trame-app", "paraview"], "trusted": true}, "https://github.com/jwindgassen/jupyter-trame-proxy": {"commitCount": 6, "createdAt": "2022-11-30T18:33:48Z", "createdWithinLastYear": false, "description": "JupyterServerProxy for trame and ParaView Visualizer", "image": "/trame/repos_images/52.png", "lastCommitDate": "2022-12-06T17:35:51Z", "name": "jupyter-trame-proxy", "pullRequestCount": 0, "remoteImage": "https://opengraph.githubassets.com/103a4954a4ac0264f0d7363607a9d7cb14ff06d2c012f9649d56b4848ffd0fef/jwindgassen/jupyter-trame-proxy", "stars": 1, "topics": ["trame", "trame-app", "paraview", "..."], "trusted": false}, "https://github.com/kmarchais/mmgpy": {"commitCount": 385, "createdAt": "2024-12-01T21:31:38Z", "createdWithinLastYear": false, "description": "Pythonic remeshing library based on the MMG software.", "image": "/trame/repos_images/49.png", "lastCommitDate": "2026-07-30T22:12:58Z", "name": "mmgpy", "pullRequestCount": 276, "remoteImage": "https://github.com/kmarchais/mmgpy/raw/main/assets/mechanical_piece_remeshing.png", "stars": 25, "topics": ["trame", "trame-app", "vtk", "..."], "trusted": false}, "https://github.com/linson7017/pymipf": {"commitCount": 22, "createdAt": "2025-01-15T14:47:47Z", "createdWithinLastYear": false, "description": "medical image web viewer with python", "image": "/trame/repos_images/55.png", "lastCommitDate": "2025-04-03T01:30:57Z", "name": "pymipf", "pullRequestCount": 0, "remoteImage": "https://github.com/linson7017/pymipf/raw/master/imgs/multi_view.png", "stars": 1, "topics": ["trame", "trame-app", "vtk", "..."], "trusted": false}, "https://github.com/ndminhvn/interactive-population-visualization": {"commitCount": 5, "createdAt": "2025-12-01T05:32:47Z", "createdWithinLastYear": true, "description": "An interactive visualization system designed to explore county-level population trends", "image": "/trame/repos_images/56.png", "lastCommitDate": "2025-12-08T04:07:01Z", "name": "interactive-population-visualization", "pullRequestCount": 0, "remoteImage": "https://opengraph.githubassets.com/20508c5b8fe53dd6b39543c4c3e496befb736fedf3fb54a54a48df523c5d014e/ndminhvn/interactive-population-visualization", "stars": 0, "topics": ["trame", "trame-app", "vtk", "..."], "trusted": false}, "https://github.com/utkarshayachit/simplified-batch": {"commitCount": 36, "createdAt": "2022-10-11T19:05:46Z", "createdWithinLastYear": false, "description": "HPC applications on Azure using Azure Batch", "image": "/trame/repos_images/53.png", "lastCommitDate": "2023-11-04T12:50:20Z", "name": "simplified-batch", "pullRequestCount": 0, "remoteImage": "https://raw.githubusercontent.com/utkarshayachit/simplified-batch/refs/heads/main/images/trame.gif", "stars": 1, "topics": ["trame", "trame-app", "paraview", "..."], "trusted": false}, "https://github.com/vicentebolea/virtual-thermostat": {"commitCount": 20, "createdAt": "2025-05-18T00:46:21Z", "createdWithinLastYear": false, "description": "AC without Thermostat? here is your free OSS solution", "image": "/trame/repos_images/54.png", "lastCommitDate": "2025-06-29T03:48:39Z", "name": "virtual-thermostat", "pullRequestCount": 0, "remoteImage": "https://repository-images.githubusercontent.com/github-production-repository-image-32fea6/985529189/2dd89436-7c75-4954-a33e-d31dead923bc?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20260805%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260805T101657Z&X-Amz-Expires=300&X-Amz-Signature=889a71584c314fc2e2aec9a62ec3909346e2ca8b21964b638232269656109be2&X-Amz-SignedHeaders=host&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoiaHR0cHM6Ly9yZXBvc2l0b3J5LWltYWdlcy5naXRodWJ1c2VyY29udGVudC5jb20vIiwia2V5Ijoia2V5MSIsImV4cCI6MTc4NTkyNTMxNywibmJmIjoxNzg1OTI1MDE3LCJwYXRoIjoicmVwb3NpdG9yeS1pbWFnZXMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIn0.Obe_3k8A6r6phZi7UdSdujxg8Ks_SS633V2_zY5R5uY", "stars": 1, "topics": ["trame", "trame-app", "..."], "trusted": false}, "https://gitlab.kitware.com/keu-public/trame-catalyst-demo": {"commitCount": 10, "createdAt": "2026-05-07T00:00:00Z", "createdWithinLastYear": true, "description": "A trame application for Catalyst live visualization.", "image": "/trame/repos_images/0.png", "lastCommitDate": "2026-05-28T00:00:00Z", "name": "trame-catalyst-demo", "nameWithOwner": "keu-public/trame-catalyst-demo", "pullRequestCount": 0, "remoteImage": "https://gitlab.kitware.com/keu-public/trame-catalyst-demo/-/raw/main/screenshot.png", "stars": 0, "topics": ["trame", "trame-app", "paraview"], "trusted": true}} \ No newline at end of file diff --git a/docs/vitepress/requirements.txt b/docs/vitepress/requirements.txt index 4818cc54..0f2eecc3 100644 --- a/docs/vitepress/requirements.txt +++ b/docs/vitepress/requirements.txt @@ -1 +1,2 @@ -pyyaml \ No newline at end of file +pyyaml +requests \ No newline at end of file