The answer is you can't do this in python. An AI told me this as to why you can't use an in memory location to recreate an object:
Why Direct Memory Control Isn't Possible in Python
Abstracted Memory Management: Python handles memory allocation and deallocation automatically, preventing direct user manipulation of memory addresses.
References, Not Pointers: Variables in Python are references to objects, not raw memory pointers.
Safety and Simplicity: This design choice avoids the complexities and potential errors (like memory leaks or dangling pointers) common in languages that provide direct pointer control.