Protect Python Script With HWID In Android

273 Views Asked by At

I want to protect my python script with HWID in android

I want so that only people who have HWID can access my script

example :

HWID = {
"63e2xxx57d94",
"87g5xxxh6388",
"6634xxx65h9f"
}
#How To Check This ?
XHWID = 'some id'  
if HWID == XHWID:
     print("Success")
else:
     print("Failed")
exit()
0

There are 0 best solutions below