import requests
from bs4 import BeautifulSoup
r =requests. get('https://sibidharan.me')
soup = BeautifulSoup(r.text, features="lxml")
links = set()
for link in soup.findAll('a'):
    if 'sibidharan' in link.get('href'):
        links. add(link.get('href') )
    print(links)