This code, according to "geeksforgeeks" should return 10 results however for me it is only returning one. Any thoughts?
try:
from googlesearch import search
except ImportError:
print("No module named 'google' found")
query = "dogs"
for j in search(query, tld="co.in", num=10, stop=1, pause=2):
print(j)
stop=1mean?stop=5?