mirror of
https://github.com/kristoferssolo/School.git
synced 2025-10-21 20:10:38 +00:00
9 lines
306 B
Python
9 lines
306 B
Python
#!/run/media/kristofers/Disk/Pyhton/random/School/IKEA_scraper/.venv/bin/python3
|
|
# -*- 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())
|