Skip to content

Instantly share code, notes, and snippets.

@patricklucas
Created February 27, 2012 20:48
Show Gist options
  • Save patricklucas/1926923 to your computer and use it in GitHub Desktop.
Save patricklucas/1926923 to your computer and use it in GitHub Desktop.
from bottle import Bottl
import livesuggest
class MyApp(Bottle):
@get('/suggest/<prefix>')
def suggest(self, prefix):
self.request.content_type = 'application/json'
return livesuggest.prefix(prefix)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment