Skip to content

Commit cdcfb0e

Browse files
authored
Merge pull request #15 from DLH06/feat/readme
Remove redundant 'engine' in google search
2 parents 44e41d3 + c128646 commit cdcfb0e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ import serpapi
6464
client = serpapi.Client(api_key=os.getenv("API_KEY"))
6565
results = client.search({
6666
'engine': 'bing',
67-
'q': 'coffee',
67+
'q': 'coffee'
6868
})
6969
```
7070
- API Documentation: [serpapi.com/bing-search-api](https://serpapi.com/bing-search-api)
@@ -194,8 +194,7 @@ import serpapi
194194
client = serpapi.Client(api_key=os.getenv("API_KEY"))
195195
results = client.search({
196196
'engine': 'google',
197-
'q': 'coffee',
198-
'engine': 'google',
197+
'q': 'coffee'
199198
})
200199
```
201200
- API Documentation: [serpapi.com/search-api](https://serpapi.com/search-api)

0 commit comments

Comments
 (0)