Bleach

An easy whitelist-based HTML-sanitizing tool
Download

Bleach Ranking & Summary

Advertisement

  • Rating:
  • License:
  • BSD License
  • Price:
  • FREE
  • Publisher Name:
  • James Socol
  • Publisher web site:
  • http://mozilla.com

Bleach Tags


Bleach Description

An easy whitelist-based HTML-sanitizing tool Bleach is an HTML sanitizing library, written in Python and designed to strip disallowed tags and attributes based on a whitelist, and can additionally autolinkify URLs in text with an extra filter layer that Django's urlize filter doesn't have.Basic UseThe simplest way to use Bleach:>>> from bleach import Bleach>>> bl = Bleach()>>> bl.clean('an evil()< /script > example')'an example'# to linkify URLs and email addresses, use>>> bl.linkify('a http://example.com url')'a < a href="http://example.com" rel="nofollow" >http://example.com< /a > url'clean() also fixes up some common errors:>>> from bleach import Bleach>>> bl = Bleach()>>> bl.clean('unbalanced < em >tag')'unbalanced < em >tag< /em >'Advanced UseBleach is relatively configurable.Clean - Advancedclean() takes up to two optional arguments, tags and attributes, which are instructions on what tags and attributes to allow, respectively.tags is a list of whitelisted tags:>>> from bleach import Bleach>>> bl = Bleach()>>> TAGS = >>> bl.clean('< abbr >not allowed< /abbr >', tags=TAGS)'not allowed'attributes is either a list or, more powerfully, a dict of allowed attributes. If a list is used, it is applied to all allowed tags, but if a dict is use, the keys are tag names, and the values are lists of attributes allowed for that tag.For example:>>> from bleach import Bleach>>> bl = Bleach()>>> ATTRS = {'a': }>>> bl.clean('< a href="/" title="fail" >link< /a >', attributes=ATTRS)'< a href="/" >link< /a >'Linkify - AdvancedIf you pass nofollow=False to linkify(), links will not be created with rel="nofollow". By default, nofollow is True. If nofollow is True, then links found in the text will have their rel attributes set to nofollow as well, otherwise the attribute will not be modified.Configuring linkify() is somewhat more complicated. linkify() passes data through different filters before returning the string. By default, these filters do nothing, but if you subclass Bleach, you can override them.All the filters take and return a single string.filter_urlfilter_url(self, url) is applied to URLs before they are put into the href attribute of the link. If you need these links to go through a redirect or outbound script, filter_url() is the function to override.For example:import urllibfrom bleach import Bleachclass MyBleach(Bleach): def filter_url(self, url): return 'http://example.com/bounce?u=%s' % urllib.quote(url)Now, use MyBleach instead of Bleach and linkify() will route urls through your bouncer.filter_textThis filter is applied to the link text of linkified URLs. Requirements: · Python


Bleach Related Software