Skip to main content

GSpot authentication package for FastApi

Project description

GSpot authentication package

This package allows you to authorize users through a shared redis

Install package

pip install gspot-fastapi-auth

Define env variables

  • REDIS_AUTH_ACCESS_PREFIX
  • REDIS_AUTH_DB
  • REDIS_AUTH_HOST
  • REDIS_AUTH_PORT
  • REDIS_AUTH_PASSWORD
  • REDIS_AUTH_TOKEN_STORAGE - 'headers' or 'cookies'

Define startapp and shutdown logic

from contextlib import asynccontextmanager

from fastapi import FastAPI

from src.gspot_fastapi_auth import token_config
from gspot_fastapi_auth.providers import RedisSingleton

@asynccontextmanager
async def lifespan(app: FastAPI):
    RedisSingleton.init_redis(
        token_config.HOST,
        token_config.PORT,
        token_config.DB,
        token_config.PASSWORD
    )
    yield
    await RedisSingleton().close()


app = FastAPI(lifespan=lifespan)

Use in view

from gspot_fastapi_auth import UserRedisAuth

@app.get("/")
async def read_root(user=Depends(UserRedisAuth())):
    return user.to_dict()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gspot_fastapi_auth-0.0.5.tar.gz (7.1 kB view hashes)

Uploaded Source

Built Distribution

gspot_fastapi_auth-0.0.5-py3-none-any.whl (6.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page