Skip to content

Commit 83b995b

Browse files
committed
Requested Changes Applied
1 parent 8901abc commit 83b995b

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ We now have a section for miscellaneous scripts as well.
107107
<td align="center"><a href="https://github.com/Sahil-k1509"><img src="https://avatars1.githubusercontent.com/u/55683054?v=4" width="100px;" alt=""/><br /><sub><b>Sahil Bairagi</b></sub></a><br /><a href="https://github.com/Python-World/Python_and_the_Web/commits?author=Sahil-k1509" title="Code">💻</a></td>
108108
<td align="center"><a href="https://github.com/tauseefmohammed2"><img src="https://avatars2.githubusercontent.com/u/35351464?v=4" width="100px;" alt=""/><br /><sub><b>tauseefmohammed2</b></sub></a><br /><a href="https://github.com/Python-World/Python_and_the_Web/commits?author=tauseefmohammed2" title="Code">💻</a></td>
109109
<td align="center"><a href="https://ameyanrd.github.io/"><img src="https://avatars1.githubusercontent.com/u/42608371?v=4" width="100px;" alt=""/><br /><sub><b>Ameya Deshpande</b></sub></a><br /><a href="https://github.com/Python-World/Python_and_the_Web/commits?author=ameyanrd" title="Code">💻</a></td>
110+
<td align="center"><a href="https://github.com/nj1902"><img src="https://user-images.githubusercontent.com/56442920/94884868-4dac4480-048c-11eb-9c56-7aaf87ba3597.jpeg" width="200px;" alt=""/><br /><sub><b>Naman Jain</b></sub></a><br /><a href="https://github.com/Python-World/Python_and_the_Web/commits?author=nj1902" title="Code">💻</a></td>
110111
</tr>
111112
</table>
112113

@@ -119,4 +120,4 @@ SR No | Project | Author
119120
2 | [Pycon Proposals Scraper](https://github.com/Python-World/Python_and_the_Web/tree/master/Scripts/Web_Scrappers/Pycon_Proposals)| [Aditya Jetely](https://github.com/AdityaJ7)
120121
3 | [Hacktoberfest Events Scraper](https://github.com/Python-World/Python_and_the_Web/tree/master/Scripts/Web_Scrappers/Hacktoberfest_Events)| [Aditya Jetely](https://github.com/AdityaJ7)
121122
4 | [Wifi Speed Tester](https://github.com/Python-World/Python_and_the_Web/tree/master/Scripts/Miscellaneous/Wifi_Speed)| [AdeshChoudhar19](https://github.com/AdeshChoudhar19)
122-
5 | [Google Search Using Python](https://github.com/Python-World/Python_and_the_Web/tree/master/Scripts/Miscellaneous/Wifi_Speed)| [Naman Jain](https://github.com/nj1902)
123+
5 | [Google Search Using Python](https://github.com/Python-World/Python_and_the_Web/tree/master/Scripts/Web_Scrappers/Google_Search_Using_Python)| [Naman Jain](https://github.com/nj1902)

Scripts/Web_Scrappers/Google Search Using Python/code.py

-8
This file was deleted.

Scripts/Web_Scrappers/Google Search Using Python/README.md renamed to Scripts/Web_Scrappers/Google_Search_Using_Python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ search(query, tld='co.in', lang='en', num=10, start=0, stop=None, pause=2)
2323

2424
<table>
2525
<tr>
26-
<td align="center"><a href="https://github.com/nj1902"><img src="" width="200px;" alt=""/><sub><b>💻 Naman Jain 💻</b></sub></a><br /></td>
26+
<td align="center"><a href="https://github.com/nj1902"><img src="http://github.com/%3Cspan%20class="x x-first x-last">https://user-images.githubusercontent.com/56442920/94884868-4dac4480-048c-11eb-9c56-7aaf87ba3597.jpeg" width="200px;" alt=""/></br><sub><b>💻 Naman Jain 💻</b></sub></a><br /></td>
2727

2828

2929
</table>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from googlesearch import search
2+
3+
def gSearch(query : str) -> str:
4+
5+
for item in search(query, tld = "co.in", num=10, stop = 10, pause = 2):
6+
print(item)
7+
8+
9+
# This is the text that you want to search for.
10+
query = input("Enter your query : ")
11+
12+
# Search Function called
13+
gSearch(query)

0 commit comments

Comments
 (0)