kent sin writes: > How can I construct a fake REQUEST from the python? Or > are there any module in zope I can get? "REQUEST" can be acquired... Thus, if you can get hold of any Zope site building object, say "o", you get "REQUEST" as "o.REQUEST". In a Python script, "container" or "context" will do. In an external method, "self" may do. Dieter