![]() |
|
#2
|
|||
|
|||
Hi,
To send objects across the network you will need to use the Python pickle module. This module will serialize any object into a string, and can recreate it. Here is some code that will take an object and serialize it to a string: Code:
import pickle s = pickle.dumps(obj) Code:
import pickle obj = pickle.loads(s) |
|
|