from turboactivate import TurboActivate
TA_GUID = “3f2sh6eu2ptodanbkhgszqiur33u3py”
ta = TurboActivate(TA_GUID)
try:
print("Checking activation status...")
if ta.is_activated():
print("Already Activated")
else:
key = input("Enter License Key: ")
print("Activating...")
ta.activate(key)
print("Activation Successful")
except Exception as e:
print("\n Activation Failed")
print("Exception Type:")
print(type(e))
print("\nException Message:")
print(str(e)) This is the code that I have typed whenever I give License key as per user input it always throws Exception