Skip to content

Instantly share code, notes, and snippets.

View lulmer's full-sized avatar
🏄‍♂️
Riding the wave of life

Louis Ulmer lulmer

🏄‍♂️
Riding the wave of life
  • Toulouse
View GitHub Profile
@lulmer
lulmer / app.py
Created October 12, 2021 09:15 — forked from thomasdarimont/app.py
Simple python example using flask, flask_oidc and keycloak
import json
import logging
from flask import Flask, g
from flask_oidc import OpenIDConnect
import requests
logging.basicConfig(level=logging.DEBUG)
app = Flask(__name__)