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.
- Host: GitHub
- URL: https://github.com/farkon00/pyauto-compl
- Owner: farkon00
- License: mit
- Created: 2022-06-17T18:36:53.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-10T15:05:34.000Z (over 3 years ago)
- Last Synced: 2025-09-23T01:09:07.608Z (9 months ago)
- Topics: auto-completion, prefix-tree, python, python-library
- Language: Python
- Homepage: https://pypi.org/project/pyauto-compl/
- Size: 1.75 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```