From da9a93829085ea2ae534fd8b886a3d4729a2256d Mon Sep 17 00:00:00 2001 From: Huy Dao <43235089+DLH06@users.noreply.github.com> Date: Sat, 13 Jul 2024 14:31:01 +0700 Subject: [PATCH 1/3] remove redundant 'engine' in google search --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 0abfb2d..7b975da 100644 --- a/README.md +++ b/README.md @@ -195,7 +195,6 @@ client = serpapi.Client(api_key=os.getenv("API_KEY")) results = client.search({ 'engine': 'google', 'q': 'coffee', - 'engine': 'google', }) ``` - API Documentation: [serpapi.com/search-api](https://serpapi.com/search-api) From 4ad86805c21e361722fceabaa1bf745dc82b3780 Mon Sep 17 00:00:00 2001 From: Alex Barron Date: Tue, 16 Jul 2024 09:02:55 +0100 Subject: [PATCH 2/3] Remove trailing comma --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b975da..0c696f6 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ import serpapi client = serpapi.Client(api_key=os.getenv("API_KEY")) results = client.search({ 'engine': 'bing', - 'q': 'coffee', + 'q': 'coffee' }) ``` - API Documentation: [serpapi.com/bing-search-api](https://serpapi.com/bing-search-api) From c128646b79896609fe363e3ee59e6dddea957a29 Mon Sep 17 00:00:00 2001 From: Alex Barron Date: Tue, 16 Jul 2024 09:04:15 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c696f6..668055b 100644 --- a/README.md +++ b/README.md @@ -194,7 +194,7 @@ import serpapi client = serpapi.Client(api_key=os.getenv("API_KEY")) results = client.search({ 'engine': 'google', - 'q': 'coffee', + 'q': 'coffee' }) ``` - API Documentation: [serpapi.com/search-api](https://serpapi.com/search-api)