You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 28, 2025. It is now read-only.
It seems that ibanlib does not support Python3 at the moment. There are a few issues I managed to identify:
importing ConfigParser module, which has been renamed to configparser in Python3. This only needs to be changed in a couple of places.
string.maketrans does not exist in Python3 - and str.translate only takes 1 argument, so (allchars, ' ') needs to be replaced by (str.maketrans('','',' '))
there is no longer long type in Python3 - needs to be replaced by int