vote up 0 vote down star

I'd like to use os.system("md5sum myFile") and have the result returned from os.system instead of just runned in a subshell where it's echoed.

In short I'd like to do this:

resultMD5 = os.system("md5sum myFile")

And only have the md5sum in resultMD5 and not echoed.

flag

3 Answers

vote up 9 vote down check

subprocess is better than using os.system or os.popen

import subprocess
resultMD5 = subprocess.Popen(["md5sum","myFile"],stdout=subprocess.PIPE).communicate()[0]

Or just calculate the md5sum yourself with the hashlib module.

import hashlib
resultMD5 = hashlib.md5(open("myFile").read()).hexdigest()
link|flag
+1 to hashlib, the best way to do it, not depending of an external executable. – nosklo Apr 24 at 11:53
vote up 0 vote down

You should probably use the subprocess module as a replacement for os.system.

link|flag
Could you evaluate please? – Filip Ekberg Apr 24 at 9:13
@Filip Ekberg: what Douglas Leeder said :-) – hyperboreean Apr 24 at 10:54
vote up 0 vote down
import subprocess

p = subprocess.Popen("md5sum gmail.csv", shell=True, stdout=subprocess.PIPE)
resultMD5, filename = p.communicate()[0].split()
print resultMD5
link|flag
no need to go through the shell to run md5sum. Don't use shell=True – nosklo Apr 24 at 11:52

Your Answer

Get an OpenID
or

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