Skip to content

Commit b6f0f2a

Browse files
committed
build: pump up version and deps
1 parent 9af644e commit b6f0f2a

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

agent-skill/Scrapling-Skill/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: scrapling-official
33
description: Scrape web pages using Scrapling with anti-bot bypass (like Cloudflare Turnstile), stealth headless browsing, spiders framework, adaptive scraping, and JavaScript rendering. Use when asked to scrape, crawl, or extract data from websites; web_fetch fails; the site has anti-bot protections; write Python code to scrape/crawl; or write spiders.
4-
version: "0.4.7"
4+
version: "0.4.8"
55
license: Complete terms in LICENSE.txt
66
metadata:
77
homepage: "https://scrapling.readthedocs.io/en/latest/index.html"
@@ -40,7 +40,7 @@ Blazing fast crawls with real-time stats and streaming. Built by Web Scrapers fo
4040

4141
Create a virtual Python environment through any way available, like `venv`, then inside the environment do:
4242

43-
`pip install "scrapling[all]>=0.4.7"`
43+
`pip install "scrapling[all]>=0.4.8"`
4444

4545
Then do this to download all the browsers' dependencies:
4646

agent-skill/Scrapling-Skill/examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ All examples collect **all 100 quotes across 10 pages**.
99
Make sure Scrapling is installed:
1010

1111
```bash
12-
pip install "scrapling[all]>=0.4.7"
12+
pip install "scrapling[all]>=0.4.8"
1313
scrapling install --force
1414
```
1515

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "scrapling"
77
# Static version instead of a dynamic version so we can get better layer caching while building docker, check the docker file to understand
8-
version = "0.4.7"
8+
version = "0.4.8"
99
description = "Scrapling is an undetectable, powerful, flexible, high-performance Python library that makes Web Scraping easy and effortless as it should be!"
1010
readme = {file = "README.md", content-type = "text/markdown"}
1111
license = {file = "LICENSE"}
@@ -61,7 +61,7 @@ classifiers = [
6161
"Typing :: Typed",
6262
]
6363
dependencies = [
64-
"lxml>=6.0.3",
64+
"lxml>=6.1.0",
6565
"cssselect>=1.4.0",
6666
"orjson>=3.11.8",
6767
"tld>=0.13.2",

scrapling/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = "Karim Shoair (karim.shoair@pm.me)"
2-
__version__ = "0.4.7"
2+
__version__ = "0.4.8"
33
__copyright__ = "Copyright (c) 2024 Karim Shoair"
44

55
from typing import Any, TYPE_CHECKING

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
"mimeType": "image/png"
1515
}
1616
],
17-
"version": "0.4.7",
17+
"version": "0.4.8",
1818
"packages": [
1919
{
2020
"registryType": "pypi",
2121
"identifier": "scrapling",
22-
"version": "0.4.7",
22+
"version": "0.4.8",
2323
"runtimeHint": "uvx",
2424
"packageArguments": [
2525
{

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = scrapling
3-
version = 0.4.7
3+
version = 0.4.8
44
author = Karim Shoair
55
author_email = karim.shoair@pm.me
66
description = Scrapling is an undetectable, powerful, flexible, high-performance Python library that makes Web Scraping easy and effortless as it should be!

0 commit comments

Comments
 (0)