Skip to content

Commit

Permalink
Merge pull request #15 from DLH06/feat/readme
Browse files Browse the repository at this point in the history
Remove redundant 'engine' in google search
  • Loading branch information
alexbarron authored Jul 16, 2024
2 parents 44e41d3 + c128646 commit cdcfb0e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -194,8 +194,7 @@ import serpapi
client = serpapi.Client(api_key=os.getenv("API_KEY"))
results = client.search({
'engine': 'google',
'q': 'coffee',
'engine': 'google',
'q': 'coffee'
})
```
- API Documentation: [serpapi.com/search-api](https://serpapi.com/search-api)
Expand Down

0 comments on commit cdcfb0e

Please sign in to comment.