Workflow phases for the scraping pipeline.
| 19 | |
| 20 | |
| 21 | class WorkflowPhase(str, Enum): |
| 22 | """Workflow phases for the scraping pipeline.""" |
| 23 | INITIAL = "initial" |
| 24 | URL_COLLECTION = "url_collection" |
| 25 | URL_VALIDATION = "url_validation" |
| 26 | SCHEMA_DEFINITION = "schema_definition" |
| 27 | SCHEMA_VALIDATION = "schema_validation" |
| 28 | CODE_GENERATION = "code_generation" |
| 29 | READY_TO_EXECUTE = "ready_to_execute" |
| 30 | EXECUTING = "executing" |
| 31 | COMPLETED = "completed" |
| 32 | ERROR = "error" |
| 33 | |
| 34 | |
| 35 | class URLInfo(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected