- 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>
9 lines
248 B
Python
9 lines
248 B
Python
"""数据库模型"""
|
|
|
|
from .university import University
|
|
from .script import ScraperScript
|
|
from .job import ScrapeJob, ScrapeLog
|
|
from .result import ScrapeResult
|
|
|
|
__all__ = ["University", "ScraperScript", "ScrapeJob", "ScrapeLog", "ScrapeResult"]
|