scrapery 0.1.0__tar.gz

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.
@@ -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,15 @@
1
+ # scrapery
2
+
3
+ **scrapery** is a **fast, function-based HTML extraction library** with support for both **CSS and XPath** selectors, robust fetching, and easy chaining.
4
+
5
+ ## Features
6
+ - 🚀 Faster than BeautifulSoup (uses lxml + parsel)
7
+ - 🔎 Full support for both CSS and XPath
8
+ - 🧩 Complex selectors & chaining
9
+ - 🛡️ Robust fetching with retries, backoff, proxies, and timeouts
10
+ - 🐍 Function-based API for easy embedding
11
+
12
+ ## Installation
13
+
14
+ ```bash
15
+ pip install scrapery
File without changes
File without changes
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,11 @@
1
+ README.md
2
+ setup.py
3
+ scrapery/__init__.py
4
+ scrapery/net.py
5
+ scrapery/selectors.py
6
+ scrapery.egg-info/PKG-INFO
7
+ scrapery.egg-info/SOURCES.txt
8
+ scrapery.egg-info/dependency_links.txt
9
+ scrapery.egg-info/not-zip-safe
10
+ scrapery.egg-info/requires.txt
11
+ scrapery.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ httpx>=0.27.0
2
+ parsel>=1.9.1
3
+ lxml>=5.2.0
4
+ charset-normalizer>=3.3.0
@@ -0,0 +1 @@
1
+ scrapery
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,42 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ # Read README with UTF-8 encoding to avoid UnicodeDecodeError on Windows
4
+ with open("README.md", encoding="utf-8") as f:
5
+ long_description = f.read()
6
+
7
+ setup(
8
+ name="scrapery", # Package name
9
+ version="0.1.0", # Current version
10
+ author="Ramesh Chandra",
11
+ author_email="rameshsofter@gmail.com",
12
+ description="Fast, function-based HTML extraction library with CSS, XPath, chaining, and robust fetching.",
13
+ long_description=long_description,
14
+ long_description_content_type="text/markdown",
15
+ url="https://github.com/yourusername/scrapery", # Replace with your repo
16
+ project_urls={
17
+ "Bug Tracker": "https://github.com/yourusername/scrapery/issues",
18
+ "Documentation": "https://github.com/yourusername/scrapery#readme",
19
+ },
20
+ classifiers=[
21
+ "Development Status :: 3 - Alpha",
22
+ "Intended Audience :: Developers",
23
+ "Topic :: Software Development :: Libraries :: Python Modules",
24
+ "Programming Language :: Python :: 3",
25
+ "Programming Language :: Python :: 3.9",
26
+ "Programming Language :: Python :: 3.10",
27
+ "Programming Language :: Python :: 3.11",
28
+ "License :: OSI Approved :: MIT License",
29
+ "Operating System :: OS Independent",
30
+ ],
31
+ license="MIT",
32
+ packages=find_packages(where=".", include=["scrapery", "scrapery.*"]),
33
+ python_requires=">=3.9",
34
+ install_requires=[
35
+ "httpx>=0.27.0",
36
+ "parsel>=1.9.1",
37
+ "lxml>=5.2.0",
38
+ "charset-normalizer>=3.3.0",
39
+ ],
40
+ include_package_data=True,
41
+ zip_safe=False,
42
+ )