Skip to content
View SF-300's full-sized avatar
Block or Report

Block or report SF-300

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Mounting ASGI subapps through FastAP... Mounting ASGI subapps through FastAPI's router
    1
    import unittest.mock
    2
    
    
    3
    from fastapi import FastAPI as _FastAPI, APIRouter as _APIRouter, routing
    4
    
    
    5
    __all__ = "FastAPI", "APIRouter" 
  2. parastack parastack Public

    Python

  3. Standalone FastAPI-like dependency i... Standalone FastAPI-like dependency injector POC
    1
    import asyncio
    2
    import contextlib
    3
    import inspect
    4
    from inspect import Parameter, Signature
    5
    from dataclasses import dataclass
  4. Postgres composites for SQLAlchemy 1.4 Postgres composites for SQLAlchemy 1.4
    1
    from typing import TypeAlias, Type
    2
    
    
    3
    from frozendict import frozendict
    4
    import sqlalchemy as sa
    5
    import sqlalchemy.types
  5. More convenient syntax for SimpleNam... More convenient syntax for SimpleNamespace instances creation.
    1
    from types import SimpleNamespace
    2
    from typing import Any
    3
    
    
    4
    __all__ = "NamespaceMeta", "Namespace"
    5