DurumDara wrote:
> Hi !
> 
> I need to speedup my MD5/SHA1 calculator app that working on 
> filesystem's files.

You could try using threads. This would allow the CPU and the disk to 
work in parallel.

The sha/md5 modules don't seem to release the global interpreter lock, 
so you won't be able to use multiple CPUs/cores yet.

Daniel
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to