Skip to content Skip to sidebar Skip to footer
Showing posts with the label Fastapi

__call__() Missing 1 Required Positional Argument: 'send' Fastapi On App Engine

When trying to host an API on App Engine, the following error keeps coming up. The program used to … Read more __call__() Missing 1 Required Positional Argument: 'send' Fastapi On App Engine

How To Get Values From Nested Pydantic Classes?

class mail(BaseModel): mailid: int email: str class User(BaseModel): id: int n… Read more How To Get Values From Nested Pydantic Classes?