tutorial002_an_py39.py — fastapi Source File
Architecture documentation for tutorial002_an_py39.py, a python file in the fastapi codebase. 4 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 8b734e4a_f833_811d_a583_cf985cc6718a["tutorial002_an_py39.py"] 0dda2280_3359_8460_301c_e98c77e78185["typing"] 8b734e4a_f833_811d_a583_cf985cc6718a --> 0dda2280_3359_8460_301c_e98c77e78185 534f6e44_61b8_3c38_8b89_6934a6df9802["__init__.py"] 8b734e4a_f833_811d_a583_cf985cc6718a --> 534f6e44_61b8_3c38_8b89_6934a6df9802 35c4ea20_c454_5afd_6cda_f0818bbcc650["__init__.py"] 8b734e4a_f833_811d_a583_cf985cc6718a --> 35c4ea20_c454_5afd_6cda_f0818bbcc650 6913fbd4_39df_d14b_44bb_522e99b65b90["pydantic"] 8b734e4a_f833_811d_a583_cf985cc6718a --> 6913fbd4_39df_d14b_44bb_522e99b65b90 style 8b734e4a_f833_811d_a583_cf985cc6718a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
from typing import Annotated, Union
from fastapi import Depends, FastAPI
from fastapi.security import OAuth2PasswordBearer
from pydantic import BaseModel
app = FastAPI()
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token")
class User(BaseModel):
username: str
email: Union[str, None] = None
full_name: Union[str, None] = None
disabled: Union[bool, None] = None
def fake_decode_token(token):
return User(
username=token + "fakedecoded", email="john@example.com", full_name="John Doe"
)
async def get_current_user(token: Annotated[str, Depends(oauth2_scheme)]):
user = fake_decode_token(token)
return user
@app.get("/users/me")
async def read_users_me(current_user: Annotated[User, Depends(get_current_user)]):
return current_user
Domain
Subdomains
Classes
Dependencies
- __init__.py
- __init__.py
- pydantic
- typing
Source
Frequently Asked Questions
What does tutorial002_an_py39.py do?
tutorial002_an_py39.py is a source file in the fastapi codebase, written in python. It belongs to the FastAPI domain, Routing subdomain.
What functions are defined in tutorial002_an_py39.py?
tutorial002_an_py39.py defines 3 function(s): fake_decode_token, get_current_user, read_users_me.
What does tutorial002_an_py39.py depend on?
tutorial002_an_py39.py imports 4 module(s): __init__.py, __init__.py, pydantic, typing.
Where is tutorial002_an_py39.py in the architecture?
tutorial002_an_py39.py is located at docs_src/security/tutorial002_an_py39.py (domain: FastAPI, subdomain: Routing, directory: docs_src/security).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free