Coverage for fastapi/__init__.py: 100%
21 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-04 08:29 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-12-04 08:29 +0000
1"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
3__version__ = "0.123.7" 1abcdefg
5from starlette import status as status 1abcdefg
7from .applications import FastAPI as FastAPI 1abcdefg
8from .background import BackgroundTasks as BackgroundTasks 1abcdefg
9from .datastructures import UploadFile as UploadFile 1abcdefg
10from .exceptions import HTTPException as HTTPException 1abcdefg
11from .exceptions import WebSocketException as WebSocketException 1abcdefg
12from .param_functions import Body as Body 1abcdefg
13from .param_functions import Cookie as Cookie 1abcdefg
14from .param_functions import Depends as Depends 1abcdefg
15from .param_functions import File as File 1abcdefg
16from .param_functions import Form as Form 1abcdefg
17from .param_functions import Header as Header 1abcdefg
18from .param_functions import Path as Path 1abcdefg
19from .param_functions import Query as Query 1abcdefg
20from .param_functions import Security as Security 1abcdefg
21from .requests import Request as Request 1abcdefg
22from .responses import Response as Response 1abcdefg
23from .routing import APIRouter as APIRouter 1abcdefg
24from .websockets import WebSocket as WebSocket 1abcdefg
25from .websockets import WebSocketDisconnect as WebSocketDisconnect 1abcdefg