MCPcopy Create free account
hub / github.com/ScrapeGraphAI/scrapecraft / PipelineExecution

Class PipelineExecution

backend/app/models/pipeline.py:40–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38 code: Optional[str] = None
39
40class PipelineExecution(BaseModel):
41 id: str
42 pipeline_id: str
43 status: PipelineStatus
44 started_at: datetime
45 completed_at: Optional[datetime] = None
46 total_urls: int
47 successful_urls: int = 0
48 failed_urls: int = 0
49 error_message: Optional[str] = None

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected