tokencrawler/.venv/bin/normalizer
2022-03-17 22:16:30 +01:00

8 lines
297 B
Python
Executable file

#!/Users/mwiegand/Projekte/blockirgendwaschaindings/.venv/bin/python3.9
# -*- coding: utf-8 -*-
import re
import sys
from charset_normalizer.cli.normalizer import cli_detect
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(cli_detect())