← All terms · Web & APIs
httpx ASGITransport
Test transport that calls your FastAPI/Starlette app in-process — no real TCP, no port conflict, deterministic, 10-100× faster than spinning up a real server.
AsyncClient(transport=ASGITransport(app=app))
Learn this interactively:
Open lesson fastapi-18 →Related — Web & APIs
FastAPIModern Python web framework. Type-driven, async-first, autogenerates OpenAPI doc…PydanticData validation library. Define a model, get parsing + validation + JSON seriali…RESTArchitectural style for HTTP APIs — resources at URLs, verbs in the HTTP method,…JWTJSON Web Token — a signed, base64-encoded payload used for stateless auth. Verif…OpenAPISpec for describing REST APIs as JSON/YAML. FastAPI emits one automatically; too…CORSCross-Origin Resource Sharing — browser security check on which origins may call…