Custom Django filters in Google App Engine
You want to create your own custom Django filters in App Engine without running a whole Django stack? Here's how in a few lines of code.
First create a specific python file to hold your custom filters at the root of your application. In my case I use customfilters.py like this:
import re from google.appengine.ext import webapp register = webapp.template.create_template_register() def escapeimg(body): return re.sub(r'<img (.*)/>', '[IMG]', body) register.filter(escapeimg)
Then in your main application source file, call the following line outside of the main() definition, for example just after your modules loading:
"""Load custom Django template filters""" webapp.template.register_template_library('customfilters')
You should then be able to use the new filters you registered in customfilters.py straight away in any of your Django templates without any % load foobar % call
Related Posts
7 Comments »
RSS feed for comments on this post. TrackBack URL
Wow!!! Thanks for this post, it was a huge, huge help.
Thanks very much for this.
Awesome, thank you very much
I’ve just discovered custom filters thanks to this posts – and DAMN aren’t they powerful! Solved a bunch of stuff for me and made everything so small, neat and simple. Thank you HEAPS for this info.
Thanks a lot, works like charm!
This was great. Thanks, just what I needed. Very concise. Cheers!