Hello,
I am trying to communicate to a Reuters feed using Python, using a particular set of
libraries called the Adfin Real Time library. I have VB code, and am trying to port
it to python, and admit I really do not understand COM objects and being a Linux guy
mainly, I don't use VB at all. I've had some marginal success, but am coming up
empty when it comes to setting up callbacks.
For example, this works:
import win32com.client
import time
symb='GOOG.O'
mylist=win32com .client.Dispatc h('AdfinXRTLib. AdxRtList')
mylist.Source=" IDN_RDF"
mylist.Register Items(symb,"ASK ")
mylist.StartUpd ates(4) # Mode Image
while mylist.ItemStat us(symb):
pass
for i in range(100):
m=mylist.Value( symb,"ASK")
print m
time.sleep(2)
but to get it to automatically updated quotes, in VB they do something like
#============== ==
Public Class Form1
# Dimension a Public Real Time list object that is capable of handling events
# note from me: not sure what this line does really
Dim WithEvents AdxList As New AdfinXRTLib.Adx RTList
Public Sub AdxList_OnUpdat e( <some args deleted>) Handles AdxList.OnUpdat e
do stuff with the updated data
End Sub
Private Sub Button1_Click(< some args deleted>)
do stuff with button click
End Sub
End Class
#============== ==
It seems as if the important part is the "Handles AdxList.OnUpdat e", which I assume
is basically saying "call me when AdxList.OnUpdat e is called". I have no idea how to
get this to point to a python function, so I can make the AdxList.OnUpdat e call
python code.
Is there a tutorial somewhere about this stuff, or is there a proper place to ask
such questions?
thanks,
Brian Blais
--
-----------------
bblais@bryant.e du
I am trying to communicate to a Reuters feed using Python, using a particular set of
libraries called the Adfin Real Time library. I have VB code, and am trying to port
it to python, and admit I really do not understand COM objects and being a Linux guy
mainly, I don't use VB at all. I've had some marginal success, but am coming up
empty when it comes to setting up callbacks.
For example, this works:
import win32com.client
import time
symb='GOOG.O'
mylist=win32com .client.Dispatc h('AdfinXRTLib. AdxRtList')
mylist.Source=" IDN_RDF"
mylist.Register Items(symb,"ASK ")
mylist.StartUpd ates(4) # Mode Image
while mylist.ItemStat us(symb):
pass
for i in range(100):
m=mylist.Value( symb,"ASK")
print m
time.sleep(2)
but to get it to automatically updated quotes, in VB they do something like
#============== ==
Public Class Form1
# Dimension a Public Real Time list object that is capable of handling events
# note from me: not sure what this line does really
Dim WithEvents AdxList As New AdfinXRTLib.Adx RTList
Public Sub AdxList_OnUpdat e( <some args deleted>) Handles AdxList.OnUpdat e
do stuff with the updated data
End Sub
Private Sub Button1_Click(< some args deleted>)
do stuff with button click
End Sub
End Class
#============== ==
It seems as if the important part is the "Handles AdxList.OnUpdat e", which I assume
is basically saying "call me when AdxList.OnUpdat e is called". I have no idea how to
get this to point to a python function, so I can make the AdxList.OnUpdat e call
python code.
Is there a tutorial somewhere about this stuff, or is there a proper place to ask
such questions?
thanks,
Brian Blais
--
-----------------
bblais@bryant.e du
Comment