From 4239da115a5617a04c61f44ecf96b897d4db0bdb Mon Sep 17 00:00:00 2001 From: Aditya Jetely Date: Fri, 2 Oct 2020 09:40:14 +0530 Subject: [PATCH] Revert "Updated Conflicted Link" --- README.md | 4 +--- .../README.md | 2 +- .../requirements.txt.txt} | 0 .../Web_Scrappers/Google_Search_Using_Python/code.py | 12 ------------ 4 files changed, 2 insertions(+), 16 deletions(-) rename Scripts/Web_Scrappers/{Google_Search_Using_Python => Google Search Using Python}/README.md (86%) rename Scripts/Web_Scrappers/{Google_Search_Using_Python/requirements.txt => Google Search Using Python/requirements.txt.txt} (100%) delete mode 100644 Scripts/Web_Scrappers/Google_Search_Using_Python/code.py diff --git a/README.md b/README.md index 1c4ca296b..e9be20116 100644 --- a/README.md +++ b/README.md @@ -107,8 +107,6 @@ We now have a section for miscellaneous scripts as well.
Sahil Bairagi

💻
tauseefmohammed2

💻
Ameya Deshpande

💻 -
Naman Jain

💻 -=======
T3cH_W1z4rD

💻
Meghana Varanasi

💻 @@ -130,4 +128,4 @@ SR No | Project | Author 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) 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) 4 | [Wifi Speed Tester](https://github.com/Python-World/Python_and_the_Web/tree/master/Scripts/Miscellaneous/Wifi_Speed)| [AdeshChoudhar19](https://github.com/AdeshChoudhar19) -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) +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) diff --git a/Scripts/Web_Scrappers/Google_Search_Using_Python/README.md b/Scripts/Web_Scrappers/Google Search Using Python/README.md similarity index 86% rename from Scripts/Web_Scrappers/Google_Search_Using_Python/README.md rename to Scripts/Web_Scrappers/Google Search Using Python/README.md index f7e8e1ad4..556bef525 100644 --- a/Scripts/Web_Scrappers/Google_Search_Using_Python/README.md +++ b/Scripts/Web_Scrappers/Google Search Using Python/README.md @@ -23,7 +23,7 @@ search(query, tld='co.in', lang='en', num=10, start=0, stop=None, pause=2) - +

💻 Naman Jain 💻

💻 Naman Jain 💻
diff --git a/Scripts/Web_Scrappers/Google_Search_Using_Python/requirements.txt b/Scripts/Web_Scrappers/Google Search Using Python/requirements.txt.txt similarity index 100% rename from Scripts/Web_Scrappers/Google_Search_Using_Python/requirements.txt rename to Scripts/Web_Scrappers/Google Search Using Python/requirements.txt.txt diff --git a/Scripts/Web_Scrappers/Google_Search_Using_Python/code.py b/Scripts/Web_Scrappers/Google_Search_Using_Python/code.py deleted file mode 100644 index 3d2470efe..000000000 --- a/Scripts/Web_Scrappers/Google_Search_Using_Python/code.py +++ /dev/null @@ -1,12 +0,0 @@ -# We will be using the search() function from the googlesearch module. -from googlesearch import search - -def query_finder(query : str): - for item in search(query, tld = "co.in", num=10, stop = 10, pause = 2): - print(item) - -if __name__ == "__main__": - query = input("Enter your query : ") # This is the text that you want to search for. - query_finder(query) - - \ No newline at end of file