This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
larpe/larpe/__init__.py

22 lines
375 B
Python

'''Setup path and load Lasso library'''
try:
from quixote.ptl import compile_package
compile_package(__path__)
except ImportError:
pass
import sys
import os
sys.path.insert(0, os.path.dirname(__file__))
import qommon
try:
import lasso
except ImportError:
lasso = None
if lasso and not hasattr(lasso, 'SAML2_SUPPORT'):
lasso.SAML2_SUPPORT = False