Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
bestätigung zur verwendung des tools und prüfung des impfanspruchs
Browse files Browse the repository at this point in the history
  • Loading branch information
timreibe committed May 26, 2021
1 parent ce165a2 commit 9dfd7e4
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,4 +437,17 @@ def main():
|_| |___/
""")
print("Automatische Terminbuchung für den Corona Impfterminservice\n")
main()

print("Termine können AUSSCHLIESSLICH für Personen gebucht werden, die zur Impfung berechtigt sind.\n"
"Ob Anspruch auf eine Impfung besteht kann hier geprüft werden:\n"
"https://www.impfterminservice.de/terminservice/faq\n")

ist_impfberechtigt = input("> Hiermit bestätige ich AUSDRÜCKLICH, dass dieses TOOL nur für die "
"Terminsuche EINER PERSON verwendet wird.\n"
" Der ANSPRUCH AUF EINE CORONA SCHUTZIMPFUNG wurde geprüft. JA (y) oder NEIN (n): ")

if ist_impfberechtigt.lower() == "y":
print()
main()
else:
print("vaccipy wird nun beendet.")

0 comments on commit 9dfd7e4

Please sign in to comment.