style: type hints corrections and docstrings

This commit is contained in:
Karim shoair
2025-07-30 00:32:39 +03:00
parent ba585c0adc
commit 18660f8132
7 changed files with 31 additions and 20 deletions
+1 -1
View File
@@ -150,7 +150,7 @@ Tired of your PC slowing you down? Cant keep your machine on 24/7 for scrapin
```python
from scrapling.fetchers import Fetcher
# Do HTTP GET request to a web page and create an Selector instance
# Do HTTP GET request to a web page and create a Selector instance
page = Fetcher.get('https://quotes.toscrape.com/', stealthy_headers=True)
# Get all text content from all HTML tags in the page except the `script` and `style` tags
page.get_all_text(ignore_tags=('script', 'style'))