Re: How to write an API for a Python application?

2005-11-16 Thread Gary Kshepitzki
Thanks Its an interesting solution but I need a more closely coupled solution, with real time events, so the communication really has to be 2 ways, and not by polling. Thanks for putting the time and though. Gary <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > While not sure of th

How to write an API for a Python application?

2005-11-16 Thread Gary Kshepitzki
Hello I would like to create an API for a piece of Python code. The API is for use by non Python code. It should support interaction in both directions, both accessing functions on the API and the ability for the API to raise events on its client. What is the best way to do that? I though of doin

Re: Sending an event from a python COM server to a VB COM client

2005-11-16 Thread Gary Kshepitzki
time to answer. Gary "Stephen Prinster" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Gary Kshepitzki wrote: >> Hello >> I am trying to send an event from a Python COM server to a VB (or VB.NET) >> COM client. >> I am a newbie both in VB an

Sending an event from a python COM server to a VB COM client

2005-11-15 Thread Gary Kshepitzki
Hello I am trying to send an event from a Python COM server to a VB (or VB.NET) COM client. I am a newbie both in VB and in python. Can anyone give me a simple (but complete) code example both of the Python server side and the VB client side for raising a single event. Any answer would be highly

How to write an API for a Python application?

2005-11-14 Thread Gary Kshepitzki
Hello I would like to create an API for a piece of Python code. The API is for use by non Python code. It should support interaction in both directions, both accessing functions on the API and the ability for the API to raise events on its clients. What is the best way to do that? I though o