Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 565 Bytes

README.rst

File metadata and controls

29 lines (19 loc) · 565 Bytes

Checksumdir

This is a simple module to create a single hash for a directory of files, taking into account only file contents, ignoring any metadata such as file name.

Usage

from checksumdir import dirhash

directory = '/path/to/directory/'
md5hash = dirhash(directory, 'md5')
sha1hash = dirhash(directory, 'sha1')

Or to use the CLI:

# Defaults to md5
$ checksumdir /path/to/directory

# Create sha1 hash
$ checksumdir -a sha1 /path/to/directory