A Streamlit app for planning project time distribution and exporting university work records.
Project description
AER Time Planner
AER Time Planner is a local Streamlit app for planning how working days are distributed across projects, teaching, absences, and fixed project events.
It helps you keep a year-wide plan for one or more people, preview each month, and export the planned allocation into the required Excel workbooks.
Install
Install from PyPI:
pip install aer-time-planner
Update an existing installation:
pip install --upgrade aer-time-planner
Run
Start the app with:
aer-time-planner
Your browser should open automatically. The app runs locally on your computer.
Optional Desktop Launcher
After installing, you can create a clickable launcher:
aer-time-planner --install-desktop-shortcut
The launcher uses the same Python environment that created it. This means it can work from a virtual environment, conda environment, or base Python installation without manually activating that environment each time.
On Windows this creates a .cmd launcher. On macOS it creates a .command launcher. On Linux it creates a .desktop launcher. The launcher opens a terminal window and starts Streamlit; closing that terminal stops the app.
Planning Workflow
- Select a saved person from the sidebar, or add a new person.
- Set the year, weekly hours, and university template fields.
- Add public holidays for the year, or load shaded holidays from a compatible university template.
- Add teaching entries for fixed teaching dates and hours.
- Add events for sick leave, vacation, and fixed project days.
- Add the person's projects, allocation percentages or monthly hours, and project start/end dates.
- Preview the selected month.
- Export the yearly overview or the university template workbook.
Exports are generated for all 12 months of the selected year.
What Is Saved Locally
The app stores planning data in a local SQLite database on your computer:
~/.aer_time_planner/time_planner.sqlite
Saved data includes people, project date ranges, holidays, teaching, and events. No server account is needed.
To use a different database file, set this environment variable before starting the app:
export AER_TIME_PLANNER_DB=/path/to/time_planner.sqlite
Events
Events combine sick leave, vacation, and fixed project days in one table.
For fixed project days, set type to project and enter the project name. These days are reserved for that project before the remaining time is distributed across other projects.
Example:
date_start,date_end,type,project,label
2026-05-04,2026-05-05,vacation,,Annual leave
2026-05-18,2026-05-18,sick,,Sick leave
2026-06-10,2026-06-12,project,RESIST Z02,CRC RESIST assembly
Allowed event types are sick, vacation, and project.
Project Allocation
Each person has their own project table. This is useful when several people work on the same project for different periods.
The project table supports two allocation modes:
project,start_date,end_date,monthly_hours,allocation_percent,is_eu_project
LTER-D,2026-01-01,2026-12-31,48,0,false
RESIST Z02,2026-01-01,2026-06-30,0,60,true
GCF support,2026-07-01,2026-12-31,0,40,false
- Use
monthly_hourswhen a project has a fixed monthly quota. - Use
allocation_percentto split the remaining available monthly working hours. - Use
start_dateandend_dateto control which months the project is active. - Use
is_eu_projectfor projects that should be written into the EU project section of the university template.
The app schedules projects as readable day blocks instead of splitting every day into small percentages. Calculated targets and daily capacities are rounded to quarter-hour increments.
Excel Outputs
The yearly overview export includes:
Year Overview: all 12 months arranged as a compact day-by-day year overview.Overview: person, month, hour, and metric metadata.Project Summary: target, scheduled, and unscheduled hours per project.Daily Details: row-wise machine-readable details.Calendar_Data: machine-readable calendar cells.
The app can also export all 12 months into the university Stundenzettel template. By default it uses the bundled vorlage_stundenzettel_2026_v0.xlsx file. You can upload another compatible .xlsx template in the sidebar before exporting.
Templates
The app offers template download buttons inside the Streamlit interface. The same templates can also be created from the command line.
Holiday template:
aer-time-planner --make-holiday-template
Teaching template:
aer-time-planner --make-teaching-template
Event template:
aer-time-planner --make-events-template
Each command writes a CSV template in the current folder. You can also provide a custom output path.
Install From Source
After cloning or downloading this repository:
pip install -e .
Run directly with Streamlit during development:
streamlit run src/aer_time_planner/app.py
Build a distribution package:
python -m build
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
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 aer_time_planner-0.6.1.tar.gz.
File metadata
- Download URL: aer_time_planner-0.6.1.tar.gz
- Upload date:
- Size: 220.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
537eb7f37fa6867e5ad4b9db7724d4742c62afc12ff621ec76f458387c1f6267
|
|
| MD5 |
c0f91d4bfd24b60aee52e9771c737780
|
|
| BLAKE2b-256 |
19df3b5d182c81bc4b377a1456dff38134befc18d819907a614f7c53dc7a4175
|
File details
Details for the file aer_time_planner-0.6.1-py3-none-any.whl.
File metadata
- Download URL: aer_time_planner-0.6.1-py3-none-any.whl
- Upload date:
- Size: 223.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9c631f925af635f353dbcc428b45bf12935394711c0900d63e399626c08086e
|
|
| MD5 |
2e2888285905f0f576627dbfa3da3067
|
|
| BLAKE2b-256 |
c230a723b84efc17e328f05402f33d5a0361476e4179f705820854520316e3cd
|