User:Joca/autocomplete: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "= Autocomplete bot = == Goal == Based on the user's input in the searchbox, this bot autocompletes the query in an unexpected way. == Tools == I am looking for a way to hav...")
 
Line 15: Line 15:
''output:''
''output:''
Suggestion is displayed into searchbar
Suggestion is displayed into searchbar
=== Markov chain ===
Autocomplete lib
https://pypi.org/project/autocomplete/
A library that provides an easy way to process text and deliver suggestions on your own probability model.
=== Pushing the text from backend to interface ===
https://lonelycoding.com/autocomplete-textbox-example-in-python-google-app-engine/

Revision as of 16:11, 24 May 2018

Autocomplete bot

Goal

Based on the user's input in the searchbox, this bot autocompletes the query in an unexpected way.

Tools

I am looking for a way to have a small Python script in the background, that provides autocomplete suggestions based on a markov chain. And maybe later on also taking into account the titles of the books in the database. These suggestions are then displayed inside the searchbar.

input: User typed search query

processing input: Run markov chain based on the input, update as the input changes

output: Suggestion is displayed into searchbar

Markov chain

Autocomplete lib https://pypi.org/project/autocomplete/

A library that provides an easy way to process text and deliver suggestions on your own probability model.


Pushing the text from backend to interface

https://lonelycoding.com/autocomplete-textbox-example-in-python-google-app-engine/