Karim shoair commited on
Commit ·
719feb5
1
Parent(s): 7f474cb
docs: replace adaptor with selector in the API reference
Browse files- docs/api-reference/adaptor.md +0 -25
- docs/api-reference/selector.md +25 -0
docs/api-reference/adaptor.md
DELETED
|
@@ -1,25 +0,0 @@
|
|
| 1 |
-
---
|
| 2 |
-
search:
|
| 3 |
-
exclude: true
|
| 4 |
-
---
|
| 5 |
-
|
| 6 |
-
# Adaptor Class
|
| 7 |
-
|
| 8 |
-
The `Adaptor` class is the core parsing engine in Scrapling that provides HTML parsing and element selection capabilities.
|
| 9 |
-
|
| 10 |
-
Here's the reference information for the `Adaptor` class, with all its parameters, attributes, and methods.
|
| 11 |
-
|
| 12 |
-
You can import the `Adaptor` class directly from `scrapling`:
|
| 13 |
-
|
| 14 |
-
```python
|
| 15 |
-
from scrapling.parser import Adaptor
|
| 16 |
-
```
|
| 17 |
-
|
| 18 |
-
## ::: scrapling.parser.Adaptor
|
| 19 |
-
handler: python
|
| 20 |
-
:docstring:
|
| 21 |
-
|
| 22 |
-
## ::: scrapling.parser.Adaptors
|
| 23 |
-
handler: python
|
| 24 |
-
:docstring:
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
docs/api-reference/selector.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
search:
|
| 3 |
+
exclude: true
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Selector Class
|
| 7 |
+
|
| 8 |
+
The `Selector` class is the core parsing engine in Scrapling that provides HTML parsing and element selection capabilities.
|
| 9 |
+
|
| 10 |
+
Here's the reference information for the `Selector` class, with all its parameters, attributes, and methods.
|
| 11 |
+
|
| 12 |
+
You can import the `Selector` class directly from `scrapling`:
|
| 13 |
+
|
| 14 |
+
```python
|
| 15 |
+
from scrapling.parser import Selector
|
| 16 |
+
```
|
| 17 |
+
|
| 18 |
+
## ::: scrapling.parser.Selector
|
| 19 |
+
handler: python
|
| 20 |
+
:docstring:
|
| 21 |
+
|
| 22 |
+
## ::: scrapling.parser.Selectors
|
| 23 |
+
handler: python
|
| 24 |
+
:docstring:
|
| 25 |
+
|