Making the README clearer a bit
This commit is contained in:
@@ -44,10 +44,11 @@ Scrapling is a high-performance, intelligent web scraping library for Python tha
|
|||||||
* [Text Extraction Speed Test (5000 nested elements).](#text-extraction-speed-test-5000-nested-elements)
|
* [Text Extraction Speed Test (5000 nested elements).](#text-extraction-speed-test-5000-nested-elements)
|
||||||
* [Extraction By Text Speed Test](#extraction-by-text-speed-test)
|
* [Extraction By Text Speed Test](#extraction-by-text-speed-test)
|
||||||
* [Installation](#installation)
|
* [Installation](#installation)
|
||||||
* [Fetching Websites Features](#fetching-websites-features)
|
* [Fetching Websites](#fetching-websites)
|
||||||
* [Fetcher](#fetcher)
|
* [Features](#features)
|
||||||
* [StealthyFetcher](#stealthyfetcher)
|
* [Fetcher class](#fetcher)
|
||||||
* [PlayWrightFetcher](#playwrightfetcher)
|
* [StealthyFetcher class](#stealthyfetcher)
|
||||||
|
* [PlayWrightFetcher class](#playwrightfetcher)
|
||||||
* [Advanced Parsing Features](#advanced-parsing-features)
|
* [Advanced Parsing Features](#advanced-parsing-features)
|
||||||
* [Smart Navigation](#smart-navigation)
|
* [Smart Navigation](#smart-navigation)
|
||||||
* [Content-based Selection & Finding Similar Elements](#content-based-selection--finding-similar-elements)
|
* [Content-based Selection & Finding Similar Elements](#content-based-selection--finding-similar-elements)
|
||||||
@@ -210,7 +211,10 @@ playwright install chromium
|
|||||||
python -m browserforge update
|
python -m browserforge update
|
||||||
```
|
```
|
||||||
|
|
||||||
## Fetching Websites Features
|
## Fetching Websites
|
||||||
|
Fetchers are basically interfaces that do requests or fetch pages for you in a single request fashion then return an `Adaptor` object for you. This feature was introduced because the only option we had before was to fetch the page as you want then pass it manually to the `Adaptor` class to create an `Adaptor` instance and start playing around with the page.
|
||||||
|
|
||||||
|
### Features
|
||||||
You might be a little bit confused by now so let me clear things up. All fetcher-type classes are imported in the same way
|
You might be a little bit confused by now so let me clear things up. All fetcher-type classes are imported in the same way
|
||||||
```python
|
```python
|
||||||
from scrapling import Fetcher, StealthyFetcher, PlayWrightFetcher
|
from scrapling import Fetcher, StealthyFetcher, PlayWrightFetcher
|
||||||
|
|||||||
Reference in New Issue
Block a user