uvicorn
Installation
SKILL.md
Uvicorn Skill Guide
Uvicorn is a lightning-fast ASGI server implementation, using uvloop and httptools. It's the go-to server for modern Python async web frameworks.
Quick Start
Basic Usage
# Run ASGI app
uvicorn main:app
# With host/port
uvicorn main:app --host 0.0.0.0 --port 8000
# Development with auto-reload
uvicorn main:app --reload
Related skills
More from slanycukr/riot-api-project
axios
Promise-based HTTP client for making requests from browser and Node.js
140radix-ui
Build accessible, unstyled React UI components with Radix Primitives
56structlog
Structured logging for Python applications with context support and powerful processors
46httpx
A next-generation HTTP client for Python with both sync and async support, perfect for modern Python applications
36apscheduler
Advanced Python Scheduler - Task scheduling and job queue system
20zod v4
TypeScript-first schema validation library with static type inference and runtime validation
14