This file contains 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
import logging | |
import sys | |
from logging.handlers import TimedRotatingFileHandler | |
from uuid import uuid4 | |
import bottle | |
import waitress | |
from bottle import get, post, delete, put, request, response, route, template | |
from requestlogger import ApacheFormatter, WSGILogger |