docs: update pages with the new media for testing zensical

This commit is contained in:
Karim shoair
2026-02-08 20:46:14 +02:00
parent 0e2e9fb2ed
commit db41a6c4b6
4 changed files with 38 additions and 10 deletions
+2 -2
View File
@@ -122,9 +122,9 @@ page = DynamicFetcher.fetch('https://example.com', proxy='http://username:passwo
### Downloading Files
```python
page = DynamicFetcher.fetch('https://raw.githubusercontent.com/D4Vinci/Scrapling/main/images/poster.png')
page = DynamicFetcher.fetch('https://raw.githubusercontent.com/D4Vinci/Scrapling/main/images/main_cover.png')
with open(file='poster.png', mode='wb') as f:
with open(file='main_cover.png', mode='wb') as f:
f.write(page.body)
```