Mercurial > ec-dotfiles
view bin/ed2k.py @ 395:c01d272af466
Moved less configuration declaration to environment variable.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Tue, 04 Sep 2012 10:22:46 +0700 |
parents | 5bafb912837e |
children |
line wrap: on
line source
#!/usr/bin/env python import os, sys from Crypto.Hash import MD4 def ed2k(filename): block = 9500*1024 hash = "" file = open(filename, "rb") fileblock = file.read(block) while fileblock: hash += MD4.new(fileblock).digest() fileblock = file.read(block) file.close() return MD4.new(hash).hexdigest() if __name__ == "__main__": for file in sys.argv[1:]: print "%s %s" %(ed2k(file), file)