Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Google Search automation/googleSearch.py
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 2 additions & 0 deletions Google Search automation/readme.md
Original file line number Diff line number Diff line change
@@ -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.