Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 582 Bytes

CHANGELOG.rst

File metadata and controls

39 lines (27 loc) · 582 Bytes

0.2.1

  • Added Tests
  • Added support for additional Hash algorithms * sha1 * sha224 * sha256 * sha384 * sha512
  • Add command line algorithms List

0.1.1

Argument checking

def main():
    ''' Entry point for the application script '''
    args = sys.argv
    if len(args) != 2:
        print('Usage: md5checker "path-to-file"')
    else:
        print(make_hash(sys.argv[1]))

0.1.0

  • Added hash function for single files.