Answers for "extract urls from a webpage python"

1

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
Posted by: Guest on February-03-2021

Code answers related to "extract urls from a webpage python"

Python Answers by Framework

Browse Popular Code Answers by Language