“Extrair URL do texto python” Respostas de código

Extrair URL da página 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

Extrair URL do 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

Como separar o URL do texto em Python

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

Respostas semelhantes a “Extrair URL do texto python”

Perguntas semelhantes a “Extrair URL do texto python”

Mais respostas relacionadas para “Extrair URL do texto python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código