Add university scraper system with backend, frontend, and configs
- Add src/university_scraper module with scraper, analyzer, and CLI - Add backend FastAPI service with API endpoints and database models - Add frontend React app with university management pages - Add configs for Harvard, Manchester, and UCL universities - Add artifacts with various scraper implementations - Add Docker compose configuration for deployment - Update .gitignore to exclude generated files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
25
backend/requirements.txt
Normal file
25
backend/requirements.txt
Normal file
@ -0,0 +1,25 @@
|
||||
# FastAPI Web Framework
|
||||
fastapi>=0.109.0
|
||||
uvicorn[standard]>=0.27.0
|
||||
python-multipart>=0.0.6
|
||||
|
||||
# Database
|
||||
sqlalchemy>=2.0.25
|
||||
psycopg2-binary>=2.9.9
|
||||
alembic>=1.13.1
|
||||
|
||||
# Task Queue
|
||||
celery>=5.3.6
|
||||
redis>=5.0.1
|
||||
|
||||
# Utilities
|
||||
pydantic>=2.9
|
||||
pydantic-settings>=2.6
|
||||
python-dotenv>=1.0.0
|
||||
httpx>=0.28
|
||||
|
||||
# Existing scraper dependencies
|
||||
playwright>=1.48
|
||||
pyyaml>=6.0
|
||||
|
||||
# CORS
|
||||
Reference in New Issue
Block a user