Go to file
2025-03-13 11:19:27 -04:00
.gitignore initial commit 2025-03-12 16:22:45 -04:00
config.ini Rework stuff, make user friend, documentation 2025-03-13 11:19:27 -04:00
README.md Rework stuff, make user friend, documentation 2025-03-13 11:19:27 -04:00
requirements.txt Rework stuff, make user friend, documentation 2025-03-13 11:19:27 -04:00
save_progress_reports.py Rework stuff, make user friend, documentation 2025-03-13 11:19:27 -04:00

Flight Schedule Pro Scripts

Requirement

Python 3 Pip Firefox

Install

Clone this repository

#navigate to the folder
cd fsp_scripts
#create a virtual environment and install dependencies
python -m vene .venv
source .venv/bin/activate
pip install -r requirements.txt

Update config.ini with you Flight Schedule Pro username and password

Config

TODO

Scripts

save_progress_reports.py

Downloads individual session PDFs for students and merges them into a single PDF per student

Usage

#At a minimum the script requires one argument, the name of a student to retrieve sessions for
python save_progress_reports.py "Greg Johnson"

#Also accepts multiple students
python save_progress_reports.py "Greg Johnson" "Casey Serbagi"

#Partial names work as well (retrieves the first matching student name found)
python save_progress_reports.py Greg

#More usage details
python save_progress_reports.py --help