mumebuhi wrote:
> Hi,
>> Is it possible to send a non-string object from a Python program to
> another? I particularly need to send a dictionary over to the other
> program. However, this is not possible using the socket object's send()
> function.
>> Help?
>>> Buhi
>You will need to pickle it first and unpickle it on the other
end. Other than that, you should be able to send it just fine.
-Larry