pull/232/head
Terrtia 2018-07-31 10:51:18 +02:00
parent 153f9f38cc
commit 61e98ed8fb
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 0 additions and 4 deletions

View File

@ -32,7 +32,6 @@ def timeout_handler(signum, frame):
signal.signal(signal.SIGALRM, timeout_handler)
#LETTERS_IBAN = {ord(d): str(i) for i, d in enumerate(string.digits + string.ascii_uppercase)}
_LETTERS_IBAN = chain(enumerate(string.digits + string.ascii_uppercase),
enumerate(string.ascii_lowercase, 10))
LETTERS_IBAN = {ord(d): str(i) for i, d in _LETTERS_IBAN}
@ -43,13 +42,10 @@ def iban_number(iban):
def is_valid_iban(iban):
iban_numb = iban_number(iban)
iban_numb_check = iban_number(iban[:2] + '00' + iban[4:])
print(iban_numb)
print(iban_numb_check)
check_digit = '{:0>2}'.format(98 - (int(iban_numb_check) % 97))
if check_digit == iban[2:4] and int(iban_numb) % 97 == 1:
# valid iban
print('valid iban')
print(iban)
return True
return False