scrapling 0.3.1__py3-none-any.whl → 0.3.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- scrapling/__init__.py +1 -1
- scrapling/cli.py +38 -51
- scrapling/core/_html_utils.py +3 -9
- scrapling/core/ai.py +5 -13
- scrapling/core/custom_types.py +19 -61
- scrapling/core/mixins.py +6 -28
- scrapling/core/shell.py +49 -127
- scrapling/core/storage.py +2 -8
- scrapling/core/translator.py +8 -20
- scrapling/core/utils/__init__.py +10 -0
- scrapling/core/utils/_shell.py +48 -0
- scrapling/core/{utils.py → utils/_utils.py} +5 -21
- scrapling/engines/__init__.py +0 -16
- scrapling/engines/_browsers/_base.py +297 -0
- scrapling/engines/_browsers/_camoufox.py +219 -296
- scrapling/engines/_browsers/_config_tools.py +2 -1
- scrapling/engines/_browsers/_controllers.py +201 -281
- scrapling/engines/_browsers/_page.py +37 -15
- scrapling/engines/_browsers/_validators.py +9 -15
- scrapling/engines/constants.py +3 -6
- scrapling/engines/static.py +25 -75
- scrapling/engines/toolbelt/__init__.py +1 -20
- scrapling/engines/toolbelt/convertor.py +95 -86
- scrapling/engines/toolbelt/custom.py +7 -99
- scrapling/engines/toolbelt/fingerprints.py +1 -3
- scrapling/engines/toolbelt/navigation.py +4 -58
- scrapling/fetchers.py +29 -24
- scrapling/parser.py +45 -122
- {scrapling-0.3.1.dist-info → scrapling-0.3.3.dist-info}/METADATA +54 -46
- scrapling-0.3.3.dist-info/RECORD +44 -0
- scrapling-0.3.1.dist-info/RECORD +0 -41
- {scrapling-0.3.1.dist-info → scrapling-0.3.3.dist-info}/WHEEL +0 -0
- {scrapling-0.3.1.dist-info → scrapling-0.3.3.dist-info}/entry_points.txt +0 -0
- {scrapling-0.3.1.dist-info → scrapling-0.3.3.dist-info}/licenses/LICENSE +0 -0
- {scrapling-0.3.1.dist-info → scrapling-0.3.3.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: scrapling
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.3
|
4
4
|
Summary: Scrapling is an undetectable, powerful, flexible, high-performance Python library that makes Web Scraping easy and effortless as it should be!
|
5
5
|
Home-page: https://github.com/D4Vinci/Scrapling
|
6
6
|
Author: Karim Shoair
|
@@ -64,23 +64,26 @@ Classifier: Typing :: Typed
|
|
64
64
|
Requires-Python: >=3.10
|
65
65
|
Description-Content-Type: text/markdown
|
66
66
|
License-File: LICENSE
|
67
|
-
Requires-Dist: lxml>=6.0.
|
67
|
+
Requires-Dist: lxml>=6.0.1
|
68
68
|
Requires-Dist: cssselect>=1.3.0
|
69
|
-
Requires-Dist:
|
70
|
-
Requires-Dist: orjson>=3.11.2
|
69
|
+
Requires-Dist: orjson>=3.11.3
|
71
70
|
Requires-Dist: tldextract>=5.3.0
|
72
|
-
|
73
|
-
Requires-Dist:
|
74
|
-
Requires-Dist:
|
75
|
-
Requires-Dist:
|
76
|
-
Requires-Dist:
|
77
|
-
Requires-Dist:
|
71
|
+
Provides-Extra: fetchers
|
72
|
+
Requires-Dist: click>=8.2.1; extra == "fetchers"
|
73
|
+
Requires-Dist: curl_cffi>=0.13.0; extra == "fetchers"
|
74
|
+
Requires-Dist: playwright>=1.52.0; extra == "fetchers"
|
75
|
+
Requires-Dist: rebrowser-playwright>=1.52.0; extra == "fetchers"
|
76
|
+
Requires-Dist: camoufox>=0.4.11; extra == "fetchers"
|
77
|
+
Requires-Dist: geoip2>=5.1.0; extra == "fetchers"
|
78
|
+
Requires-Dist: msgspec>=0.19.0; extra == "fetchers"
|
78
79
|
Provides-Extra: ai
|
79
|
-
Requires-Dist: mcp>=1.
|
80
|
+
Requires-Dist: mcp>=1.14.0; extra == "ai"
|
80
81
|
Requires-Dist: markdownify>=1.2.0; extra == "ai"
|
82
|
+
Requires-Dist: scrapling[fetchers]; extra == "ai"
|
81
83
|
Provides-Extra: shell
|
82
84
|
Requires-Dist: IPython>=8.37; extra == "shell"
|
83
85
|
Requires-Dist: markdownify>=1.2.0; extra == "shell"
|
86
|
+
Requires-Dist: scrapling[fetchers]; extra == "shell"
|
84
87
|
Provides-Extra: all
|
85
88
|
Requires-Dist: scrapling[ai,shell]; extra == "all"
|
86
89
|
Dynamic: license-file
|
@@ -158,6 +161,7 @@ Built for the modern Web, Scrapling has its own rapid parsing engine and its fet
|
|
158
161
|
<a href="https://petrosky.io/d4vinci" target="_blank" title="PetroSky delivers cutting-edge VPS hosting."><img src="https://raw.githubusercontent.com/D4Vinci/Scrapling/main/images/petrosky.png"></a>
|
159
162
|
<a href="https://www.swiftproxy.net/" target="_blank" title="Unlock Reliable Proxy Services with Swiftproxy!"><img src="https://raw.githubusercontent.com/D4Vinci/Scrapling/main/images/swiftproxy.png"></a>
|
160
163
|
<a href="https://serpapi.com/?utm_source=scrapling" target="_blank" title="Scrape Google and other search engines with SerpApi"><img src="https://raw.githubusercontent.com/D4Vinci/Scrapling/main/images/SerpApi.png"></a>
|
164
|
+
<a href="https://www.nstproxy.com/?type=flow&utm_source=scrapling" target="_blank" title="One Proxy Service, Infinite Solutions at Unbeatable Prices!"><img src="https://raw.githubusercontent.com/D4Vinci/Scrapling/main/images/NSTproxy.png"></a>
|
161
165
|
|
162
166
|
<!-- /sponsors -->
|
163
167
|
|
@@ -178,7 +182,7 @@ Built for the modern Web, Scrapling has its own rapid parsing engine and its fet
|
|
178
182
|
- 🔄 **Smart Element Tracking**: Relocate elements after website changes using intelligent similarity algorithms.
|
179
183
|
- 🎯 **Smart Flexible Selection**: CSS selectors, XPath selectors, filter-based search, text search, regex search, and more.
|
180
184
|
- 🔍 **Find Similar Elements**: Automatically locate elements similar to found elements.
|
181
|
-
- 🤖 **MCP Server to be used with AI**: Built-in MCP server for AI-assisted Web Scraping and data extraction. The MCP server features custom, powerful capabilities that utilize Scrapling to extract targeted content before passing it to the AI (Claude/Cursor/etc), thereby speeding up operations and reducing costs by minimizing token usage.
|
185
|
+
- 🤖 **MCP Server to be used with AI**: Built-in MCP server for AI-assisted Web Scraping and data extraction. The MCP server features custom, powerful capabilities that utilize Scrapling to extract targeted content before passing it to the AI (Claude/Cursor/etc), thereby speeding up operations and reducing costs by minimizing token usage. ([demo video](https://www.youtube.com/watch?v=qyFk3ZNwOxE))
|
182
186
|
|
183
187
|
### High-Performance & battle-tested Architecture
|
184
188
|
- 🚀 **Lightning Fast**: Optimized performance outperforming most Python scraping libraries.
|
@@ -220,7 +224,7 @@ quotes = page.css('.quote .text::text')
|
|
220
224
|
|
221
225
|
# Advanced stealth mode (Keep the browser open until you finish)
|
222
226
|
with StealthySession(headless=True, solve_cloudflare=True) as session:
|
223
|
-
page = session.fetch('https://nopecha.com/demo/cloudflare')
|
227
|
+
page = session.fetch('https://nopecha.com/demo/cloudflare', google_search=False)
|
224
228
|
data = page.css('#padded_content a')
|
225
229
|
|
226
230
|
# Or use one-off request style, it opens the browser for this request, then closes it after finishing
|
@@ -229,7 +233,7 @@ data = page.css('#padded_content a')
|
|
229
233
|
|
230
234
|
# Full browser automation (Keep the browser open until you finish)
|
231
235
|
with DynamicSession(headless=True, disable_resources=False, network_idle=True) as session:
|
232
|
-
page = session.fetch('https://quotes.toscrape.com/')
|
236
|
+
page = session.fetch('https://quotes.toscrape.com/', load_dom=False)
|
233
237
|
data = page.xpath('//span[@class="text"]/text()') # XPath selector if you prefer it
|
234
238
|
|
235
239
|
# Or use one-off request style, it opens the browser for this request, then closes it after finishing
|
@@ -273,7 +277,7 @@ from scrapling.parser import Selector
|
|
273
277
|
|
274
278
|
page = Selector("<html>...</html>")
|
275
279
|
```
|
276
|
-
And it works
|
280
|
+
And it works precisely the same way!
|
277
281
|
|
278
282
|
### Async Session Management Examples
|
279
283
|
```python
|
@@ -322,20 +326,20 @@ scrapling extract stealthy-fetch 'https://nopecha.com/demo/cloudflare' captchas.
|
|
322
326
|
|
323
327
|
## Performance Benchmarks
|
324
328
|
|
325
|
-
Scrapling isn't just powerful—it's also blazing fast, and version 0.3
|
329
|
+
Scrapling isn't just powerful—it's also blazing fast, and the updates since version 0.3 deliver exceptional performance improvements across all operations!
|
326
330
|
|
327
331
|
### Text Extraction Speed Test (5000 nested elements)
|
328
332
|
|
329
333
|
| # | Library | Time (ms) | vs Scrapling |
|
330
334
|
|---|:-----------------:|:---------:|:------------:|
|
331
|
-
| 1 | Scrapling | 1.
|
332
|
-
| 2 | Parsel/Scrapy | 1.
|
333
|
-
| 3 | Raw Lxml | 2.
|
334
|
-
| 4 | PyQuery | 20.
|
335
|
-
| 5 | Selectolax |
|
336
|
-
| 6 |
|
337
|
-
| 7 |
|
338
|
-
| 8 | BS4 with html5lib |
|
335
|
+
| 1 | Scrapling | 1.92 | 1.0x |
|
336
|
+
| 2 | Parsel/Scrapy | 1.99 | 1.036x |
|
337
|
+
| 3 | Raw Lxml | 2.33 | 1.214x |
|
338
|
+
| 4 | PyQuery | 20.61 | ~11x |
|
339
|
+
| 5 | Selectolax | 80.65 | ~42x |
|
340
|
+
| 6 | BS4 with Lxml | 1283.21 | ~698x |
|
341
|
+
| 7 | MechanicalSoup | 1304.57 | ~679x |
|
342
|
+
| 8 | BS4 with html5lib | 3331.96 | ~1735x |
|
339
343
|
|
340
344
|
### Element Similarity & Text Search Performance
|
341
345
|
|
@@ -343,8 +347,8 @@ Scrapling's adaptive element finding capabilities significantly outperform alter
|
|
343
347
|
|
344
348
|
| Library | Time (ms) | vs Scrapling |
|
345
349
|
|-------------|:---------:|:------------:|
|
346
|
-
| Scrapling |
|
347
|
-
| AutoScraper | 10.
|
350
|
+
| Scrapling | 1.87 | 1.0x |
|
351
|
+
| AutoScraper | 10.24 | 5.476x |
|
348
352
|
|
349
353
|
|
350
354
|
> All benchmarks represent averages of 100+ runs. See [benchmarks.py](https://github.com/D4Vinci/Scrapling/blob/main/benchmarks.py) for methodology.
|
@@ -357,29 +361,33 @@ Scrapling requires Python 3.10 or higher:
|
|
357
361
|
pip install scrapling
|
358
362
|
```
|
359
363
|
|
360
|
-
|
361
|
-
|
362
|
-
If you are going to use any of the fetchers or their classes, then install browser dependencies with
|
363
|
-
```bash
|
364
|
-
scrapling install
|
365
|
-
```
|
366
|
-
|
367
|
-
This downloads all browsers with their system dependencies and fingerprint manipulation dependencies.
|
364
|
+
Starting with v0.3.2, this installation only includes the parser engine and its dependencies, without any fetchers or commandline dependencies.
|
368
365
|
|
369
366
|
### Optional Dependencies
|
370
367
|
|
371
|
-
|
372
|
-
```bash
|
373
|
-
pip install "scrapling[
|
374
|
-
|
375
|
-
|
376
|
-
```
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
```
|
368
|
+
1. If you are going to use any of the extra features below, the fetchers, or their classes, then you need to install fetchers' dependencies, and then install their browser dependencies with
|
369
|
+
```bash
|
370
|
+
pip install "scrapling[fetchers]"
|
371
|
+
|
372
|
+
scrapling install
|
373
|
+
```
|
374
|
+
|
375
|
+
This downloads all browsers with their system dependencies and fingerprint manipulation dependencies.
|
376
|
+
|
377
|
+
2. Extra features:
|
378
|
+
- Install the MCP server feature:
|
379
|
+
```bash
|
380
|
+
pip install "scrapling[ai]"
|
381
|
+
```
|
382
|
+
- Install shell features (Web Scraping shell and the `extract` command):
|
383
|
+
```bash
|
384
|
+
pip install "scrapling[shell]"
|
385
|
+
```
|
386
|
+
- Install everything:
|
387
|
+
```bash
|
388
|
+
pip install "scrapling[all]"
|
389
|
+
```
|
390
|
+
Don't forget that you need to install the browser dependencies with `scrapling install` after any of these extras (if you didn't already)
|
383
391
|
|
384
392
|
## Contributing
|
385
393
|
|
@@ -0,0 +1,44 @@
|
|
1
|
+
scrapling/__init__.py,sha256=c1t8r6IGEXC-PhNeFxFtoqNsiSv7B_9f_XBn52EWESg,1236
|
2
|
+
scrapling/cli.py,sha256=ooObP0VoYGxnskEJB6xFp23NREI_XDPJpsMSr9Sv8nk,26355
|
3
|
+
scrapling/fetchers.py,sha256=aYQUxp-0i-OBucdpdG6zjWCafTCgpXJdnJ0GIrm5GfA,26523
|
4
|
+
scrapling/parser.py,sha256=aJRqfuOxBHrM_Co9XHeuL6qYHgQTyi7zD1DoCA3mROY,57321
|
5
|
+
scrapling/py.typed,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
6
|
+
scrapling/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
scrapling/core/_html_utils.py,sha256=ki47v54SsTL5-khi1jcLkJqAHqEq19cuex-dqzXdbEI,20328
|
8
|
+
scrapling/core/_types.py,sha256=iXhi8LFkU4wjkGOjITdY1IDBEbn5rOxsl7xwEKT1L3I,895
|
9
|
+
scrapling/core/ai.py,sha256=v3wjtXJgBRUtImE6Q_Bf_FruOArJyraQk4kqsqhlU8k,35474
|
10
|
+
scrapling/core/custom_types.py,sha256=3kLrNDVm1vP3IziyyNjFVVQO_2bacwvm3hiK7h3gWjU,13634
|
11
|
+
scrapling/core/mixins.py,sha256=2iUVcN2XSAKGEvNmAM2Rr9axpZoxu0M2gIFEaFTO_Dg,3206
|
12
|
+
scrapling/core/shell.py,sha256=Um_CukPuX8K1VgEZsu_cXdsnoJTC_lnv4co2DBZXICU,21956
|
13
|
+
scrapling/core/storage.py,sha256=8lWMPut6lPpvn9iOkgy9ao11_g8FNkXq67wHKtU4uuM,6290
|
14
|
+
scrapling/core/translator.py,sha256=HLJngeRRw2M0eNe_f8AfQD64a49OECIEm5Df_WELVG4,5135
|
15
|
+
scrapling/core/utils/__init__.py,sha256=7B14TcrDVwSaH6BQrMnzb1NtFa4Om237dJcF9oe-lM0,204
|
16
|
+
scrapling/core/utils/_shell.py,sha256=zes71MmFTs7V9f0JFstaWcjQhKNZN6xvspu29YVQtRc,1707
|
17
|
+
scrapling/core/utils/_utils.py,sha256=ATy-wwz00U-alOGH-NGK-VoPNr1qYmUwEoWuqAHjDkg,3143
|
18
|
+
scrapling/engines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
|
+
scrapling/engines/constants.py,sha256=DP7yVRK1w1W4B1eXGeeKKQNDSo163FFXdPaxTy4adqw,4088
|
20
|
+
scrapling/engines/static.py,sha256=779pVJvCCjFSCKGN7a_9rAH55oO2SyO88cnVrE2DQy8,33204
|
21
|
+
scrapling/engines/_browsers/__init__.py,sha256=lu5RgcV4zYacRaKm28ph5TzjqAovTaQNNfXSgQGwDOU,123
|
22
|
+
scrapling/engines/_browsers/_base.py,sha256=vX75atq2QpsiCCpT4P2W4HQqs3P2RZWYHvDevh271kQ,12238
|
23
|
+
scrapling/engines/_browsers/_camoufox.py,sha256=RHQMlSrn4PKg0p53b5r7aGzWxacTjUZWlPOdRPDOvls,34890
|
24
|
+
scrapling/engines/_browsers/_config_tools.py,sha256=mEPA5SGrWq0dl15cDOT6sOsm5NHMD0vI0fuPttGpw-U,4610
|
25
|
+
scrapling/engines/_browsers/_controllers.py,sha256=GlYGt_LBTDjrWpD1zgKyyy9mynlEPR9MfnXJFUSDw2s,28246
|
26
|
+
scrapling/engines/_browsers/_page.py,sha256=ixwI5d-AIzfUGekRSCbPLJAckf673B7QCyaWO-xJa84,3688
|
27
|
+
scrapling/engines/_browsers/_validators.py,sha256=knkGvgpGeqtOWx4Us3pln1o4mJXfG4M-SWII080I9AE,6117
|
28
|
+
scrapling/engines/toolbelt/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
29
|
+
scrapling/engines/toolbelt/convertor.py,sha256=e_rMcW8ScdfxKO-V5Mk61blVzwuDgd82CpRds0Z2tMQ,13102
|
30
|
+
scrapling/engines/toolbelt/custom.py,sha256=uhMXa_LNcvvG3wZXBRKHXvqLqShMR9SHwc3bBv4UaQs,7664
|
31
|
+
scrapling/engines/toolbelt/fingerprints.py,sha256=hCxKUTwo8sy7iN9wk8OA5vGo9XOn6E365zvC1C6zWDE,2212
|
32
|
+
scrapling/engines/toolbelt/navigation.py,sha256=CWvM0KDuLPzvM6T8_yBq05nmB4scXshoEKVbhR4zEBk,3561
|
33
|
+
scrapling/engines/toolbelt/bypasses/navigator_plugins.js,sha256=tbnnk3nCXB6QEQnOhDlu3n-s7lnUTAkrUsjP6FDQIQg,2104
|
34
|
+
scrapling/engines/toolbelt/bypasses/notification_permission.js,sha256=poPM3o5WYgEX-EdiUfDCllpWfc3Umvw4jr2u6O6elus,237
|
35
|
+
scrapling/engines/toolbelt/bypasses/playwright_fingerprint.js,sha256=clzuf7KYcvDWYaKKxT_bkAoCT2fGsOcUw47948CHjAc,267
|
36
|
+
scrapling/engines/toolbelt/bypasses/screen_props.js,sha256=fZEuHMQ1-fYuxxUMoQXUvVWYUkPUbblkfMfpiLvBY7w,599
|
37
|
+
scrapling/engines/toolbelt/bypasses/webdriver_fully.js,sha256=hdJw4clRAJQqIdq5gIFC_eC-x7C1i2ab01KV5ylmOBs,728
|
38
|
+
scrapling/engines/toolbelt/bypasses/window_chrome.js,sha256=D7hqzNGGDorh8JVlvm2YIv7Bk2CoVkG55MDIdyqhT1w,6808
|
39
|
+
scrapling-0.3.3.dist-info/licenses/LICENSE,sha256=XHgu8DRuT7_g3Hb9Q18YGg8eShp6axPBacbnQxT_WWQ,1499
|
40
|
+
scrapling-0.3.3.dist-info/METADATA,sha256=QXhVgzdtzq9U5kEpv8kWSkGD64EQBoZfmR5QRkfTV1I,21948
|
41
|
+
scrapling-0.3.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
42
|
+
scrapling-0.3.3.dist-info/entry_points.txt,sha256=DHyt2Blxy0P5OE2HRcP95Wz9_xo2ERCDcNqrJjYS3o8,49
|
43
|
+
scrapling-0.3.3.dist-info/top_level.txt,sha256=Ud-yF-PC2U5HQ3nc5QwT7HSPdIpF1RuwQ_mYgBzHHIM,10
|
44
|
+
scrapling-0.3.3.dist-info/RECORD,,
|
scrapling-0.3.1.dist-info/RECORD
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
scrapling/__init__.py,sha256=XOnMVykdniMkfYjaVULcCsKRa4rkNrjQm8NWpSOBGzI,1236
|
2
|
-
scrapling/cli.py,sha256=jd1R-1ASOtZhV5D2qcYXoyfWYkQt11lIhuTKzET3XRU,26009
|
3
|
-
scrapling/fetchers.py,sha256=l-N3tDfpM3sbCAvUNZdePMTbYnwnDFXZ3XxOFLqWmPE,26030
|
4
|
-
scrapling/parser.py,sha256=jwr9QC-L3BLpoOoZ15tSv7FBKMXybpE-ekcXsfvDW_c,58357
|
5
|
-
scrapling/py.typed,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
6
|
-
scrapling/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
scrapling/core/_html_utils.py,sha256=0YfzgIV13cd_RxWAHpyaTrCZ5vv9t_Vmkrh43CZC2p0,20386
|
8
|
-
scrapling/core/_types.py,sha256=iXhi8LFkU4wjkGOjITdY1IDBEbn5rOxsl7xwEKT1L3I,895
|
9
|
-
scrapling/core/ai.py,sha256=6Cf-3AG8KtuGLxe_N8ruHau-8NWYgkylDGp3KNxjWbA,35515
|
10
|
-
scrapling/core/custom_types.py,sha256=kYBNz8xVj9XmK2n8w0nuQY2gECM7gGSW6uUH8ZAjG1c,14038
|
11
|
-
scrapling/core/mixins.py,sha256=AtOzY7Wp5vLBqnH4Ur-Id_0__sxrgsDsPOammogMyCY,3684
|
12
|
-
scrapling/core/shell.py,sha256=IM6dOtc3diUcg_nU5q-lcX8JTLzaA_E_9k4oz7UDGhQ,23664
|
13
|
-
scrapling/core/storage.py,sha256=NFRIM-i7lllpwPQWH_Lfyrb-mk52liRFkLOoiyMBRbI,6376
|
14
|
-
scrapling/core/translator.py,sha256=lxX6h5I5pN0K0yLyfYAlMPNgToroRnEDD5qL-h9IU2c,5301
|
15
|
-
scrapling/core/utils.py,sha256=Fi_Lv8rOhWhjXWV8Xccl39fyxri8A5oXfE1iqTBdHFU,3325
|
16
|
-
scrapling/engines/__init__.py,sha256=Vru520eSiG1PeBlWE2LCFZoE0BaWkAhE1RKTfXjX8tI,414
|
17
|
-
scrapling/engines/constants.py,sha256=w-mzpCQKHSQt0SwfeDY7ztdvKp9StKhp3AqerkRYRJ0,4186
|
18
|
-
scrapling/engines/static.py,sha256=eDTMUUP1Vqrw_kMhIykUgcGLQvPa83-ojakIkTfDJSQ,33867
|
19
|
-
scrapling/engines/_browsers/__init__.py,sha256=lu5RgcV4zYacRaKm28ph5TzjqAovTaQNNfXSgQGwDOU,123
|
20
|
-
scrapling/engines/_browsers/_camoufox.py,sha256=dYlKQULv_1DvVSOHcQC0rfE20wegO_jmrs1TshUvkW4,33530
|
21
|
-
scrapling/engines/_browsers/_config_tools.py,sha256=Jg4BkvWdRBh6VeMTfKJkjkuOSPe7VFvQ114Uj-ZXssU,4548
|
22
|
-
scrapling/engines/_browsers/_controllers.py,sha256=TtQYiL8fsh9-mrnQkjHruyNuyUozqklfryukFjojxAw,26912
|
23
|
-
scrapling/engines/_browsers/_page.py,sha256=VlHQsUTMpZhpM_0jLPdGy4JEiJMQ0YV8eE37kJUXpDk,2797
|
24
|
-
scrapling/engines/_browsers/_validators.py,sha256=uQRd6Rk2PHccxwxdmYGKHWRG3Z5WUrebmjRdAc-fwwk,6170
|
25
|
-
scrapling/engines/toolbelt/__init__.py,sha256=d21D8tuu2vpGY91o4AzMrNK3nKzy0JiK3pz7jjfLIMg,407
|
26
|
-
scrapling/engines/toolbelt/convertor.py,sha256=kAM8Sffq3PBK6i3VTbn50uidTZmqTQZVcLzq18-YdJ0,12191
|
27
|
-
scrapling/engines/toolbelt/custom.py,sha256=aWcxDUDZ5qogWHu7W2F2rUFMEDFiHO0QslTRW0MLPDA,10790
|
28
|
-
scrapling/engines/toolbelt/fingerprints.py,sha256=MH5-xBmhtcjLPm0G1q0iXQFXGcUOvmY061RniXTsoTA,2288
|
29
|
-
scrapling/engines/toolbelt/navigation.py,sha256=bw6-rfZPMxtjLyAm58KcQizrxEHNW4zvLi65-ymc6Dw,5145
|
30
|
-
scrapling/engines/toolbelt/bypasses/navigator_plugins.js,sha256=tbnnk3nCXB6QEQnOhDlu3n-s7lnUTAkrUsjP6FDQIQg,2104
|
31
|
-
scrapling/engines/toolbelt/bypasses/notification_permission.js,sha256=poPM3o5WYgEX-EdiUfDCllpWfc3Umvw4jr2u6O6elus,237
|
32
|
-
scrapling/engines/toolbelt/bypasses/playwright_fingerprint.js,sha256=clzuf7KYcvDWYaKKxT_bkAoCT2fGsOcUw47948CHjAc,267
|
33
|
-
scrapling/engines/toolbelt/bypasses/screen_props.js,sha256=fZEuHMQ1-fYuxxUMoQXUvVWYUkPUbblkfMfpiLvBY7w,599
|
34
|
-
scrapling/engines/toolbelt/bypasses/webdriver_fully.js,sha256=hdJw4clRAJQqIdq5gIFC_eC-x7C1i2ab01KV5ylmOBs,728
|
35
|
-
scrapling/engines/toolbelt/bypasses/window_chrome.js,sha256=D7hqzNGGDorh8JVlvm2YIv7Bk2CoVkG55MDIdyqhT1w,6808
|
36
|
-
scrapling-0.3.1.dist-info/licenses/LICENSE,sha256=XHgu8DRuT7_g3Hb9Q18YGg8eShp6axPBacbnQxT_WWQ,1499
|
37
|
-
scrapling-0.3.1.dist-info/METADATA,sha256=DE-JEFGhRVgFmpUOEZP_4JTBhd8ALWhO71-PI-uU068,20809
|
38
|
-
scrapling-0.3.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
39
|
-
scrapling-0.3.1.dist-info/entry_points.txt,sha256=DHyt2Blxy0P5OE2HRcP95Wz9_xo2ERCDcNqrJjYS3o8,49
|
40
|
-
scrapling-0.3.1.dist-info/top_level.txt,sha256=Ud-yF-PC2U5HQ3nc5QwT7HSPdIpF1RuwQ_mYgBzHHIM,10
|
41
|
-
scrapling-0.3.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|