An open API service indexing awesome lists of open source software.

https://github.com/farkon00/pyauto-compl

Library for auto complete in Python. It comes with set of standard english words for quick start.
https://github.com/farkon00/pyauto-compl

auto-completion prefix-tree python python-library

Last synced: 5 months ago
JSON representation

Library for auto complete in Python. It comes with set of standard english words for quick start.

Awesome Lists containing this project

README

          

# Pyauto-compl

__Pyauto-compl__ - library for auto complete in Python. It comes with set of standard english words for quick start.

It uses prefix tree data structure for better performance.

# Quick start
```shell
pip install pyauto-compl
```

```python
from autocompl.compl import AutoComplete

compl = AutoComplete() # Gonna load minified words, around 274411 words
print("Loaded words")
completions = compl.get_completions("appl") # Returns list of completions
print(completions)
```