view shasum.py @ 121:2dc26a2f3d1c

A heavily customized "os.walk()" alike to support the coming treeview implementation
author Franz Glasner <fzglas.hg@dom66.de>
date Wed, 01 Jan 2025 17:52:41 +0100
parents dd4fe912d7e9
children 1e5127028254
line wrap: on
line source

# -*- coding: utf-8 -*-
# :-
# :Copyright: (c) 2020-2024 Franz Glasner
# :License:   BSD-3-Clause
# :-
r"""Pure Python implementation of `shasum`.

"""

from __future__ import absolute_import

import sys

import cutils.shasum


sys.exit(cutils.shasum.main())