Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 android 中使用 HWID 保护我的 python 脚本
我希望只有拥有 HWID 的人才能访问我的脚本
例子 :
HWID = { "63e2xxx57d94", "87g5xxxh6388", "6634xxx65h9f" } #How To Check This ? XHWID = 'some id' if HWID == XHWID: print("Success") else: print("Failed") exit()