Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

beautifulsoup - How to find the hidden link of mp3 files on the website | Python

How to find the hidden link of mp3 files by Python on radiojavan.com website

For example

For example, on radiojavan.com, you only see the page link, but there is no download link. What tools can I use to find the music link in Python? please guide me.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

simply like this :

import requests
import re
def exp(url):
    try:
        url = url.replace('
', '').replace('
', '')
        op = requests.get(url , timeout=7).content
        if ".mp3" in op:
            print ("thanks it's valid link ")
            filter = re.findall('<meta property="og:audio" content="(.*?)"/>', str(op))[0]
            print ("[+] Found " + filter)
        else:
            print ('-> ' + url)
    except:
        print ("timeOut -> " + url)
        pass


a = raw_input("link : ")
exp(a)

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...