extract url from page python
from bs4 import BeautifulSoup your_html = '<div class="itemContainer"> <a c="" href="/mp3s/mp3/Shadmehr-Aghili-Avaz-Nemishi"><div class="image_crop"><img alt="2f370b436731d9b" src="' sp = BeautifulSoup(your_html) sp.find('a').get('href') # output: # /mp3s/mp3/Shadmehr-Aghili-Avaz-Nemishi