Login

Whore links

Author:
nathan
Posted:
March 2, 2007
Language:
Python
Version:
Pre .96
Score:
1 (after 3 ratings)

Finds links from a body of html so you can display them elsewhere.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
def whorelinks(value):
  try:
    import beautifulsoup
  except ImportError:
    if settings.DEBUG:
      raise template.TemplateSyntaxError, "Error in {% whorelinks %} filter: The Python BeautifulSoup and/or urllib2 libraries aren't installed."
    return value
  else:
    soup = beautifulsoup.BeautifulSoup(value)
    return soup.findAll('a')

register.filter(whorelinks)

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months, 1 week ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 2 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months ago
  5. Help text hyperlinks by sa2812 12 months ago

Comments

jcroft (on March 3, 2007):

Joshua-

You'll notice that I gave Nathan credit in mine. Nathan wrote this originally. Mine is a copy of his, even though I posted mine here first (Nathan didn't realize I had posted mine when he posted this).

#

Please login first before commenting.