This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bottle import get, run, request, post, Bottle, abort, error, response, debug, redirect | |
# This is a dictionary endpoint. It retrieves definitions for words. | |
# You can also add words to the dictionary. | |
# this allows our bottle application to be accessible outside this file | |
app = Bottle() | |
dictionary = { | |
"lugubrious": "extremely sad", |