Skip to content

Commit 560a2fe

Browse files
authored
Merge pull request #963 from ScrapeGraphAI/pre/beta
Pre/beta
2 parents 0c34b76 + b1b8579 commit 560a2fe

File tree

63 files changed

+4421
-1137
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+4421
-1137
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,3 +192,6 @@ cython_debug/
192192
.DS_Store
193193

194194
dev.ipynb
195+
196+
# CodeBeaver reports and artifacts
197+
.codebeaver

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
1+
## [1.47.0-beta.1](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.46.0...v1.47.0-beta.1) (2025-04-15)
2+
3+
4+
### Features
5+
6+
* add new proxy rotation ([8913d8d](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/8913d8d3af3a2809d3ddcbfa09cbf2c9982a19cd))
7+
8+
9+
### CI
10+
11+
* **release:** 1.44.0-beta.1 [skip ci] ([5e944cc](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/5e944cc573f62585dbf3366aa840c997847523d1))
12+
113
## [1.46.0](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.45.0...v1.46.0) (2025-03-27)
214

315

16+
417
### Features
518

19+
* add new proxy rotation ([8913d8d](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/8913d8d3af3a2809d3ddcbfa09cbf2c9982a19cd))
20+
621
* add new logo ([c085d6c](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/c085d6c7ffcbf446439de97c9f88f8eadba5909c))
722

823
## [1.45.0](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.44.0...v1.45.0) (2025-03-27)

examples/ScrapegraphAI_cookbook.ipynb

Lines changed: 902 additions & 903 deletions
Large diffs are not rendered by default.

examples/code_generator_graph/ollama/code_generator_graph_ollama.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
Basic example of scraping pipeline using Code Generator with schema
33
"""
44

5-
import json
65
from typing import List
76

87
from dotenv import load_dotenv

examples/custom_graph/ollama/custom_graph_ollama.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,13 @@
22
Example of custom graph using existing nodes
33
"""
44

5-
import os
6-
75
from langchain_openai import ChatOpenAI, OpenAIEmbeddings
86

97
from scrapegraphai.graphs import BaseGraph
108
from scrapegraphai.nodes import (
119
FetchNode,
1210
GenerateAnswerNode,
1311
ParseNode,
14-
RAGNode,
1512
RobotsNode,
1613
)
1714

examples/extras/chromium_selenium.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
ChromiumLoader,
1010
)
1111
from scrapegraphai.graphs import SmartScraperGraph
12-
from scrapegraphai.utils import prettify_exec_info
1312

1413
# Load environment variables for API keys
1514
load_dotenv()

examples/extras/no_cut.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"""
44

55
import json
6-
import os
76

87
from scrapegraphai.graphs import SmartScraperGraph
98
from scrapegraphai.utils import prettify_exec_info

examples/extras/serch_graph_scehma.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Ceos(BaseModel):
4040
# ************************************************
4141

4242
search_graph = SearchGraph(
43-
prompt=f"Who is the ceo of Appke?",
43+
prompt="Who is the ceo of Appke?",
4444
schema=Ceos,
4545
config=graph_config,
4646
)

examples/script_generator_graph/ollama/script_multi_generator_ollama.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
Basic example of scraping pipeline using ScriptCreatorGraph
33
"""
44

5-
import os
6-
75
from dotenv import load_dotenv
86

97
from scrapegraphai.graphs import ScriptCreatorMultiGraph

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
[project]
22
name = "scrapegraphai"
33

4-
version = "1.46.0"
5-
4+
version = "1.47.0b1"
65

76

87
description = "A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines."

0 commit comments

Comments
 (0)