Skip to main content

An application for collaboratively working on plans with our team. Planning can take resource availability into account. Timeline visualization for tasks and resources makes it easy to modify and sense check. Buffer management features provide early indicators that actual and planned activity requires intervention.

Project description

Our-Planner

An application for collaboratively working on plans with our team. Planning can take resource availability into account. Timeline visualisation for tasks and resources makes it easy to modify and sense check your plans. Buffer management features provide early indicators that actual and planned activity requires intervention.

Why another planning tool?

Good plans are co-created with the team that will do the work. For that digital whiteboarding tools such as Miro & Mural are very helpful to map out features and dependencies. Invariably the question is going to be asked "When will you be done?". The team will need to make some estimates of how long the individual tasks are going to take. This requires caputing data on estimates and taking into account the availability of the people required to do the work. The current crop of whiteboarding tools do not make this easy. Quickly moving araound dependant tasks, with updated durations, on a timeline takes so much effort, it kills collaboration.

There are many excellent commercial tools in the market that could do the job but as a consultant to large enterprises it's not practical to change the existing corporate planning and task management tooling stack. Consequently I needed;

  • a free application as I can't expect the corporate to buy software just for a few teams I work with
  • to keep all the corporate data secure in a locally run application, no cloud service here!
  • to link tasks to the corporate task management tool, like Jira
  • I needed source code to be open for inspection by corporate security professionals

Thus this app is written in Python, which is the data analysts' tool of choice, and should be available in most enterprise user desktop builds. Code is hosted on Github and open for inspection, with releases distributed on PyPi for easy installation.

Features

  • Easily create and manage tasks with durations, dependencies, and resource allocations
  • Visualise tasks in a timeline view
  • Visualise resource loading and avoid over-allocation
  • Tag-based filtering for tasks and resources
  • Multi-select tasks for bulk operations
  • Export tasks to PDF, PNG, CSV, and HTML formats
  • Select tasks for Critical Path analysis

Todo

  • Capture Multi-point estimates, for safe and optimistic/aggessive estimates
  • Adding dated notes to tasks
  • Remaining days estimate for tasks (Updates duration and pushes or pulls in dependent tasks)
  • Shift the timeframe on i.e. drop dates in the past and add dates in the future to planning timeline
  • CCPM features such as buffer creation and feverchart reporting
    • Load a sub-set of tasks
  • Reporting for resource, working on now and next tasks, with buffer status to help prioritise which tasks should get focus

Installation

Prerequisites

  • Python 3.11 or higher
  • Tkinter (usually comes with Python)

macOS

brew install python3 # Install Python
brew install python-tk # Install Tkinter

Ubuntu (Linux)

sudo apt-get install python3-tk

Fedora (Linux)

sudo dnf install python3-tkinter

MS-Windows

Tkinter is installed by default with every Python installation on MS-Windows.

Install from source

# Clone the repository
git clone https://github.com/rnwolf/our-planner.git
cd our-planner

# Create and activate a virtual environment
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

# Install the package and dependencies
pip install -r requirements.txt

# Install the package
pip install -e .

Install dependencies only

pip install -r requirements.txt

Install from PyPi

cd our-planner
# Create and activate a virtual environment (optional but recommended)
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

pip install our-planner

# Run app
our-planner

Install from via uvx (Recomended way)

Install uv.

This also installs the tool uvx. See more options on astral website.

# Install and run app
uvx -p "C:\Python313\python.exe" our-planner@latest

NOTE: The python builds provided via UV do not reliably include working Tkinter/Tcl support, and thus you need to install and specify a Python from https://www.python.org/downloads/ instead of letting uv/uvx download its own. See Running from source with uv run (MS-Windows) below for details and the exact error this causes.

Running from source with uv run (Linux)

uv is now the default way most people run Python apps, so if you clone the repo and just run:

uv run our-planner

on Linux, uv will download and use its own managed Python build rather than your system one. That managed build's Tkinter is not properly linked against your system's X11/XCB libraries, and the app will crash on startup with an error like:

[xcb] Unknown sequence number while appending request
[xcb] You called XInitThreads, this is not your fault
[xcb] Aborting, sorry about that.
python: ../../src/xcb_io.c:166: append_pending_request: Assertion `!xcb_xlib_unknown_seq_number' failed.

This is a known limitation of uv's managed Python builds on Linux, not a bug in our-planner. The fix is to make uv use your system Python instead, since that one links against the X11 libraries already on your machine:

# 1. Make sure Tkinter is installed for your system Python (see Prerequisites above)
sudo apt-get install python3-tk

# 2. Pin the project to your system Python interpreter, e.g. for Python 3.14:
echo "3.14" > .python-version

# 3. Remove any venv uv already built with its own managed Python, then run
rm -rf .venv
uv run --python "$(command -v python3)" our-planner

If your system Python is very new, some dependencies (e.g. pillow, pulled in via reportlab) may not have prebuilt wheels for it yet. In that case uv will try to compile them from source, which can fail with an error such as:

RequiredDependencyException: The headers or library files could not be found for jpeg

Install the corresponding -dev packages and try again:

sudo apt install libjpeg-turbo8-dev liblcms2-dev libopenjp2-7-dev libtiff-dev libwebp-dev
uv run our-planner

Basic operations

  1. Create tasks: Click and drag on the task grid to create new tasks
  2. Move tasks: Click and drag existing tasks to reposition them
  3. Resize tasks duration: Click and drag the left or right edge of a task
  4. Add dependencies: Click the connector circle on the right edge of a task and drag to another task
  5. Edit task details: Right-click on a task and select from the context menu
  6. Zoom in and out: See details and overview with Ctrl+Scroll-wheel to zoom in and out
  7. Export your data: Use the File menu to export your data in various formats

Development

Application code structure

our-planner/
├── src/                       # Main source code directory
│   ├── model/                 # Model components
│   ├── view/                  # View components
│   ├── controller/            # Controller components
│   ├── operations/            # Business logic operations
│   └── utils/                 # Utility and helper functions
├── resources/                 # Static resources
├── tests/                     # Test directory
├── docs/                      # Documentation
└── examples/                  # Example files

Running tests

pytest

or

python run_test.py

Licence

Our-planner is distributed under the terms of the GPLv3 or later Licence.

Changelog

See CHANGELOG.md on GitHub.

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

our_planner-0.1.18.tar.gz (179.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

our_planner-0.1.18-py3-none-any.whl (161.4 kB view details)

Uploaded Python 3

File details

Details for the file our_planner-0.1.18.tar.gz.

File metadata

  • Download URL: our_planner-0.1.18.tar.gz
  • Upload date:
  • Size: 179.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.6.11

File hashes

Hashes for our_planner-0.1.18.tar.gz
Algorithm Hash digest
SHA256 3254d689c09d294cdb73339f4a9df69591e901f24270494593e73cf41bb9444b
MD5 52680f0826f1f6910eee5e2f48eb0dfb
BLAKE2b-256 c10713aeb8b6a53a65d3dfeafafbf6cd20568e6cb96466a4975c479446630a27

See more details on using hashes here.

File details

Details for the file our_planner-0.1.18-py3-none-any.whl.

File metadata

File hashes

Hashes for our_planner-0.1.18-py3-none-any.whl
Algorithm Hash digest
SHA256 809358af6c8dec53e04b672d5ae960f82ca5fb9ad1e1f50d9915c256dc38b844
MD5 ccf4348de0d5354566f7c8982f68a68c
BLAKE2b-256 cbcfc5614a7e3d665a8bb0545bf0d5c2f2c923982e1f32047499e2080befa516

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page