Skip to content

Commit 36875b6

Browse files
Merge remote-tracking branch 'refs/remotes/origin/pre/beta' into pre/beta
2 parents 46195d6 + 91ede93 commit 36875b6

File tree

292 files changed

+945
-2637
lines changed

Some content is hidden

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

292 files changed

+945
-2637
lines changed

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,52 @@
1+
## [1.26.0-beta.14](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.26.0-beta.13...v1.26.0-beta.14) (2024-10-10)
2+
3+
4+
### Features
5+
6+
* refactoring fetch_node ([39a029e](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/39a029ed9a8cd7c2277ba1386b976738e99d231b))
7+
8+
## [1.26.0-beta.13](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.26.0-beta.12...v1.26.0-beta.13) (2024-10-10)
9+
10+
11+
### Features
12+
13+
* update chromium loader ([4f816f3](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/4f816f3b04974e90ca4208158f05724cfe68ffb8))
14+
15+
## [1.26.0-beta.12](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.26.0-beta.11...v1.26.0-beta.12) (2024-10-09)
16+
17+
18+
### Bug Fixes
19+
20+
* nodes prompt ([8753537](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/8753537ecd2a0ba480cda482b6dc50c090b418d6))
21+
22+
## [1.26.0-beta.11](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.26.0-beta.10...v1.26.0-beta.11) (2024-10-09)
23+
24+
25+
### Bug Fixes
26+
27+
* refactoring prompts ([c655642](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/c65564257798a5ccdc2bdf92487cd9b069e6d951))
28+
29+
## [1.26.0-beta.10](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.26.0-beta.9...v1.26.0-beta.10) (2024-10-09)
30+
31+
32+
### Bug Fixes
33+
34+
* removed pdf_scraper graph and created document scraper ([a57da96](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/a57da96175a09a16d990eeee679988d10832ce13))
35+
36+
## [1.26.0-beta.9](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.26.0-beta.8...v1.26.0-beta.9) (2024-10-08)
37+
38+
39+
### Bug Fixes
40+
41+
* pyproject.toml ([3b27c5e](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/3b27c5e88c0b0744438e8b604f40929e22d722bc))
42+
43+
## [1.26.0-beta.8](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.26.0-beta.7...v1.26.0-beta.8) (2024-10-08)
44+
45+
46+
### Features
47+
48+
* undected_chromedriver support ([80ece21](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/80ece2179ac47a7ea42fbae4b61504a49ca18daa))
49+
150
## [1.26.0-beta.7](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.26.0-beta.6...v1.26.0-beta.7) (2024-10-07)
251

352

examples/anthropic/code_generator_graph_anthropic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
Basic example of scraping pipeline using Code Generator with schema
33
"""
4-
54
import os, json
65
from typing import List
76
from dotenv import load_dotenv

examples/anthropic/csv_scraper_anthropic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
Basic example of scraping pipeline using CSVScraperGraph from CSV documents
33
"""
4-
54
import os
65
from dotenv import load_dotenv
76
import pandas as pd

examples/anthropic/csv_scraper_graph_multi_anthropic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
Basic example of scraping pipeline using CSVScraperMultiGraph from CSV documents
33
"""
4-
54
import os
65
from dotenv import load_dotenv
76
import pandas as pd

examples/anthropic/custom_graph_anthropic.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
"""
22
Example of custom graph using existing nodes
33
"""
4-
54
import os
65
from dotenv import load_dotenv
7-
86
from langchain_anthropic import ChatAnthropic
97
from scrapegraphai.graphs import BaseGraph
108
from scrapegraphai.nodes import FetchNode, ParseNode, GenerateAnswerNode, RobotsNode

examples/anthropic/json_scraper_anthropic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
"""
22
Basic example of scraping pipeline using JSONScraperGraph from JSON documents
33
"""
4-
54
import os
65
from dotenv import load_dotenv
76
from scrapegraphai.graphs import JSONScraperGraph
87
from scrapegraphai.utils import convert_to_csv, convert_to_json, prettify_exec_info
8+
99
load_dotenv()
1010

1111
# ************************************************

examples/anthropic/pdf_scraper_graph_anthropic.py

Lines changed: 0 additions & 39 deletions
This file was deleted.

examples/anthropic/pdf_scraper_multi_anthropic.py

Lines changed: 0 additions & 71 deletions
This file was deleted.

examples/anthropic/rate_limit_anthropic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
Basic example of scraping pipeline using SmartScraper while setting an API rate limit.
33
"""
4-
54
import os
65
from dotenv import load_dotenv
76
from scrapegraphai.graphs import SmartScraperGraph

examples/anthropic/scrape_plain_text_anthropic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""
22
Basic example of scraping pipeline using SmartScraper from text
33
"""
4-
54
import os
65
from dotenv import load_dotenv
76
from scrapegraphai.graphs import SmartScraperGraph

0 commit comments

Comments
 (0)