├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── benchmarks ├── bench.py └── requirements.txt ├── docs └── index.md ├── pyproject.toml ├── requirements.txt ├── src ├── conv.rs └── lib.rs ├── test.py └── tests ├── __init__.py └── test_milli_index.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Python 2 | __pycache__ 3 | 4 | # Binaries 5 | target 6 | 7 | # Tests 8 | index 9 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/.gitmodules -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/benchmarks/bench.py -------------------------------------------------------------------------------- /benchmarks/requirements.txt: -------------------------------------------------------------------------------- 1 | Whoosh==2.7.4 -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/docs/index.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | maturin==0.14.13 2 | -------------------------------------------------------------------------------- /src/conv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/src/conv.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/src/lib.rs -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/test.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_milli_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/milli-py/HEAD/tests/test_milli_index.py --------------------------------------------------------------------------------