Updated changelog and doc with new password storage method

This commit is contained in:
Boyan 2024-11-17 21:57:07 +01:00
parent 17f0bd237a
commit a0aeca87b1
2 changed files with 4 additions and 2 deletions

View File

@ -8,9 +8,11 @@ Creates the initial connection to Themis.
```python
from temmies.themis import Themis
themis = Themis("s-number", "password")
themis = Themis("s-number")
```
On the first run, you will be prompted for your password. Then, on the next run(s), you will be able to log in automatically, as the password is stored in the system keyring. If you want to delete it [click here](https://www.google.com/search?hl=en&q=delete%20a%20password%20from%20keyring).
### Methods
#### `login()`
Logs in to Themis. Runs automatically when the class is initialized.

View File

@ -11,4 +11,4 @@
#### **Codebase**
- Prepended `get_` to all methods in `Submission`
- Created base `Group` from which `Course` and `ExerciseGroup` inherit.
-
- Using system keyring to store passwords (Issue #11)