Skip to content

Instantly share code, notes, and snippets.

View norambna's full-sized avatar

Luis Norambuena norambna

View GitHub Profile
@norambna
norambna / crud_rest_api_sample.py
Last active May 31, 2023 23:07
CRUD REST API sample
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