Skip to content
This repository was archived by the owner on Dec 22, 2023. It is now read-only.

Commit 0e1b313

Browse files
authored
Merge pull request #127 from nj1902/master
Updated Conflicted Link
2 parents 4517cde + 4cb4861 commit 0e1b313

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ 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>
111+
=======
110112
<td align="center"><a href="https://aravindha1234u.github.io"><img src="https://avatars0.githubusercontent.com/u/52521300?v=4" width="100px;" alt=""/><br /><sub><b>T3cH_W1z4rD</b></sub></a><br /><a href="https://github.com/Python-World/Python_and_the_Web/commits?author=Aravindha1234u" title="Code">💻</a></td>
111113
<td align="center"><a href="https://github.com/Meghana-12"><img src="https://avatars0.githubusercontent.com/u/44519203?v=4" width="100px;" alt=""/><br /><sub><b>Meghana Varanasi</b></sub></a><br /><a href="https://github.com/Python-World/Python_and_the_Web/commits?author=Meghana-12" title="Code">💻</a></td>
112114
</tr>
@@ -128,4 +130,4 @@ SR No | Project | Author
128130
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)
129131
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)
130132
4 | [Wifi Speed Tester](https://github.com/Python-World/Python_and_the_Web/tree/master/Scripts/Miscellaneous/Wifi_Speed)| [AdeshChoudhar19](https://github.com/AdeshChoudhar19)
131-
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)
133+
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/README.md renamed to Scripts/Web_Scrappers/Google_Search_Using_Python/README.md

Lines changed: 1 addition & 1 deletion
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="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>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# We will be using the search() function from the googlesearch module.
2+
from googlesearch import search
3+
4+
def query_finder(query : str):
5+
for item in search(query, tld = "co.in", num=10, stop = 10, pause = 2):
6+
print(item)
7+
8+
if __name__ == "__main__":
9+
query = input("Enter your query : ") # This is the text that you want to search for.
10+
query_finder(query)
11+
12+
File renamed without changes.

0 commit comments

Comments
 (0)