Skip to content

Commit 7cb8f15

Browse files
committed
Fixes typo
1 parent 46ecbdc commit 7cb8f15

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# langchain-scraperapi
1+
# Langchain ScraperAPI Integration
22

3-
This package contains the LangChain integration with ScraperAPI
3+
This package contains the LangChain integration with ScraperAPI.
44

55
## Installation
66

@@ -30,7 +30,7 @@ tool.invoke("url: http://example.com", "output_format": "markdown")
3030
```python
3131
from langchain_scraperapi import ScraperAPIGoogleSearchTool
3232

33-
tool = ScraperAPITool()
33+
tool = ScraperAPIGoogleSearchTool()
3434
tool.invoke("query": "What is ScraperAPI?")
3535
```
3636

@@ -41,6 +41,8 @@ tool.invoke("query": "What is ScraperAPI?")
4141
```python
4242
from langchain_scraperapi import ScraperAPIAmazonSearchTool
4343

44-
tool = ScraperAPITool()
44+
tool = ScraperAPIAmazonSearchTool()
4545
tool.invoke("query": "office chairs", "output_format": "csv")
46-
```
46+
```
47+
48+
For a full list of parameters and more information, refer to the ScraperAPI Python docs: https://docs.scraperapi.com/python/making-requests/structured-data-collection-method

0 commit comments

Comments
 (0)