Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gaur3009
/
Scaper_search
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1b58f37
Scaper_search
/
search.py
gaur3009
Create search.py
e1f9ee6
verified
2 months ago
raw
Copy download link
history
blame
Safe
178 Bytes
from
googlesearch
import
search
def
search_google
(
query, num_results=
5
):
"""Search Google and return list of URLs."""
return
list
(search(query, num_results=num_results))