docs(agent): update skill with the latest changes

This commit is contained in:
Karim shoair
2026-04-07 05:39:39 +02:00
parent 88d0459cd2
commit 664e419751
4 changed files with 51 additions and 0 deletions
+2
View File
@@ -302,6 +302,8 @@ QuotesSpider(crawldir="./crawl_data").start()
```
Press Ctrl+C to pause gracefully - progress is saved automatically. Later, when you start the spider again, pass the same `crawldir`, and it will resume from where it stopped.
While iterating on a spider's `parse()` logic, set `development_mode = True` on the spider class to cache responses to disk on the first run and replay them on subsequent runs - so you can re-run the spider as many times as you want without re-hitting the target servers. The cache lives in `.scrapling_cache/{spider.name}/` by default and can be overridden with `development_cache_dir`. Don't ship a spider with this enabled.
### Advanced Parsing & Navigation
```python
from scrapling.fetchers import Fetcher