Generate Mermaid Gantt charts from Trello boards as standalone HTML files.
Project description
Gantt Chart Generation from Trello (POC)
Overview
This project is a proof of concept that:
- fetches tasks from Trello,
- maps card data to a Gantt model,
- generates Mermaid Gantt syntax,
- renders a standalone HTML file with the chart and validation report.
The goal is to validate Trello as the source of truth for project timelines without using a heavy PM tool.
Prerequisites
- Python 3.10+ (tested with
python3) - Trello API credentials:
TRELLO_API_KEYTRELLO_API_TOKEN
Setup
- Create and activate a virtual environment:
python3 -m venv .venv
source .venv/bin/activate
- Install dependencies:
pip install requests python-dotenv
- Copy the example environment file and fill in your values:
cp .env.example .env
Edit .env with your Trello credentials and board configuration:
# Trello API credentials
TRELLO_API_KEY=your_api_key_here
TRELLO_API_TOKEN=your_api_token_here
# Accepts a full URL (https://trello.com/b/abc123/board-name) or just the ID
GANTT_BOARD_ID=https://trello.com/b/your_board_id/board-name
# Comma-separated list names to include. Leave empty to use all open lists.
GANTT_LISTS=To Do,In Progress,Done
GANTT_OUTPUT=output/gantt.html
GANTT_TITLE=Project Gantt Chart
# Comma-separated list names to render as milestones. Leave empty for none.
GANTT_MILESTONE_LISTS=Milestone 1,Milestone 2,Milestone 3
Usage
With .env configured, just run:
python3 -m src.main
All settings are read from .env. No arguments needed.
CLI arguments can override .env values when needed:
--board-id: Trello board URL or ID. Env:GANTT_BOARD_ID--lists: comma-separated list names. Env:GANTT_LISTS--output(defaultgantt.html): output HTML file. Env:GANTT_OUTPUT--title(defaultProject Gantt Chart): diagram title. Env:GANTT_TITLE--milestone-list: comma-separated list names for milestones. Env:GANTT_MILESTONE_LISTS
Example with CLI overrides:
python3 -m src.main \
--board-id "https://trello.com/b/7nlpWm2R/testing-gantt-chart" \
--lists "TO DO,DOING,DONE 🎉" \
--output output/gantt-selected.html \
--title "Roadmap Sprint"
Interactive Features
The generated HTML includes interactive features that work directly in the browser:
- Filter by assignee: A dropdown at the top of the Gantt chart lets you filter tasks by team member. The chart re-renders in place while keeping the same time scale for easy comparison.
- Horizontal scroll: When the date range is large, the chart renders at full width with day-level tick marks inside a scrollable container.
Sharing the Gantt with Clients
The output is a standalone HTML file. To share it with non-technical users, you can publish it as a Google Apps Script Web App:
- Create a project at https://script.google.com
- Add a
doGet()function that serves the HTML - Deploy as a web app with public access
- Share the URL with clients — they open it in any browser, no setup needed
To update: regenerate the HTML with python3 -m src.main, paste the content into the Apps Script editor, and redeploy. The URL stays the same.
Optional access control (allowlist by Google account) is also supported.
For detailed step-by-step instructions, see docs/sharing-via-google-apps-script.md.
Field Mapping
| Trello Field | Gantt Field | Notes |
|---|---|---|
id / shortLink |
task_id |
Sanitized Mermaid-safe identifier |
name |
name |
Sanitized and truncated for Mermaid parser safety |
idList + board list map |
section |
Grouped by milestone label when present, else list name |
due |
end_date |
If missing: processing_date + 1 day, used_due_fallback=True |
start / due-1d |
start_date |
Explicit start wins, else end_date - 1 day |
List column + dueComplete |
status |
Column → Mermaid modifier(s) for bar color; done if dueComplete |
Column → bar style (HTML/CSS): Backlog (gray), To Do (crit, white), Doing (active, blue), Done (done, green), Blocked (active,crit, orange). Add a Blocked list in Trello and include it in --lists when generating.
Start Date Heuristic
Current mapper uses this priority:
card.startif present (from Trello custom field / API)- otherwise
end_date - 1 day(so the bar spans at least one day whendueis set)
If due is missing, end_date is set to processing_date + 1 day and the same rule yields start_date == processing_date.
Validation Rules
Errors:
- no valid tasks after mapping
end_date < start_date- duplicate
task_id
Warnings:
- list names requested by user not found
- cards without
due(still included; informational) - cards without assignee
- task names truncated
- more than 50% of cards missing
due
Architecture
See docs/architecture.md for the full solution design, including module responsibilities, data flow, data structures, and technical decisions.
Tests
From the project root:
PYTHONPATH=. python3 -m unittest discover -s tests -v
Modules covered: field_mapper, mermaid_generator, validator (see tests/test_*.py).
Limitations (POC)
- No automatic dependency inference from Trello.
- High warning volume on boards where many cards lack due date.
- Limited CLI output format (console only, no JSON mode yet).
Feasibility Notes
The POC is technically viable:
- Trello data can be pulled reliably via API.
- Mermaid output renders correctly in standalone HTML.
- End-to-end execution with real board data is validated (see
.claude/tasks/poc-for-gantt-chart-generation-from-trel/e2e-test-report.md).
To move from POC to an internal tool:
- Expand automated tests (validator,
trello_data, integration smoke with mocked API). - Add robust report artifacts (JSON summary + warning categories).
- Improve list matching UX (fuzzy matching / suggestion for emoji list names).
- Add optional overdue highlighting (
crit) and richer status mapping. - Provide packaging and onboarding script for new developers.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file trello_gantt-0.1.0.tar.gz.
File metadata
- Download URL: trello_gantt-0.1.0.tar.gz
- Upload date:
- Size: 25.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
990e9d517b2bb31639569bb22a9e964eb86996be2ebc9947b748bf24d36357bf
|
|
| MD5 |
fc257ebb4bd15bfb3b326528bed9a919
|
|
| BLAKE2b-256 |
3f4d6f39fda4c1bc2fe6590ead63fbbb5a0db397ba76beeac11ae75b94691f4d
|
File details
Details for the file trello_gantt-0.1.0-py3-none-any.whl.
File metadata
- Download URL: trello_gantt-0.1.0-py3-none-any.whl
- Upload date:
- Size: 25.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
297367f0df3d90affebf4179c854f32946b5a963593db667b623ced46061001d
|
|
| MD5 |
dd7294f52132ecb274cbbc180aa9470f
|
|
| BLAKE2b-256 |
506c4e14ba7102b57604ab188bdf00e6630bbd6c0e92268d1f4e67cc1815c532
|