Skip to main content

Minimal CLI weekly scheduler with probability-based task selection

Project description

Wildweek

A minimal CLI weekly scheduler with probability-based task selection.

Version

v0.2

Usage

python3 wildweek.py [tasks.csv] [--daily-limit MINUTES] [--max-week-minutes MINUTES] [--seed N] [--ics FILE]

All arguments have defaults from wildweek.cfg. CLI arguments override config values.

Arguments

Argument Default Description
csv (from config) Path to tasks CSV file
--daily-limit 120 Max minutes scheduled per day
--max-week-minutes 600 Max total minutes scheduled per week
--seed 42 Random seed for reproducible task selection
--ics (from config) Output ICS filename (omit to skip ICS export)

Examples

python3 wildweek.py                              # uses wildweek.cfg defaults
python3 wildweek.py tasks.csv --seed 7           # different weekly draw
python3 wildweek.py --ics schedule.ics           # export to ICS
python3 wildweek.py --daily-limit 180 --max-week-minutes 900

Text Output

Monday: Walk-a-bout (120min)
Tuesday: Hike (90min), Call friend (25min), Didgeridoo (5min)
Wednesday: Call friend (25min), Didgeridoo (5min)
...
Sunday: Hike (90min)
ICS written to wildweek.ics

Config File

wildweek.cfg (INI format) provides defaults for all CLI arguments:

[wildweek]
csv = tasks.csv
daily_limit = 120
max_week_minutes = 600
seed = 42
ics = wildweek.ics

Omit ics to disable ICS output by default.

Input CSV Format

Column Type Description
name string Task name
duration integer Duration in minutes
probability float 0–1 Probability task is chosen each day

Example tasks.csv

name,duration,probability
Hike,90,0.40
Walk-a-bout,120,0.05
Call friend,25,0.35
Tai Chi,10,0.55
Piano,20,0.55
Didgeridoo,5,0.55
Read,25,0.60

Scheduling Algorithm

  1. Seed the random number generator with --seed.
  2. Iterate over days Monday through Sunday.
  3. For each day, iterate over tasks in CSV order.
  4. For each task, roll against its probability — skip if the roll fails.
  5. Assign the task to the day if it fits within daily_limit and max_week_minutes.
  6. Days with no tasks assigned are shown as (rest).

The same seed always produces the same schedule. Change the seed for a different weekly draw.

ICS Export

When --ics is provided (or set in config), an ICS file is written suitable for import into Google Calendar or any calendar application. Events are all-day entries starting the next Monday from today's date.

Specifications Honored

  • Probability-based per-day task selection using probability column
  • Reproducible output via random seed
  • 7 fixed days: Monday through Sunday
  • Respects --daily-limit (minutes per day)
  • Respects --max-week-minutes (total minutes per week)
  • Config file with CLI override for all parameters
  • ICS calendar export (no external dependencies)
  • Simple CSV input — no external dependencies (stdlib only)
  • Under 150 lines of source code
  • Duration unit is minutes throughout

Requirements

  • Python 3.6+
  • No external dependencies (stdlib only)

Prompt Used to Generate This Document

capture progress

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

wildweek-0.3.0a3.tar.gz (19.4 kB view details)

Uploaded Source

Built Distribution

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

wildweek-0.3.0a3-py3-none-any.whl (17.1 kB view details)

Uploaded Python 3

File details

Details for the file wildweek-0.3.0a3.tar.gz.

File metadata

  • Download URL: wildweek-0.3.0a3.tar.gz
  • Upload date:
  • Size: 19.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for wildweek-0.3.0a3.tar.gz
Algorithm Hash digest
SHA256 fcfae16241ae59e74512c651705c43eec2a6aa5dcafda236ac5eaf3ef5809c85
MD5 ccd0fbd62f4fd7512288a1f3bcb7f9e7
BLAKE2b-256 6e185bff30824eceed686717e5536c999dd3ebc05e566f6b18f70749c9a2f4f0

See more details on using hashes here.

File details

Details for the file wildweek-0.3.0a3-py3-none-any.whl.

File metadata

  • Download URL: wildweek-0.3.0a3-py3-none-any.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for wildweek-0.3.0a3-py3-none-any.whl
Algorithm Hash digest
SHA256 63a0c0ee2b2bfe941881e1c100f37ef6f0523b5b941881ef5ca242c4bb33c55c
MD5 96665a6b685c6800ae92ca8375aa77ca
BLAKE2b-256 062b8576e4bcdf45a934fa77ac2ddd04cee25cff5b8fd9f93123eebe95fb7fbf

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