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)
The frontegg Python SDK is actively maintained, and its dependencies are kept on current, patched versions. Minimum versions of security-sensitive dependencies (requests, cryptography, aiohttp, PyJWT, ...) are pinned in pyproject.toml so that installs resolve to patched releases.
To keep your application protected, always use the latest release:
pip install --upgrade frontegg
If you discover a security vulnerability in this SDK, please report it responsibly by emailing security@frontegg.com. Please do not open a public GitHub issue for security reports.