Hello community,
I want to create an editor for a self defined xml markup language. I want to
use wxpython with wxstyledtextctrl and I have looked around at yellowbrain
site, but there are no examples. I also watched the styledtextctrl examples
with wxpython 2.8.4.
What I am looking for is an ex
Hello,
did anyone succeed in combining wxpython and a 3d engine (pyogre,
crystalblend, panda3d, soya etc.) ?
I would like to create an application, which uses wxpython tree, menu
and grid elements and embedds a 3d view of some of the listed objects
in an own detail window, so showing the object a
On 11 Aug., 11:21, Irmen de Jong <[EMAIL PROTECTED]> wrote:
> OpenPavilion wrote:
> > Since XMLRPC has limited features: Is there any other server/client
> > technique to transfer objects (not strings, or dictionaries, but self
> > defined object types) ?
>
Hello community,
maybe one of you can help me out with a question regarding the
transfer of objects betwen client an server:
I have three files:
### ClassA.py ###
class ClassA:
def setA(self, newA):
self.a = newA
def getA(self):
return self.a
### client.py ###