brief-extractor/backend/venv/bin/normalizer
2026-03-06 18:42:46 +00:00

7 lines
244 B
Python
Executable file

#!/var/www/html/brief-extractor/backend/venv/bin/python3
import sys
from charset_normalizer.cli import cli_detect
if __name__ == '__main__':
if sys.argv[0].endswith('.exe'):
sys.argv[0] = sys.argv[0][:-4]
sys.exit(cli_detect())