Skip to content

Instantly share code, notes, and snippets.

View andrei-marach's full-sized avatar

andrei-marach

View GitHub Profile
@andrei-marach
andrei-marach / app.py
Created April 8, 2024 05:18 — 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__)