Implements a XML/HTML/XHTML Markup safe string for Python
Project description
Implements a unicode subclass that supports HTML strings:
>>> from markupsafe import Markup, escape
>>> escape("<script>alert(document.cookie);</script>")
Markup(u'<script>alert(document.cookie);</script>')
>>> tmpl = Markup("<em>%s</em>")
>>> tmpl % "Peter > Lustig"
Markup(u'<em>Peter > Lustig</em>')
If you want to make an object unicode that is not yet unicode but don’t want to lose the taint information, you can use the soft_unicode function:
>>> from markupsafe import soft_unicode
>>> soft_unicode(42)
u'42'
>>> soft_unicode(Markup('foo'))
Markup(u'foo')
Objects can customize their HTML markup equivalent by overriding the __html__ function:
>>> class Foo(object): ... def __html__(self): ... return '<strong>Nice</strong>' ... >>> escape(Foo()) Markup(u'<strong>Nice</strong>') >>> Markup(Foo()) Markup(u'<strong>Nice</strong>')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
MarkupSafe-0.9.1.tar.gz
(10.4 kB
view details)
File details
Details for the file MarkupSafe-0.9.1.tar.gz.
File metadata
- Download URL: MarkupSafe-0.9.1.tar.gz
- Upload date:
- Size: 10.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd4a2d122def99ed5cc300bc67249aef1d714f95ad748a0face6d0a89c42e028
|
|
| MD5 |
7f469f664b565b440f099997255e6d3c
|
|
| BLAKE2b-256 |
3b45dfad433343922655477760d506b058f96a783e8c0ada7b8d0602ff2beace
|