Mercurial > hgrepos > Python > apps > py-cutils
comparison treesum.py @ 124:3bd3f32b5e60
A first version of "treesum" is working
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Thu, 02 Jan 2025 13:29:20 +0100 |
| parents | |
| children | dfe7bb0579e2 |
comparison
equal
deleted
inserted
replaced
| 123:4a0c3c9eead7 | 124:3bd3f32b5e60 |
|---|---|
| 1 # -*- coding: utf-8 -*- | |
| 2 # :- | |
| 3 # :Copyright: (c) 2020-2024 Franz Glasner | |
| 4 # :License: BSD-3-Clause | |
| 5 # :- | |
| 6 r"""Pure Python implementation of a directory tree checksum. | |
| 7 | |
| 8 """ | |
| 9 | |
| 10 from __future__ import absolute_import | |
| 11 | |
| 12 import sys | |
| 13 | |
| 14 import cutils.treesum | |
| 15 | |
| 16 | |
| 17 sys.exit(cutils.treesum.main()) |
