sprint/venv/bin/normalizer
Egor Matveev e6a9a6a7a8 venv
2021-09-05 15:35:24 +03:00

9 lines
269 B
Python
Executable File

#!/Users/egormatveev/Sprint/venv/bin/python
# -*- 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())