On Mon, Jul 15, 2013 at 10:26 PM, Jean-Michel Pichavant <[email protected]> wrote: > Basically, I need to transfer numbers (int). Possibly dictionaries like > {string: int} in order to structure things a little bit.
I strongly recommend JSON, then. It's a well-known system, it's compact, it's secure, and Python comes with a json module. ChrisA -- http://mail.python.org/mailman/listinfo/python-list
