Frontegg is a web platform where SaaS companies can set up their fully managed, scalable and brand aware - SaaS features and integrate them into their SaaS portals in up to 5 lines of code.
Frontegg python sdk is available as pypi package.
Before installing make sure that your app using python 3.
pip install frontegg
Before you can start with frontegg, please make sure to sign up in order to get your free account.
After you signed up, you will be able to get your client ID and API key here.
Frontegg Slack SDK support the following frameworks:
If you could not find the library you are looking for here, please contact us and let us know :)
Frontegg use the python 3 built in loggin libary to log useful debugging information.
In order to had those logs you can add the environment variable "FRONTEGG_DEBUG":
FRONTEGG_DEBUG=True
Or configure it in the app itself:
from frontegg import frontegg_logger
import logging
frontegg_logger.setLevel(logging.DEBUG)