feat(spiders): Add CrawlSpider and CrawlRule

This commit is contained in:
Karim shoair
2026-05-10 21:13:16 +03:00
parent 18e9121135
commit f093d0cf12
2 changed files with 78 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
from .crawler import CrawlSpider, CrawlRule
__all__ = [
"CrawlSpider",
"CrawlRule",
]