Easy conversion between Unicode characters, numeric HTML entities, and named HTML entities.
Project description
When reading HTML, named entities are often neater and easier to comprehend than numeric entities, Unicode (or other charset) characters, or a mixture of all of the above. Because they fall within the ASCII range, entities are also 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. Or, if you prefer, it will help you go the other way, mapping all entities into Unicode. And if you decide you want entities of the counting type, it will even help you go numeric.
Usage
Python 2:
from namedentities import * u = u'both em\u2014and–dashes…' print "named: ", repr(named_entities(u)) print "numeric:", repr(numeric_entities(u)) print "unicode:", repr(unicode_entities(u))
yields:
named: 'both em—and–dashes…' numeric: 'both em—and–dashes…' unicode: u'both em\u2014and\u2013dashes\u2026'
You can do just about the same thing in Python 3, but you have to use a print function rather than a print statement, and prior to 3.3, you have to skip the u prefix that in Python 2 marks string literals as being Unicode literals. Python 3.3, however, allows the u marker as an optional feature; it doesn’t really do anything specific, because all Python 3 strings are Unicode–but it sure helps with cross-version code compatibility. (You can use the six cross-version compatibility library, as the tests do.)
Recent Changes
The unescape(text) API changes all entities into Unicode characters. While long present, is now available for easy external consumption. It has an alias, unicode_entities(text) for parallelism with the other APIs.
Repackaged first as a Python package, rather than independent modules. Then, given my growing confidence in managing cross-version packages, the Python 2 and Python 3 implementation backends have been merged into a single backend.
Now successfully packaged for, and tests against, against Python 2.6, 2.7, and 3.3, as well as PyPy 2.0.2 (based on 2.7.3). Automated multi-version testing managed with the wonderful pytest and tox.
Should also work under Python 2.5 and 3.2 releases, and PyPy 1.9, but those have been removed from “official support” because they are no longer supported in my testing environment. Time to upgrade!
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 -U namedentities
To easy_install under a specific Python version (3.3 in this example):
python3.3 -m easy_install --upgrade namedentities
(You may need to prefix these with “sudo “ to authorize installation.)
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 Distributions
File details
Details for the file namedentities-1.4.1.zip
.
File metadata
- Download URL: namedentities-1.4.1.zip
- Upload date:
- Size: 10.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 495798b638c18bd341fb864b07979772df6c2f84c8e56bf12d18cc7d538a690a |
|
MD5 | fb1eb2a452bf78fd4f02407a0f4af28c |
|
BLAKE2b-256 | d7bd8c0201e16855751cfdac7d5e4f9166639955e9d8d677378537ea4f9f7b02 |
File details
Details for the file namedentities-1.4.1.tar.gz
.
File metadata
- Download URL: namedentities-1.4.1.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 238a82955f7d62026ff345046a1bb4487bae0b4bf32435c393f01a13584c85c9 |
|
MD5 | 6b494443073c03a9f267c297a78b60f0 |
|
BLAKE2b-256 | de0accd8b010d036b3966398ccc2aa8782b93818946b395b6f9197227851dc57 |