I need a regex for the href attribute for an mp3 file url in python - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T10:04:43Zhttp://stackoverflow.com/feeds/question/822260http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/822260/i-need-a-regex-for-the-href-attribute-for-an-mp3-file-url-in-python2I need a regex for the href attribute for an mp3 file url in pythonBen Hast2009-05-04T21:52:19Z2009-05-04T22:56:19Z
<p>Hi,</p>
<p>Based on a previous stack overflow question and contribution by cgoldberg, I came up with this regex using the python re module:</p>
<pre><code>import re
urls = re.finditer('http://(.*?).mp3', htmlcode)
</code></pre>
<p>The variable urls is an iterable object and I can use a loop to access each mp3 file url individually if there is more than one :</p>
<pre><code>for url in urls:
mp3fileurl = url.group(0)
</code></pre>
<p>This technique, however, only works sometimes. I realize regular expressions will not be as reliable as a fully fledged parser module. But, sometimes, this is not reliable for the same page.</p>
<p>I sometimes receive everything before http for some url entries. </p>
<p>I am relatively new to regular expressions. So, I am just wondering if there is a more reliable way to go about it.</p>
<p>Thanks in advance.
New to stackoverflow and looking forward to contributing some answers as well.</p>
http://stackoverflow.com/questions/822260/i-need-a-regex-for-the-href-attribute-for-an-mp3-file-url-in-python/822341#8223412Answer by Laurence Gonsalves for I need a regex for the href attribute for an mp3 file url in pythonLaurence Gonsalves2009-05-04T22:12:26Z2009-05-04T22:12:26Z<p>First, yeah, you should probably be using an HTML parser. Here's some sample code using the HTMLParser module that comes with Python:</p>
<pre><code>from HTMLParser import HTMLParser
class ImgSrcHTMLParser(HTMLParser):
def __init__(self):
HTMLParser.__init__(self)
self.srcs = []
def handle_starttag(self, tag, attrs):
if tag == 'img':
self.srcs.append(dict(attrs).get('src'))
parser = ImgSrcHTMLParser()
parser.feed(html)
for src in parser.srcs:
print src
</code></pre>
<p>This collects the src from img tags. It should be pretty easy to adapt it to your purposes assuming you want the href of 'a' tags that end in '.mp3'.</p>
<p>Assuming you really want to use a regex, there are some issues with your regex. You aren't delimiting the URL and you're using dot inside the URL. The worst side-effect of this is that a non-mp3 URL followed by an mp3-URL will be treated as one long URL. eg: "http://foo/bar.gif snarf snarf <a href="http://baz/quux.mp3" rel="nofollow">http://baz/quux.mp3</a>". You probably want to require some kind of delimiter (spaces, quotes, depends on what you're doing) and disallow some characters inside URLs (probably the same characters and/or any characters that aren't allowed in URLs). Also, you forgot to escape the "." in ".mp3". So "http://foo/mp3icon.gif" will match as "http://foo/mp3".</p>
http://stackoverflow.com/questions/822260/i-need-a-regex-for-the-href-attribute-for-an-mp3-file-url-in-python/822416#8224161Answer by Peter Hoffmann for I need a regex for the href attribute for an mp3 file url in pythonPeter Hoffmann2009-05-04T22:31:59Z2009-05-04T22:31:59Z<p>As always I suggest using a html parser like <a href="http://codespeak.net/lxml/lxmlhtml.html" rel="nofollow">lxml.html</a> instead of regular expressions to extract informations from html files:</p>
<pre><code>import lxml.html
tree = lxml.html.fromstring(htmlcode)
for link in tree.findall(".//a"):
url = link.get("href")
if url.endswith(".mp3"):
print url
</code></pre>
http://stackoverflow.com/questions/822260/i-need-a-regex-for-the-href-attribute-for-an-mp3-file-url-in-python/822523#8225233Answer by Paolo Bergantino for I need a regex for the href attribute for an mp3 file url in pythonPaolo Bergantino2009-05-04T22:56:19Z2009-05-04T22:56:19Z<p>As pointed out by the other answers, using regular expressions to parse HTML = bad, bad idea.</p>
<p>With that in mind, I will add in code of my favorite parser: <a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">BeautifulSoup</a>:</p>
<pre><code>from BeautifulSoup import BeautifulSoup
soup = BeautifulSoup(htmlcode)
links = soup.findAll('a', href=True)
mp3s = [l for l in links if l['href'].endswith('.mp3')]
for song in mp3s:
print link['href']
</code></pre>