(file_path, name)
| 16 | } |
| 17 | |
| 18 | def display_id(file_path, name): |
| 19 | if os.path.exists(file_path): |
| 20 | with open(file_path, "r") as file: |
| 21 | identity_data = json.load(file) |
| 22 | return f"[{name} ID]\nID: {identity_data.get('id', 'Not set')}\n\n" |
| 23 | else: |
| 24 | return f"[{name} ID]\nID: Not set\n\n" |
| 25 | |
| 26 | print (" ======= Warp to Warp plus ======") |
| 27 | print("") |