Correct typos in the documentation.

This commit is contained in:
Frédéric Tronel
2025-08-27 14:55:27 +02:00
parent 4803711f44
commit 824e17f62c

View File

@@ -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.