From karstenasche at googlemail.com Mon Sep 1 11:35:11 2008 From: karstenasche at googlemail.com (CrazyPlaya) Date: Mon, 1 Sep 2008 02:35:11 -0700 (PDT) Subject: [Shtoom] cannot import interface(win32, IDLE) Message-ID: <19215755.post@talk.nabble.com> Hi @ all, if I try to interpret the shtoom module I am getting the error from twisted.python.components import Interface ImportError: cannot import name Interface Twisted installed. I?ve heard I have to install Zope. But after that nothing changed. What I have to do? Greetings CrazyPlaya -- View this message in context: http://www.nabble.com/cannot-import-interface%28win32%2C-IDLE%29-tp19215755p19215755.html Sent from the Python - shtoom mailing list archive at Nabble.com. From fs at beebits.net Mon Sep 1 11:52:20 2008 From: fs at beebits.net (Frank Scholz) Date: Mon, 01 Sep 2008 11:52:20 +0200 Subject: [Shtoom] cannot import interface(win32, IDLE) In-Reply-To: <19215755.post@talk.nabble.com> References: <19215755.post@talk.nabble.com> Message-ID: <48BBBB54.80201@beebits.net> Hi, > if I try to interpret the shtoom module I am getting the error > from twisted.python.components import Interface > ImportError: cannot import name Interface > > Twisted installed. I?ve heard I have to install Zope. But after that nothing > changed. > > What I have to do? If I recall right you need to replace in file shtoom/interfaces.py line 3: from twisted.python.components import Interface with from zope.interface import Interface And you don't need a full Zope installation, zope-interface is enough. Ciao, Frank