Skip to content

Commit 7f0e1d2

Browse files
authored
Merge branch 'main' into pre/beta
2 parents a86e7d6 + fde878f commit 7f0e1d2

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

Diff for: CHANGELOG.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
## [1.32.0-beta.5](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.32.0-beta.4...v1.32.0-beta.5) (2024-12-02)
2+
## [1.32.0](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.31.1...v1.32.0) (2024-12-02)
23

34

4-
### Features
55

6-
* add API integration ([ba6e931](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/ba6e931caf5f3d4a3b9c31ec4655fe7a9f0e214c))
76

87
## [1.32.0-beta.4](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.32.0-beta.3...v1.32.0-beta.4) (2024-12-02)
98

Diff for: README.md

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
<a href="https://trendshift.io/repositories/9761" target="_blank"><img src="https://trendshift.io/api/badge/repositories/9761" alt="VinciGit00%2FScrapegraph-ai | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
1717
<p align="center">
1818

19+
### Check our Website
20+
[ScrapeGraphAI Official website](https://scrapegraphai.com/)
21+
1922
ScrapeGraphAI is a *web scraping* python library that uses LLM and direct graph logic to create scraping pipelines for websites and local documents (XML, HTML, JSON, Markdown, etc.).
2023

2124
Just say which information you want to extract and the library will do it for you!

Diff for: pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ version = "1.32.0b5"
77

88

99

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

Diff for: scrapegraphai/docloaders/chromium.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ async def ascrape_playwright(self, url: str) -> str:
137137
)
138138
finally:
139139
if "browser" in locals():
140-
await browser.close()
140+
141141

142142
async def ascrape_with_js_support(self, url: str) -> str:
143143
"""

Diff for: scrapegraphai/graphs/smart_scraper_graph.py

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from ..prompts import REGEN_ADDITIONAL_INFO
1717
from scrapegraph_py import SyncClient
1818

19-
2019
class SmartScraperGraph(AbstractGraph):
2120
"""
2221
SmartScraper is a scraping pipeline that automates the process of

0 commit comments

Comments
 (0)