tutorial002_py310.py — fastapi Source File
Architecture documentation for tutorial002_py310.py, a python file in the fastapi codebase. 3 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 54485f7c_1fcb_cc68_3a9c_062d35479acf["tutorial002_py310.py"] 534f6e44_61b8_3c38_8b89_6934a6df9802["__init__.py"] 54485f7c_1fcb_cc68_3a9c_062d35479acf --> 534f6e44_61b8_3c38_8b89_6934a6df9802 35c4ea20_c454_5afd_6cda_f0818bbcc650["__init__.py"] 54485f7c_1fcb_cc68_3a9c_062d35479acf --> 35c4ea20_c454_5afd_6cda_f0818bbcc650 6913fbd4_39df_d14b_44bb_522e99b65b90["pydantic"] 54485f7c_1fcb_cc68_3a9c_062d35479acf --> 6913fbd4_39df_d14b_44bb_522e99b65b90 style 54485f7c_1fcb_cc68_3a9c_062d35479acf fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
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: str | None = None
full_name: str | None = None
disabled: 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: str = Depends(oauth2_scheme)):
user = fake_decode_token(token)
return user
@app.get("/users/me")
async def read_users_me(current_user: User = Depends(get_current_user)):
return current_user
Domain
Subdomains
Classes
Dependencies
- __init__.py
- __init__.py
- pydantic
Source
Frequently Asked Questions
What does tutorial002_py310.py do?
tutorial002_py310.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_py310.py?
tutorial002_py310.py defines 3 function(s): fake_decode_token, get_current_user, read_users_me.
What does tutorial002_py310.py depend on?
tutorial002_py310.py imports 3 module(s): __init__.py, __init__.py, pydantic.
Where is tutorial002_py310.py in the architecture?
tutorial002_py310.py is located at docs_src/security/tutorial002_py310.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