From 824e17f62c0f8f6775810f1c4463db77a2fb9e89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Tronel?= Date: Wed, 27 Aug 2025 14:55:27 +0200 Subject: [PATCH] Correct typos in the documentation. --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index fd783b9..1883c53 100644 --- a/README.md +++ b/README.md @@ -18,32 +18,31 @@ pip3 install -r requirements.txt deactivate ``` -The to use the command: +The to use the command and display help: ``` source venv/bin/activate ./citoyen.py -h deactivate ``` -This will display the help. +To test the authentication phase only: ``` source venv/bin/activate -./citoyen.py -l [login] -p [password] -C [city] -A +./citoyen.py -l [login] -p [password] -C [city] A deactivate ``` -This will test the authentication. +To list the kind of reservations: ``` source venv/bin/activate ./citoyen.py -l [login] -p [password] -C [city] -L deactivate ``` -This will list the kind of reservations. +Finally, to dump the ith kind of reservation (in the order obtained by _L_ command) into a ICS file: ``` source venv/bin/activate ./citoyen.py -l [login] -p [password] -C [city] -D -i [index] -o file.ics deactivate ``` -This will dump the ith kind of reservation (in the order obtained by _L_ command) into a ICS file.