# bleach **Repository Path**: mirrors_DataDog/bleach ## Basic Information - **Project Name**: bleach - **Description**: ## Auto-archived due to inactivity. ## An easy, HTML5, whitelisting HTML sanitizer. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ====== Bleach ====== .. image:: https://travis-ci.org/mozilla/bleach.png?branch=master :target: https://travis-ci.org/mozilla/bleach .. image:: https://badge.fury.io/py/Bleach.svg :target: http://badge.fury.io/py/Bleach Bleach is a whitelist-based HTML sanitizing library that escapes or strips markup and attributes. Bleach can also linkify text safely, applying filters that Django's ``urlize`` filter cannot, and optionally setting ``rel`` attributes, even on links already in the text. Bleach is intended for sanitizing text from *untrusted* sources. If you find yourself jumping through hoops to allow your site administrators to do lots of things, you're probably outside the use cases. Either trust those users, or don't. Because it relies on html5lib_, Bleach is as good as modern browsers at dealing with weird, quirky HTML fragments. And *any* of Bleach's methods will fix unbalanced or mis-nested tags. The version on GitHub_ is the most up-to-date and contains the latest bug fixes. You can find full documentation on `ReadTheDocs`_. :Code: https://github.com/mozilla/bleach :Documentation: https://bleach.readthedocs.org/ :Issue tracker: https://github.com/mozilla/bleach/issues :IRC: ``#bleach`` on irc.mozilla.org :License: Apache License v2; see LICENSE file Reporting Bugs ============== For regular bugs, please report them `in our issue tracker `_. If you believe that you've found a security vulnerability, please `file a secure bug report in our bug tracker `_ or send an email to *security AT mozilla DOT org*. For more information on security-related bug disclosure and the PGP key to use for sending encrypted mail or to verify responses received from that address, please read our wiki page at ``_. Installing Bleach ================= Bleach is available on PyPI_, so you can install it with ``pip``:: $ pip install bleach Or with ``easy_install``:: $ easy_install bleach Or by cloning the repo from GitHub_:: $ git clone git://github.com/mozilla/bleach.git Then install it by running:: $ python setup.py install Upgrading Bleach ================ .. warning:: Before doing any upgrades, read through `Bleach Changes `_ for backwards incompatible changes, newer versions, etc. Basic use ========= The simplest way to use Bleach is: .. code-block:: python >>> import bleach >>> bleach.clean('an example') u'an <script>evil()</script> example' >>> bleach.linkify('an http://example.com url') u'an http://example.com url .. _html5lib: https://github.com/html5lib/html5lib-python .. _GitHub: https://github.com/mozilla/bleach .. _ReadTheDocs: http://bleach.readthedocs.org/ .. _PyPI: http://pypi.python.org/pypi/bleach