summaryrefslogtreecommitdiff
path: root/ed2k/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'ed2k/__init__.py')
-rw-r--r--ed2k/__init__.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/ed2k/__init__.py b/ed2k/__init__.py
new file mode 100644
index 0000000..754b5c9
--- /dev/null
+++ b/ed2k/__init__.py
@@ -0,0 +1,11 @@
+from _ed2k import *
+
+def file_hash(name):
+ e = Ed2k()
+ f = open(name)
+ data = f.read(32768)
+ while data:
+ e.update(data)
+ data = f.read(32768)
+ f.close()
+ return e.digest()