保存 HTML 报告
(self, html_content: str, filename: str)
| 235 | return self.get_backend().save_txt_snapshot(data) |
| 236 | |
| 237 | def save_html_report(self, html_content: str, filename: str) -> Optional[str]: |
| 238 | """保存 HTML 报告""" |
| 239 | return self.get_backend().save_html_report(html_content, filename) |
| 240 | |
| 241 | def is_first_crawl_today(self, date: Optional[str] = None) -> bool: |
| 242 | """检查是否是当天第一次抓取""" |
nothing calls this directly
no test coverage detected