├── .gitattributes ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── ftlangdetect ├── __init__.py └── detect.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_detect.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zafercavdar/fasttext-langdetect/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zafercavdar/fasttext-langdetect/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zafercavdar/fasttext-langdetect/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zafercavdar/fasttext-langdetect/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zafercavdar/fasttext-langdetect/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zafercavdar/fasttext-langdetect/HEAD/README.md -------------------------------------------------------------------------------- /ftlangdetect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zafercavdar/fasttext-langdetect/HEAD/ftlangdetect/__init__.py -------------------------------------------------------------------------------- /ftlangdetect/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zafercavdar/fasttext-langdetect/HEAD/ftlangdetect/detect.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fasttext >= 0.9.1 2 | requests >= 2.22.0 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zafercavdar/fasttext-langdetect/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zafercavdar/fasttext-langdetect/HEAD/tests/test_detect.py --------------------------------------------------------------------------------