diff --git a/Google Search automation/googleSearch.py b/Google Search automation/googleSearch.py new file mode 100644 index 0000000..7238e6e --- /dev/null +++ b/Google Search automation/googleSearch.py @@ -0,0 +1,13 @@ +''' +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) +print(results) diff --git a/Google Search automation/readme.md b/Google Search automation/readme.md new file mode 100644 index 0000000..4a6682b --- /dev/null +++ b/Google Search automation/readme.md @@ -0,0 +1,2 @@ +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. +