From 227549e848f1f0ca181d6c68fb323c3c7e83a5d0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lukas=20Gro=C3=9Fberger?= Date: Thu, 28 Jun 2018 15:06:54 +0200 Subject: [PATCH] replace pin variable with getpass in README (#28) to prevent people from having python files with their bank login lying around --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c4c06c..56099cd 100644 --- a/README.md +++ b/README.md @@ -35,13 +35,14 @@ Usage ```python import logging from datetime import date +import getpass from fints.client import FinTS3PinTanClient logging.basicConfig(level=logging.DEBUG) f = FinTS3PinTanClient( '123456789', # Your bank's BLZ 'myusername', - 'mypin', + getpass.getpass('PIN:'), 'https://mybank.com/…' # endpoint, e.g.: https://hbci-pintan.gad.de/cgi-bin/hbciservlet # for German banks, see http://www.hbci-zka.de/institute/institut_auswahl.htm ) -- 2.47.2