Skip to main content

Converts numeric HTML entities and Unicode characters to nice, neat named HTML entities

Project description

Named HTML entities are much neater and much easier to comprehend than numeric entities. And because they fall within the ASCII range, they’re much safer to use in multiple contexts than Unicode and its various encodings (UTF-8 and such).

This module helps convert from numerical HTML entites and Unicode characters that fall outside the normal ASCII range into named entities.

Usage

Python 2:

from namedentities import named_entities

u = u'both em\u2014and–dashes…'
print named_entities(u)

yields:

both em—and–dashes…

Python 3:

from namedentities import named_entities

u = 'both em\u2014and–dashes…'
print(named_entities(u))
# same result

Or using the six cross-version compatibility library, either one:

from namedentities import named_entities
import six

u = six.u('both em\u2014and–dashes…')
six.print_(named_entities(u))
# same result

Recent Changes

  • Now successfully packaged for, and tests against, against Python 2.5, 2.6, 2.7, 3.2, and 3.3.

  • Commenced automated multi-version testing with pytest and tox.

Notes

  • Doesn’t attempt to encode <, >, or & (or their numerical equivalents) to avoid interfering with HTML escaping.

  • This is basically a packaging of Ian Beck’s work. Thank you, Ian!

Installation

pip install namedentities

To easy_install under a specific Python version (3.3 in this example):

python3.3 -m easy_install namedentities

(You may need to prefix these with “sudo “ to authorize installation.)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

namedentities-1.2.zip (9.0 kB view hashes)

Uploaded Source

namedentities-1.2.tar.gz (4.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page