Skip to content

Commit d0976dd

Browse files
authored
Merge branch 'main' into temp-1
2 parents e5ac020 + d116b77 commit d0976dd

27 files changed

+63
-171
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## [1.22.0-beta.3](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.22.0-beta.2...v1.22.0-beta.3) (2024-09-25)
22

33

4+
45
### Bug Fixes
56

67
* update to pydantic documentation ([76ce257](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/76ce257efb9d9f46c0693472a1fe54b39e4eb1ef))
@@ -15,6 +16,7 @@
1516
## [1.22.0-beta.1](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.21.2-beta.2...v1.22.0-beta.1) (2024-09-24)
1617

1718

19+
1820
### Features
1921

2022
* add info to the dictionary for toghtherai ([3b5ee76](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/3b5ee767cbb91cb0ca8e4691195d16c3b57140bb))

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "scrapegraphai"
33

44
version = "1.22.0b3"
55

6+
67
description = "A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines."
78
authors = [
89
{ name = "Marco Vinciguerra", email = "[email protected]" },

scrapegraphai/graphs/csv_scraper_graph.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
Module for creating the smart scraper
33
"""
4-
54
from typing import Optional
65
from pydantic import BaseModel
76
from .base_graph import BaseGraph

scrapegraphai/graphs/csv_scraper_multi_graph.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
CSVScraperMultiGraph Module
33
"""
4-
54
from copy import deepcopy
65
from typing import List, Optional
76
from pydantic import BaseModel

scrapegraphai/graphs/json_scraper_multi_graph.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
JSONScraperMultiGraph Module
33
"""
4-
54
from copy import deepcopy
65
from typing import List, Optional
76
from pydantic import BaseModel

scrapegraphai/graphs/omni_scraper_graph.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
OmniScraperGraph Module
33
"""
4-
54
from typing import Optional
65
from pydantic import BaseModel
76
from .base_graph import BaseGraph

scrapegraphai/graphs/omni_search_graph.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
OmniSearchGraph Module
33
"""
4-
54
from copy import deepcopy
65
from typing import Optional
76
from pydantic import BaseModel

scrapegraphai/graphs/pdf_scraper_graph.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
"""
32
PDFScraperGraph Module
43
"""

scrapegraphai/graphs/pdf_scraper_multi_graph.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
PdfScraperMultiGraph Module
33
"""
4-
54
from copy import deepcopy
65
from typing import List, Optional
76
from pydantic import BaseModel

scrapegraphai/graphs/script_creator_multi_graph.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
ScriptCreatorMultiGraph Module
33
"""
4-
54
from typing import List, Optional
65
from pydantic import BaseModel
76
from .base_graph import BaseGraph

0 commit comments

Comments
 (0)