The following snippet finds all a tags from a given html and prints the value of their href attribute:
from bs4 import BeautifulSoup
html = '<a class="view_detail_button" href="/internship/detail/primary-research-data-collection-on-ground-internship-in-bangalore-at-cry-child-rights-and-you1610101064">'
soup = BeautifulSoup(html, features="lxml")
for a in soup.find_all('a', href=True):
print(a['href'])
Output
/internship/detail/primary-research-data-collection-on-ground-internship-in-bangalore-at-cry-child-rights-and-you1610101064
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…