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. 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

  • Multi-point estimates, for safe and optimistic 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
  • 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 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.12.tar.gz (90.6 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.12-py3-none-any.whl (89.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: our_planner-0.1.12.tar.gz
  • Upload date:
  • Size: 90.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for our_planner-0.1.12.tar.gz
Algorithm Hash digest
SHA256 13ac300cdf23daba09c57d51e17d034f0e8f70a0495d193c35240524915e5238
MD5 39381039b260039ed8789d9e4ca59c83
BLAKE2b-256 5c8a608ce97de4926323558a9bb0d1c3dc651d8fcc7db6fb341119859634bf1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for our_planner-0.1.12.tar.gz:

Publisher: main.yml on rnwolf/our-planner

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: our_planner-0.1.12-py3-none-any.whl
  • Upload date:
  • Size: 89.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for our_planner-0.1.12-py3-none-any.whl
Algorithm Hash digest
SHA256 6fe3903f15ea2857dd0ed0f0d99bbacee521630ccce771151efb19bcf3c99586
MD5 c74a7179de035982f646739d0b4d6e6d
BLAKE2b-256 5573f456c01fd2a11531aff08ea0c3e27aa74f054213b20a2209a4bb3ec035da

See more details on using hashes here.

Provenance

The following attestation bundles were made for our_planner-0.1.12-py3-none-any.whl:

Publisher: main.yml on rnwolf/our-planner

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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