- Add batch inspection backend (multipart upload, SSE streaming, MongoDB) - Add tabbed UI (single page / site crawling / batch upload) on home and history pages - Add batch inspection progress, result pages with 2-panel layout - Rename "사이트 전체" to "사이트 크롤링" across codebase - Add python-multipart dependency for file upload - Consolidate nginx SSE location for all inspection types Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
41 lines
513 B
Plaintext
41 lines
513 B
Plaintext
# Core
|
|
fastapi>=0.115.0
|
|
uvicorn[standard]>=0.32.0
|
|
pydantic>=2.10.0
|
|
pydantic-settings>=2.6.0
|
|
python-dotenv>=1.0.0
|
|
|
|
# Database
|
|
motor>=3.6.0
|
|
pymongo>=4.9.0,<4.10
|
|
|
|
# Redis
|
|
redis>=5.2.0
|
|
|
|
# SSE
|
|
sse-starlette>=2.1.0
|
|
|
|
# HTTP Client
|
|
httpx>=0.27.0
|
|
|
|
# HTML Parsing
|
|
beautifulsoup4>=4.12.0
|
|
html5lib>=1.1
|
|
lxml>=5.3.0
|
|
|
|
# Accessibility (Playwright)
|
|
playwright>=1.49.0
|
|
|
|
# PDF Report
|
|
weasyprint>=62.0
|
|
Jinja2>=3.1.0
|
|
|
|
# Rules (YAML)
|
|
PyYAML>=6.0.0
|
|
|
|
# Multipart (file upload)
|
|
python-multipart>=0.0.7
|
|
|
|
# Utilities
|
|
python-slugify>=8.0.0
|