Skip to content

pombredanne/python-htmlentities

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-htmlentities

HTML Entities for Python

Installing

For install python-htmlentities, run on terminal:

$ [sudo] pip install htmlentities

Using htmlentities

encoding

You can encode a char to your htmlentitie relative using encode method:

import htmlentities

htmlentities.encode('<') # returns "&lt"

decoding

You can decode a htmlentitie to your relative char using decode method:

import htmlentities

htmlentities.decode('&lt') # returns "<"

development

Pull requests are very welcomed! Make sure your patches are well tested.

running the tests

if you are using a virtualenv, all you need is:

$ make test

community

irc channel

#cobrateam channel on irc.freenode.net

About

HTML Entities for Python

Resources

Stars

Watchers

Forks

Packages

No packages published