Skip to content

Commit 8901abc

Browse files
committed
Changes Updated
1 parent c48ad04 commit 8901abc

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Scripts/Web_Scrappers/Google Search Using Python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
> To install the google module, we can use the pip package installer.
44
55
```
6-
pip install google
6+
pip install -r requirements.txt
77
```
88

99
> We are using search() function from the googlesearch module.
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
# We will be using the search() function from the googlesearch module.
12
from googlesearch import search
23

3-
query = input()
4+
query = input("Enter your query : ")
5+
# This is the text that you want to search for.
46

57
for item in search(query, tld = "co.in", num=10, stop = 10, pause = 2):
68
print(item)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
google

0 commit comments

Comments
 (0)