From 380aba66243259fefedc5a06d13b76707d96b8b9 Mon Sep 17 00:00:00 2001 From: Ward Van Heddeghem Date: Sun, 7 Jan 2024 21:37:12 +0100 Subject: [PATCH] Tweak example code in readme --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 71b2961..56f6d0c 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Bijvoorbeeld, het opvragen van je ontleende items kan als volgt (na installatie) username = "johndoe" password = "12345678" - account_id = "12345" # zie het getal in de URL, of via mb.get_accounts() + account_id = "12345" # zie het getal in de URL, of via mb.get_accounts() mb = MijnBibliotheek(username, password) loans = mb.get_loans(account_id) @@ -69,13 +69,15 @@ Tenslotte, via de commandline kan je de module ook als volgt aanroepen: Mijnbib-specifieke exceptions. De docstrings van de publieke methods bevatten de errors die kunnen optreden. Bijvoorbeeld: + from mijnbib import AuthenticationError, MijnbibError, MijnBibliotheek + mb = MijnBibliotheek(username, password) try: accounts = mb.get_accounts() except AuthenticationError as e: print(e) # wrong credentials except MijnbibError as e: - print(e) # any other custom mijnbib error + print(e) # any other custom mijnbib error - **Compatibiliteit met bibliotheek.be** - Deze Python API haalt zijn gegevens via webscraping van de bibliotheek.be website.