import pyotp import time import os def getTOTP(): totp_key = os.getenv("TOTP_KEY") totp = pyotp.TOTP(totp_key) return totp.now()