Skip to content

Instantly share code, notes, and snippets.

@estambolieva
estambolieva / wsgi.py
Last active May 27, 2020 10:07
Postgress Connection Pool with Gunicorn and Connexion
#!/usr/bin/env python3
import configparser, os
import connexion
from swagger_server import encoder
from flask_cors import CORS
from flask import g, jsonify
import psycopg2
from psycopg2 import pool