-3

I have a list of 10 web pages in google sheets. I load them all into a Python list and now I want to find similar web pages on the internet (let's say another 10). In Chrome, there is an addon called "Google similar pages". Is there any simple way of using this with Python or any other solution? Thanks for any help in advance!

EDIT I do not want to build an algorithm that creates a list o "similar pages" on the internet but use some ready-to-go solution. My first thought was to use "Google Similar Pages" addon and send a request to it from Python, but maybe there is another service with appropriate API?

Pieczony
  • 1
  • 1

1 Answers1

0

So I found the answer. The easiest way to find similar pages for a list of links is to send a request to google with "related:www.exampleadress.com". The proper way of communicating with google is here: Programmatically searching google in Python using custom search

but apparently free accounts are limited to 100 queries per day...

anyway, it works for now :)

Pieczony
  • 1
  • 1