The reason you don't get a result might be that the website doesn't accept your request. I got this result.
page = requests.get(url)
page.status_code # 403
page.reason # 'Forbidden'
You might want to take a look at this post for a solution.
It is always a good idea to check the return status of your request in your code.
But to solve your problem. You might want to check the <title>
element instead of a specific string.
# stolen from the post I mentioned
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36'}
page = requests.get(url, headers=headers)
page.status_code # 200. Adding a header solved the problem.
soup = bs4.BeautifulSoup(page.text,'html.parser')
# get title.
print(soup.find("title").text)
'KPN storing? Actuele storingen en problemen | Allestoringen'