supertokens-python icon indicating copy to clipboard operation
supertokens-python copied to clipboard

Python SDK for SuperTokens

Results 43 supertokens-python issues
Sort by recently updated
recently updated
newest added

core running on docker Created 2 hello world FastAPI apps, one vanilla, other with supertokens. ``` from fastapi import FastAPI from starlette.middleware.cors import CORSMiddleware from supertokens_python import ( InputAppInfo, SupertokensConfig,...

https://github.com/supertokens/supertokens-python/blob/master/supertokens_python/async_to_sync_wrapper.py I want to call `create_or_update_tenant` after init but before the app starts. The standard way to run a FastAPI application is ``` uvicorn main:app ``` or ``` uvicorn --factory...

## Summary of change (A few sentences about this PR) ## Related issues - Link to issue1 here - Link to issue1 here ## Test Plan (Write your test plan...

## Summary of change (A few sentences about this PR) ## Related issues - Link to issue1 here - Link to issue1 here ## Test Plan (Write your test plan...

Currently I have to import all the recipe APIs like: ```py from supertokens_python import asyncio as api from supertokens_python.recipe.userroles import asyncio as roles_api from supertokens_python.recipe.multitenancy import asyncio as multitenancy_api from...

## Summary of change TODO ## Related issues TODO ## Test Plan TODO ## Documentation changes TODO ## Checklist for important updates - [ ] Changelog has been updated -...

The request for creating a tenant currently times out for me (running Supertoken as a managed instance) because it takes more than 2 seconds to return the response from the...

As devs, we sometimes test things out using the OpenApi spec. FastAPI provides this out of the box. They also have a simple guide that shows how to integrate auth...

We want to use `origin` function in `InputAppInfo` as described in [https://supertokens.com/docs/emailpassword/common-customizations/multiple-clients](https://supertokens.com/docs/emailpassword/common-customizations/multiple-clients). Our logic is to download current origin list from our database using Django ORM. However, currently this is...

We are using the python sdk at version 0.17.0 using python version 3.11 from the public.ecr.aws/lambda/python:3.11 and running the backend SDK via a Lambda and API Gateway integration using the...