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...
gaur3009
commited on
Jul 13
Commit
e1f9ee6
Β·
verified
Β·
1 Parent(s):
1349210
Create search.py
Browse files
Files changed (1)
hide
show
search.py
+5
-0
search.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
from googlesearch import search
2
+
3
+
def search_google(query, num_results=5):
4
+
"""Search Google and return list of URLs."""
5
+
return list(search(query, num_results=num_results))