This commit is contained in:
Egor Matveev
2021-09-05 15:35:24 +03:00
parent 33874c0a11
commit e6a9a6a7a8
22 changed files with 519 additions and 1 deletions

8
venv/bin/normalizer Executable file
View File

@@ -0,0 +1,8 @@
#!/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())