[Zope] Zope Python OO]

Lennart Regebro lennart@regebro.nu
Thu, 24 Apr 2003 16:24:03 +0200


Patrick W. Fraley wrote:
> Hi List,
> 
> I am working on a project which will make use of a lot of python code. 
> And I just ran accros a problem trying to use python OO within zope.
> 
> I created a python script:

Python scripts, since they are creatable through the web, have severe
restrictions on what you can do, as a safety precaution. So you can't
access anything starting with underscore, for example.

You probably want to look into creating Python products. It's easier and
much more powerful than doing it "inside" of the ZODB.

Start with a "boring product", I don't have the link, but search for it
on www.zope.org.

> class bezeichnung:

Ouch, german class names... :)