mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-16 12:54:50 +01:00
9 lines
258 B
Python
Executable File
9 lines
258 B
Python
Executable File
#!/mnt/beegfs/home/rastogi/poet/.ai/bin/python3.11
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from charset_normalizer import cli
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(cli.cli_detect())
|