8 lines
226 B
Python
8 lines
226 B
Python
#!/home/bob/ai_capture/venv/bin/python
|
|
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())
|