The connectome for the 302 neurons of the nematode C. elegans was put in charge of a Lego robot. Without any additional programming, the simulated brain started using the robot parts just like the original worm's organs.
"When you think about it, the brain is really nothing more than a collection of electrical signals."
For those of you not familiar with the technology, Python is a programming language not know for speed and the Raspberry Pi is a cheap, low-powered computer smaller than your palm.
For those of you familiar with the technology, this is just another reason why Python is amazing.
Basic Python is very slow, but numerical computing libraries such as Numpy are almost as fast as C, and Cython can compile Python into C if you add in type declarations. (more reasons why Python is awsome!)
I would imagine that you might use numerical computing libraries for neural simulations, so their program might have been running at close to C speeds.