Skip to content
Advertisement

Exact website links from google through BeautifulSoup

I want to search google using BeautifulSoup and open the first link. But when I opened the link it shows error. The reason i think is that because google is not providing exact link of website, it has added several parameters in url. How to get exact url?

When i tried to use cite tag it worked but for big urls its creating problem.

The first link which i get using soup.h3.a[‘href’][7:] is: ‘http://www.wikipedia.com/wiki/White_holes&sa=U&ved=0ahUKEwi_oYLLm_rUAhWJNI8KHa5SClsQFggbMAI&usg=AFQjCNGN-vlBvbJ9OPrnq40d0_b8M0KFJQ

Here is my code:

JavaScript

Advertisement

Answer

You could split the returned string:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement