https://github.com/montyanderson/google-suggestions
Scrape autocomplete suggestions from Google Search
https://github.com/montyanderson/google-suggestions
Last synced: 3 months ago
JSON representation
Scrape autocomplete suggestions from Google Search
- Host: GitHub
- URL: https://github.com/montyanderson/google-suggestions
- Owner: montyanderson
- License: mit
- Created: 2016-10-12T10:54:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-18T10:14:20.000Z (over 8 years ago)
- Last Synced: 2024-04-27T00:23:31.133Z (about 1 year ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# google-suggestions
Scrape autocomplete suggestions from Google Search[](https://travis-ci.org/montyanderson/google-suggestions)
```
npm install google-suggestions --save
`````` javascript
const suggestions = require("google-suggestions");suggestions("my hat")
.then(response => console.log(response));```
``` javascript
[ 'i want my hat back',
'this is not my hat',
'all around my hat',
'wherever i lay my hat' ]
```