I use the following code to get a list of websites from the google search.
However, I need to return the search result for the last month
from googlesearch import search
for result in search('searched word',tld = 'com', stop = 10):
print(result)