“Извлечь URL из Text Python” Ответ

Извлечь URL с 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

Извлечь URL из Text 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

Как отделить URL от текста в Python

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

Ответы похожие на “Извлечь URL из Text Python”

Вопросы похожие на “Извлечь URL из Text Python”

Больше похожих ответов на “Извлечь URL из Text Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования