Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have used hashlib (which replaces md5 in Python 2.6/3.0) and it worked fine if I opened a file and put its content in hashlib.md5 function.

The problem is with very big files that their sizes could exceed RAM size.

How to get the MD5 hash of a file without loading the whole file to memory?

share|improve this question
1  
Counter-question: How did you expect to get a checksum of the contents of a file without first reading said contents? – korona Jul 15 '09 at 13:07
2  
By using a function or another way that does it rather than me, I thought there could be something like hashlib.md5.file(path) – JustRegisterMe Jul 15 '09 at 13:14
8  
I would rephrase: "How to get the MD5 has of a file without loading the whole file to memory?" – XTL Feb 24 '12 at 12:29

5 Answers

up vote 84 down vote accepted

Break the file into 128-byte chunks and feed them to MD5 consecutively using update().

This takes advantage of the fact that MD5 has 128-byte digest blocks. Basically, when MD5 digest()s the file, this is exactly what it is doing.

If you make sure you free the memory on each iteration (i.e. not read the entire file to memory), this shall take no more than 128 bytes of memory.

One example is to read the chunks like so:

f = open(fileName)
while not endOfFile:
    f.read(128)
share|improve this answer
3  
Python is garbage-collected, so there's (usually) not really a need to worry about memory. Unless you explicitly keep around references to all the strings you read from the file, python will free and/or reuse as it sees fit. – Kjetil Joergensen Jul 15 '09 at 13:18
9  
@kjeitikor: If you read the entire file into e.g. a Python string, then Python won't have much of a choice. That's why "worrying" about memory makes total sense in this case, where the choice to read it in chunks must be made by the programmer. – unwind Jul 15 '09 at 14:43
33  
You can just as effectively use a block size of any multiple of 128 (say 8192, 32768, etc.) and that will be much faster than reading 128 bytes at a time. – jmanning2k Jul 15 '09 at 15:09
19  
Thanks jmanning2k for this important note, a test on 184MB file takes (0m9.230s, 0m2.547s, 0m2.429s) using (128, 8192, 32768), I will use 8192 as the higher value gives non-noticeable affect. – JustRegisterMe Jul 17 '09 at 19:33
4  
Nothing. It's one of the builtin functions. docs.python.org/library/functions.html#open – Yuval Adam Jun 16 '12 at 9:17
show 2 more comments

You need to read the file in chunks of suitable size:

def md5_for_file(f, block_size=2**20):
    md5 = hashlib.md5()
    while True:
        data = f.read(block_size)
        if not data:
            break
        md5.update(data)
    return md5.digest()
share|improve this answer
Thanks for this example. – JustRegisterMe Jul 15 '09 at 13:09
Awesome example. – Honza Pokorny Dec 28 '10 at 18:33
10  
What's important to notice is that the file which is passed to this function must be opened in binary mode, i.e. by passing rb to the open function. – Frerich Raabe Jul 21 '11 at 13:02
2  
This is a simple addition, but using hexdigest instead of digest will produce a hexadecimal hash that "looks" like most examples of hashes. – tchaymore Oct 16 '11 at 2:26
Shouldn't it be if len(data) < block_size: break? – Erik Allik Nov 2 '12 at 10:35
show 2 more comments

if you care about more pythonic (no 'while True') way of reading the file check this code:

import hashlib
md5 = hashlib.md5()
with open('myfile.txt','rb') as f: 
    for chunk in iter(lambda: f.read(8192), b''): 
         md5.update(chunk)
return md5.digest()

Note that the iter() func needs an empty byte string for the returned iterator to halt at EOF, since read() returns b'' (not just '').

share|improve this answer
10  
Better still, use something like 128*md5.block_size instead of 8192. – mrkj Jan 6 '11 at 22:51
Why does iter(func, '') work yet iter(func) does not? – bradley.ayers Apr 28 '11 at 2:59
3  
Never mind, help(iter) tells all! – bradley.ayers Apr 28 '11 at 3:22
mrkj: I think it's more important to pick your read block size based on your disk and then to ensure that it's a multiple of md5.block_size. – Harvey Apr 12 at 14:10

Here's my version of @Piotr Czapla's method:

def md5sum(filename):
    md5 = hashlib.md5()
    with open(filename,'rb') as f: 
        for chunk in iter(lambda: f.read(128*md5.block_size), b''): 
             md5.update(chunk)
    return md5.hexdigest()
share|improve this answer

u can't get it's md5 without read full content. but u can use update function to read the files content block by block.
m.update(a); m.update(b) is equivalent to m.update(a+b)

share|improve this answer
Thank you for help. – JustRegisterMe Jul 15 '09 at 13:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.