Roadmapper. A Roadmap-as-Code (RaC) python library for generating a roadmap by using python code
Project description
Roadmaper - a Roadmap as Code (RaC) Tool
Purpose
The purpose of roadmapper python library is used to draw roadmap by using python code. This is the first Roadmap as Code (RaC) library. RaC helps to create and edit roadmap in a more efficient way without having to use any graphical tools that are not always easy to use to create or update a roadmap.
With git repository like GitHub or Bitbucket, roadmaps created using RaC can be version controlled, track changes and can be easily shared with others.
Latest version
What's new in the latest version of Roadmapper?
- Provided options to show first day of week instead of W1, W2, etc. in WEEKLY timeline mode.
- Provided options to configure font and fill colour for year in the timeline section.
- Changed add_timeline() method parameters. font, font_size and font_colour are now deprecated.
- To configure timeline year area, use year_font, year_font_size and year_fill_colour
- To configure timlien item area, use item_font, item_font_size and item_fill_colour
- Provided options to change task appearance in the roadmap. Task can now be displayed rectangular or rounded rectangle or rectangle with arrow head.
- Ability to add logo to the roadmap.
- Fix issue with WEEKLY timeline mode
Python version requirements:
- Python 3.10+
Library Dependencies
- Pillow 9.3.0
- python-dateutil
Future plans :bulb:
- Create roadmap with plain english text like PlantUML
- GUI and Web frontend for this roadmapper library
- Visual Studio Code extension to create and edit roadmap
Any feedback or suggestions are welcome. Please feel free to create an issue or pull request.
If you've been enjoying my contributions, consider buying me a coffee. It'll be like a virtual pat on the back for all the hard work. Thanks in advance! :coffee: :heart:
Installation
Install from PyPI
pip install roadmapper
Upgrade to the latest version
If you are running older version of roadmap-generator, you can upgrade to the latest version by running the following command:
pip install --upgrade roadmapper
Documentation
Please refer to Roadmapper Wiki for more information on how to use this RaC library.
Code Example
from roadmapper.roadmap import Roadmap
from roadmapper.timelinemode import TimelineMode
roadmap = Roadmap(1200, 400, colour_theme="BLUEMOUNTAIN")
roadmap.set_title("My Demo Roadmap")
roadmap.set_timeline(TimelineMode.MONTHLY, "2023-01-01", 12)
group = roadmap.add_group("Core Product Work Stream")
task = group.add_task("Base Functionality", "2023-01-01", "2023-10-31")
task.add_milestone("v.1.0", "2023-02-15")
task.add_milestone("v.1.1", "2023-08-01")
parellel_task = task.add_parallel_task("Enhancements", "2023-11-15", "2024-03-31")
parellel_task.add_milestone("v.2.0", "2024-03-30")
task = group.add_task("Showcase #1", "2023-03-01", "2023-05-07")
task.add_parallel_task("Showcase #2", "2023-06-01", "2023-08-07")
roadmap.set_footer("Generated by Roadmapper")
roadmap.draw()
roadmap.save("demo01.png")
Output
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for roadmapper-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bb12f0499aba222fc998bb3a5f6e3d010f2846ebf2e39bfec19279870338636 |
|
MD5 | 97024c170e24106787efd72f103cdc16 |
|
BLAKE2b-256 | 6e93fa28d71c8a98d08687e9e91123820237e92c6cb140f953fd4f2266cc1396 |