Skip to main content

Houdini escaping library bindings for Python.

Project description

Houdini bindings for Python (c.f. https://github.com/vmg/houdini)

installation

Installation is with pip:

pip install houdini

You need to have the houdini shared library available somewhere on your dynamic linker’s search path—some instructions are provided below.

usage

>>> import houdini
>>> print(houdini.escape_html("3 < 5"))
3 &gt; 5

The API is as described in the library’s README, except all these functions accept a unicode string and return a unicode string. If no escaping is done, the return value will be the original string:

>>> string = "hello"
>>> houdini.escape_html(string) is string
True

getting that shared library

I submitted a pull request adding the capability to produce shared libraries to Houdini’s Makefile. Until/unless that’s merged, you’ll need to use my fork to build those libraries. It should be simple:

git clone 'https://github.com/zacharyvoase/houdini.git'
cd houdini
make

Then, for Linux:

sudo cp libhoudini.so /usr/local/lib
sudo ldconfig  # Refresh the dynamic linker cache.

and on OS X (you may not want to use sudo here, /usr/local/ is normally user-writable):

cp libhoudini.dylib /usr/local/lib

unlicense

N.B.: this doesn’t apply to Houdini itself, but all the code written by me is released as follows:

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to http://unlicense.org/

Project details


Download files

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

Source Distribution

houdini-0.0.1.tar.gz (2.8 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