update README

This commit is contained in:
gregory 2025-09-02 09:01:38 -04:00
parent 0b9e81380c
commit 7fba24c163

View File

@ -69,3 +69,22 @@ python save_progress_reports.py -o /my/shitty/directory Greg
# More usage details
python save_progress_reports.py --help
```
### make_reservations.py
Looks for reservations a specified number of days in the future and adds a comment reserving a C172 including a timestamp
#### Usage
```bash
# No arguments required. Default reservation lookahead is today's date + 2 days
python make_resvervations.py
# Can also specify the number of days to look ahead with -d argument
python make_resvervations.py -d 5
# Perform a "dry run" (i.e. runs the script but does not save any comments). Use in conjuction with -s to show the browser window and verify script is behaving as intended
python make_resvervations.py -D -s
# More usage details
python make_reservations.py --help
```