summaryrefslogtreecommitdiff
path: root/hash/__init__.py
diff options
context:
space:
mode:
authorzyp <zyp@localhost>2006-01-26 20:07:15 +0100
committerzyp <zyp@localhost>2006-01-26 20:07:15 +0100
commit21559e9f4bd58b1504cc0fda7b0dceee0c833862 (patch)
tree119240a883b5bda7e4c11f60dc39206e87b1e04f /hash/__init__.py
[project @ zyp-20060126190715-557e941315671b81]
[project @ 18] Moved disccat and pyanidb to the right location. Added pyqtmpc and ophidia.
Diffstat (limited to 'hash/__init__.py')
-rw-r--r--hash/__init__.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/hash/__init__.py b/hash/__init__.py
new file mode 100644
index 0000000..0fc1715
--- /dev/null
+++ b/hash/__init__.py
@@ -0,0 +1,11 @@
+from _hash import *
+
+def file_hash(name):
+ h = Hash()
+ f = open(name)
+ data = f.read(32768)
+ while data:
+ h.update(data)
+ data = f.read(32768)
+ f.close()
+ return h