Karim shoair commited on
Commit
4882846
·
1 Parent(s): 7b427e7

docs: update fetchers page in the API reference

Browse files
Files changed (1) hide show
  1. docs/api-reference/fetchers.md +35 -2
docs/api-reference/fetchers.md CHANGED
@@ -10,7 +10,10 @@ Here's the reference information for all fetcher-type classes' parameters, attri
10
  You can import all of them directly like below:
11
 
12
  ```python
13
- from scrapling.fetchers import Fetcher, AsyncFetcher, StealthyFetcher, PlayWrightFetcher
 
 
 
14
  ```
15
 
16
  ## ::: scrapling.fetchers.Fetcher
@@ -21,10 +24,40 @@ from scrapling.fetchers import Fetcher, AsyncFetcher, StealthyFetcher, PlayWrigh
21
  handler: python
22
  :docstring:
23
 
24
- ## ::: scrapling.fetchers.PlayWrightFetcher
25
  handler: python
26
  :docstring:
27
 
28
  ## ::: scrapling.fetchers.StealthyFetcher
29
  handler: python
30
  :docstring:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  You can import all of them directly like below:
11
 
12
  ```python
13
+ from scrapling.fetchers import (
14
+ Fetcher, AsyncFetcher, StealthyFetcher, DynamicFetcher,
15
+ FetcherSession, AsyncStealthySession, StealthySession, DynamicSession, AsyncDynamicSession
16
+ )
17
  ```
18
 
19
  ## ::: scrapling.fetchers.Fetcher
 
24
  handler: python
25
  :docstring:
26
 
27
+ ## ::: scrapling.fetchers.DynamicFetcher
28
  handler: python
29
  :docstring:
30
 
31
  ## ::: scrapling.fetchers.StealthyFetcher
32
  handler: python
33
  :docstring:
34
+
35
+
36
+ ## Session Classes
37
+
38
+ ### HTTP Sessions
39
+
40
+ ## ::: scrapling.fetchers.FetcherSession
41
+ handler: python
42
+ :docstring:
43
+
44
+ ### Stealth Sessions
45
+
46
+ ## ::: scrapling.fetchers.StealthySession
47
+ handler: python
48
+ :docstring:
49
+
50
+ ## ::: scrapling.fetchers.AsyncStealthySession
51
+ handler: python
52
+ :docstring:
53
+
54
+ ### Dynamic Sessions
55
+
56
+ ## ::: scrapling.fetchers.DynamicSession
57
+ handler: python
58
+ :docstring:
59
+
60
+ ## ::: scrapling.fetchers.AsyncDynamicSession
61
+ handler: python
62
+ :docstring:
63
+