[Zope-dev] Access Zope objects from python

2004-07-06 Thread Tor Oskar Wilhelmsen



Hi
This question is from a Zope newbie, who gets a 
little confused when trying to write a product for Zope.
My product fetches a lot of picture information, 
and this information shall be viewed in a fotogallery (the viewer is made as a 
ZPT)

My question is really simple then:

When I write this product in python, how could I 
generate a zope image object of each of the pictures in the db. The part I am 
interested in is how I can access and create zope objects from python. Which 
classes do I have to inherit from? 

-Tor Oskar Wilhelmsen
___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Access Zope objects from python

2004-07-06 Thread Dario Lopez-Kästen
Tor Oskar Wilhelmsen wrote:
Hi
This question is from a Zope newbie, who gets a little confused when 
trying to write a product for Zope.
My product fetches a lot of picture information, and this information 
shall be viewed in a fotogallery (the viewer is made as a ZPT)
 
My question is really simple then:
 
When I write this product in python, how could I generate a zope image 
object of each of the pictures in the db. The part I am interested in is 
how I can access and create zope objects from python. Which classes do I 
have to inherit from?
 
-Tor Oskar Wilhelmsen
Hi,
the zope developer guide (ZDG) is your friend, this chapter perhasp in 
particular.

http://zope.org/Documentation/Books/ZDG/current/Products.stx
the ZDG goes on about interfaces in it's first chapters. Yo donot need 
to use Interfaces if you do not want to, but they are very handy. Note 
that the ZDG is for 2.4, but it should work fairly OK.

The ZGD is a good companion to the Zope Book when developing products.
Hope this helps.
/dario
--
-- ---
Dario Lopez-Kästen, IT Systems  Services Chalmers University of Tech.
___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
http://mail.zope.org/mailman/listinfo/zope-announce
http://mail.zope.org/mailman/listinfo/zope )