Reif Peter writes: > I defined an external method "build_adn" which I can call from a > DTML-document. > How do I call it from a Python script? > > I tried e.g. "return build_adn (zone)", but it did not work. There is no namespace magic active in Python Scripts. Try: return context.build_adn (zone) Dieter