init commit

This commit is contained in:
徐微
2025-12-08 15:44:38 +08:00
commit f2baf63ef6
2443 changed files with 272043 additions and 0 deletions

8
venv/bin/normalizer Normal file
View File

@@ -0,0 +1,8 @@
#!/home/work/xw/keyword_crawl/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from charset_normalizer.cli import cli_detect
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(cli_detect())