“Extraer URL del texto Python” Código de respuesta

Extraer URL de 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
Shanti

Extraer URL del texto Python

import re
 
with open("path\url_example.txt") as file:
        for line in file:
            urls = re.findall('https?://(?:[-\w.]|(?:%[\da-fA-F]{2}))+', line)
            print(urls)
Realhardik18

Cómo separar la URL del texto en Python

(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w\.-]*)*\/?\S
MF

Respuestas similares a “Extraer URL del texto Python”

Preguntas similares a “Extraer URL del texto Python”

Más respuestas relacionadas con “Extraer URL del texto Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código