You can also try this code to get totp,
import pyotp
totp = pyotp.TOTP("YOUR26DIGITCODE")
print(totp.now())
Find this doc to get more details about how to use pyotp module,
https://pyauth.github.io/pyotp/
You can also try this code to get totp,
import pyotp
totp = pyotp.TOTP("YOUR26DIGITCODE")
print(totp.now())
Find this doc to get more details about how to use pyotp module,
https://pyauth.github.io/pyotp/