├── .github └── workflows │ ├── publish.yml │ └── python_test.yml ├── .gitignore ├── .nerve.toml ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── NOTICE.MD ├── README.md ├── examples └── memory_usage_check.py ├── feature_test ├── __init__.py ├── lingua_t.py └── spacy.py ├── pdm.lock ├── pyproject.toml ├── src └── fast_langdetect │ ├── LICENSE │ ├── __init__.py │ ├── infer.py │ └── resources │ ├── NOTICE.MD │ └── lid.176.ftz └── tests ├── __init__.py ├── conftest.py ├── test_chinese_path.py ├── test_detect.py └── test_real_detection.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/python_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/.github/workflows/python_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/.gitignore -------------------------------------------------------------------------------- /.nerve.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/.nerve.toml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/NOTICE.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/README.md -------------------------------------------------------------------------------- /examples/memory_usage_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/examples/memory_usage_check.py -------------------------------------------------------------------------------- /feature_test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/feature_test/__init__.py -------------------------------------------------------------------------------- /feature_test/lingua_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/feature_test/lingua_t.py -------------------------------------------------------------------------------- /feature_test/spacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/feature_test/spacy.py -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/fast_langdetect/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/src/fast_langdetect/LICENSE -------------------------------------------------------------------------------- /src/fast_langdetect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/src/fast_langdetect/__init__.py -------------------------------------------------------------------------------- /src/fast_langdetect/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/src/fast_langdetect/infer.py -------------------------------------------------------------------------------- /src/fast_langdetect/resources/NOTICE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/src/fast_langdetect/resources/NOTICE.MD -------------------------------------------------------------------------------- /src/fast_langdetect/resources/lid.176.ftz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/src/fast_langdetect/resources/lid.176.ftz -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_chinese_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/tests/test_chinese_path.py -------------------------------------------------------------------------------- /tests/test_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/tests/test_detect.py -------------------------------------------------------------------------------- /tests/test_real_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/fast-langdetect/HEAD/tests/test_real_detection.py --------------------------------------------------------------------------------