From 8a07869ed1a53ffe98326f4213a6b647c29755a3 Mon Sep 17 00:00:00 2001 From: Hershil Piplani <54028832+herkura@users.noreply.github.com> Date: Tue, 4 Oct 2022 18:54:51 +0530 Subject: [PATCH 1/4] Create googleSearch.py --- Google Search automation/googleSearch.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Google Search automation/googleSearch.py diff --git a/Google Search automation/googleSearch.py b/Google Search automation/googleSearch.py new file mode 100644 index 0000000..f094c3d --- /dev/null +++ b/Google Search automation/googleSearch.py @@ -0,0 +1,4 @@ +from googlesearch import search +results = search(term="Python Development", num_results=10, lang="en") +results = list(results) +print(results) From a62a7be8d26bf0edf2b2fc888e001865208ca293 Mon Sep 17 00:00:00 2001 From: Hershil Piplani <54028832+herkura@users.noreply.github.com> Date: Tue, 4 Oct 2022 18:56:20 +0530 Subject: [PATCH 2/4] Create readme.md --- Google Search automation/readme.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 Google Search automation/readme.md diff --git a/Google Search automation/readme.md b/Google Search automation/readme.md new file mode 100644 index 0000000..1510450 --- /dev/null +++ b/Google Search automation/readme.md @@ -0,0 +1 @@ +Waurt From 84595f920d4c44ab31ed2b841106abd09fe9fb9a Mon Sep 17 00:00:00 2001 From: Hershil Piplani <54028832+herkura@users.noreply.github.com> Date: Tue, 4 Oct 2022 18:59:08 +0530 Subject: [PATCH 3/4] Update googleSearch.py --- Google Search automation/googleSearch.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Google Search automation/googleSearch.py b/Google Search automation/googleSearch.py index f094c3d..7238e6e 100644 --- a/Google Search automation/googleSearch.py +++ b/Google Search automation/googleSearch.py @@ -1,3 +1,12 @@ +''' +Google Search automation + +- Solution to deal with repetitive google searching. + +Author : Hershil Piplani + +Date : 4/10/2022 +''' from googlesearch import search results = search(term="Python Development", num_results=10, lang="en") results = list(results) From 8f8d69dd433b76470b1502ba16c0cf427645a6cc Mon Sep 17 00:00:00 2001 From: Hershil Piplani <54028832+herkura@users.noreply.github.com> Date: Tue, 4 Oct 2022 19:00:05 +0530 Subject: [PATCH 4/4] Update readme.md --- Google Search automation/readme.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Google Search automation/readme.md b/Google Search automation/readme.md index 1510450..4a6682b 100644 --- a/Google Search automation/readme.md +++ b/Google Search automation/readme.md @@ -1 +1,2 @@ -Waurt +Google search is probably something that we all use every day. If you have to deal with some repetitive searches like checking your company's SEO performance, collecting data, etc, the googlesearch-python library can help you to achieve your goals. +