view .local/bin/chardetect @ 117:63898fde9751

refactor final processing loop, change basis for body dump, maybe too aggressive...
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Tue, 15 Jun 2021 18:04:34 +0000
parents a8bb3b4c208f
children
line wrap: on
line source

#!/lustre/sw/miniconda3/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from chardet.cli.chardetect import main
if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
    sys.exit(main())