scrapery 0.1.0__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.
scrapery/__init__.py ADDED
File without changes
scrapery/net.py ADDED
File without changes
scrapery/selectors.py ADDED
File without changes
@@ -0,0 +1,52 @@
1
+ Metadata-Version: 2.4
2
+ Name: scrapery
3
+ Version: 0.1.0
4
+ Summary: Fast, function-based HTML extraction library with CSS, XPath, chaining, and robust fetching.
5
+ Home-page: https://github.com/yourusername/scrapery
6
+ Author: Ramesh Chandra
7
+ Author-email: rameshsofter@gmail.com
8
+ License: MIT
9
+ Project-URL: Bug Tracker, https://github.com/yourusername/scrapery/issues
10
+ Project-URL: Documentation, https://github.com/yourusername/scrapery#readme
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: License :: OSI Approved :: MIT License
19
+ Classifier: Operating System :: OS Independent
20
+ Requires-Python: >=3.9
21
+ Description-Content-Type: text/markdown
22
+ Requires-Dist: httpx>=0.27.0
23
+ Requires-Dist: parsel>=1.9.1
24
+ Requires-Dist: lxml>=5.2.0
25
+ Requires-Dist: charset-normalizer>=3.3.0
26
+ Dynamic: author
27
+ Dynamic: author-email
28
+ Dynamic: classifier
29
+ Dynamic: description
30
+ Dynamic: description-content-type
31
+ Dynamic: home-page
32
+ Dynamic: license
33
+ Dynamic: project-url
34
+ Dynamic: requires-dist
35
+ Dynamic: requires-python
36
+ Dynamic: summary
37
+
38
+ # scrapery
39
+
40
+ **scrapery** is a **fast, function-based HTML extraction library** with support for both **CSS and XPath** selectors, robust fetching, and easy chaining.
41
+
42
+ ## Features
43
+ - 🚀 Faster than BeautifulSoup (uses lxml + parsel)
44
+ - 🔎 Full support for both CSS and XPath
45
+ - 🧩 Complex selectors & chaining
46
+ - 🛡️ Robust fetching with retries, backoff, proxies, and timeouts
47
+ - 🐍 Function-based API for easy embedding
48
+
49
+ ## Installation
50
+
51
+ ```bash
52
+ pip install scrapery
@@ -0,0 +1,7 @@
1
+ scrapery/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ scrapery/net.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ scrapery/selectors.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ scrapery-0.1.0.dist-info/METADATA,sha256=skjF-mY60JPF1Bjri6iCrYGTg-gcvaYuyDTCf8qTUsQ,1840
5
+ scrapery-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
6
+ scrapery-0.1.0.dist-info/top_level.txt,sha256=oDJfh1QWKLJXdAFHUddsNg4XsNKJ1rn0hA4Ho5VtZTk,9
7
+ scrapery-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ scrapery