├── .flake8 ├── .github └── workflows │ ├── codeql-analysis.yml │ └── routine-tests.yml ├── 3.8 ├── README.md ├── fastlid ├── __init__.py ├── __main__.py ├── fastlid.py └── supported_langs.py ├── nodemon.json ├── package.json ├── poetry.lock ├── poetry.toml ├── pyproject.toml ├── pyrightconfig.json ├── pytest.ini ├── tbump.toml ├── tests ├── __init__.py ├── test_fastlid.py ├── test_fastlid_aoye.py ├── test_fastlid_elle_en_zh.py └── test_fastlid_version.py └── yarn.lock /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/routine-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/.github/workflows/routine-tests.yml -------------------------------------------------------------------------------- /3.8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/README.md -------------------------------------------------------------------------------- /fastlid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/fastlid/__init__.py -------------------------------------------------------------------------------- /fastlid/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/fastlid/__main__.py -------------------------------------------------------------------------------- /fastlid/fastlid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/fastlid/fastlid.py -------------------------------------------------------------------------------- /fastlid/supported_langs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/fastlid/supported_langs.py -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/package.json -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | create = true 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/pytest.ini -------------------------------------------------------------------------------- /tbump.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/tbump.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Test various modules.""" -------------------------------------------------------------------------------- /tests/test_fastlid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/tests/test_fastlid.py -------------------------------------------------------------------------------- /tests/test_fastlid_aoye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/tests/test_fastlid_aoye.py -------------------------------------------------------------------------------- /tests/test_fastlid_elle_en_zh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/tests/test_fastlid_elle_en_zh.py -------------------------------------------------------------------------------- /tests/test_fastlid_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/tests/test_fastlid_version.py -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffreemt/fast-langid/HEAD/yarn.lock --------------------------------------------------------------------------------