Skip to content

frontegg/python-sdk

Repository files navigation


Frontegg Logo

Frontegg Python Client

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.

Report Bug · Request Feature

Table of Contents


Breaking Changes

  • As of version 2.0.0 , we will no longer provide proxy middlewares.

  • As of version 3.0.0, Python 3.7 is no longer supported.


Installation

Frontegg python sdk is available as pypi package.

Before installing make sure that your app using python 3.

pip install frontegg  

Singing Up To 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.

Supported Liberies

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 :)

Debugging

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)