Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 555617
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:50:00+00:00 2026-05-13T11:50:00+00:00

Does anyone know how to get asynchronous data through Bloomberg’s new data API (COM

  • 0

Does anyone know how to get asynchronous data through Bloomberg’s new data API (COM v3) with Python? I found this code below on wilmott.com and it works just fine, but it’s for the old API version.

Does anyone know the corresponding code for the new version?

from win32com.client import DispatchWithEvents
from pythoncom import PumpWaitingMessages, Empty, Missing
from time import time

class BBCommEvent:
    def OnData(self, Security, cookie, Fields, Data, Status):
        print 'OnData: ' + `Data`

    def OnStatus(self, Status, SubStatus, StatusDescription):
        print 'OnStatus'

class TestAsync:
    def __init__(self):
        clsid = '{F2303261-4969-11D1-B305-00805F815CBF}'
        progid = 'Bloomberg.Data.1'

        print 'connecting to BBComm'        
        blp = DispatchWithEvents(clsid, BBCommEvent)
        blp.AutoRelease = False
        blp.Subscribe('EUR Curncy', 1, 'LAST_PRICE', Results = Empty)
        blp.Flush()

        end_time = time() + 5

        while 1:
            PumpWaitingMessages()
            if end_time < time():
                print 'timed out'
                break

if __name__ == "__main__":
    ta = TestAsync()
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T11:50:00+00:00Added an answer on May 13, 2026 at 11:50 am

    I finally figured it out. I did a fair bit of combrowse.py detective work, and I compared with the JAVA, C, C++, and .NET examples in the BBG API download. Interestingly enough the Bloomberg Helpdesk people knew pretty much null when it came to these things, or perhaps I was just talking to the wrong person.

    Here is my code.

    asynchronousHandler.py:

    import win32com.client
    from pythoncom import PumpWaitingMessages
    from time import time, strftime
    import constants
    
    class EventHandler:
        def OnProcessEvent(self, result):
            event = win32com.client.gencache.EnsureDispatch(result) 
            if event.EventType == constants.SUBSCRIPTION_DATA:
                self.getData(event)
            elif event.EventType == constants.SUBSCRIPTION_STATUS:
                self.getStatus(event)
            else:
                self.getMisc(event)
        def getData(self, event):
            iterator = event.CreateMessageIterator()
            while iterator.Next():
                message = iterator.Message  
                dataString = ''
                for fieldIndex, field in enumerate(constants.fields):           
                    if message.AsElement.HasElement(field):
                        element = message.GetElement(field)
                        if element.IsNull:
                            theValue = ''
                        else:
                            theValue = ', Value: ' + str(element.Value) 
                        dataString = dataString + ', (Type: ' + element.Name + theValue + ')'
                print strftime('%m/%d/%y %H:%M:%S') + ', MessageType: ' + message.MessageTypeAsString + ', CorrelationId: ' + str(message.CorrelationId) + dataString
        def getMisc(self, event):
            iterator = event.CreateMessageIterator()
            while iterator.Next():
                message = iterator.Message
                print strftime('%m/%d/%y %H:%M:%S') + ', MessageType: ' + message.MessageTypeAsString
        def getStatus(self, event):
            iterator = event.CreateMessageIterator()
            while iterator.Next():
                message = iterator.Message
                if message.AsElement.HasElement('reason'):
                    element = message.AsElement.GetElement('reason')
                    print strftime('%m/%d/%y %H:%M:%S') + ', MessageType: ' + message.MessageTypeAsString + ', CorrelationId: ' + str(message.CorrelationId) + ', Category: ' + element.GetElement('category').Value + ', Description: ' + element.GetElement('description').Value 
                if message.AsElement.HasElement('exceptions'):
                    element = message.AsElement.GetElement('exceptions')
                    exceptionString = ''
                    for n in range(element.NumValues):
                        exceptionInfo = element.GetValue(n)
                        fieldId = exceptionInfo.GetElement('fieldId')
                        reason = exceptionInfo.GetElement('reason')
                        exceptionString = exceptionString + ', (Field: ' + fieldId.Value + ', Category: ' + reason.GetElement('category').Value + ', Description: ' + reason.GetElement('description').Value + ') ' 
                    print strftime('%m/%d/%y %H:%M:%S') + ', MessageType: ' + message.MessageTypeAsString + ', CorrelationId: ' + str(message.CorrelationId) + exceptionString
    
    class bloombergSource:
        def __init__(self):
            session = win32com.client.DispatchWithEvents('blpapicom.Session' , EventHandler)
            session.Start()
            started = session.OpenService('//blp/mktdata')
            subscriptions = session.CreateSubscriptionList()
            for tickerIndex, ticker in enumerate(constants.tickers):
                if len(constants.interval) > 0:
                    subscriptions.AddEx(ticker, constants.fields, constants.interval, session.CreateCorrelationId(tickerIndex))
                else:
                    subscriptions.Add(ticker, constants.fields, session.CreateCorrelationId(tickerIndex))   
            session.Subscribe(subscriptions)
            endTime = time() + 2
            while True:
                PumpWaitingMessages()
                if endTime < time():                
                    break               
    
    if __name__ == "__main__":
        aBloombergSource = bloombergSource()
    

    constants.py:

    ADMIN = 1
    AUTHORIZATION_STATUS = 11
    BLPSERVICE_STATUS = 9
    PARTIAL_RESPONSE = 6
    PUBLISHING_DATA = 13
    REQUEST_STATUS = 4
    RESOLUTION_STATUS = 12
    RESPONSE = 5
    SESSION_STATUS = 2
    SUBSCRIPTION_DATA = 8
    SUBSCRIPTION_STATUS = 3
    TIMEOUT = 10
    TOKEN_STATUS = 15
    TOPIC_STATUS = 14
    UNKNOWN = -1
    fields = ['BID']
    tickers = ['AUD Curncy']
    interval = '' #'interval=5.0'
    

    For historical data I used this simple script:

    import win32com.client
    
    session = win32com.client.Dispatch('blpapicom.Session')
    session.QueueEvents = True
    session.Start()
    started = session.OpenService('//blp/refdata')
    dataService = session.GetService('//blp/refdata')
    request = dataService.CreateRequest('HistoricalDataRequest')
    request.GetElement('securities').AppendValue('5 HK Equity')
    request.GetElement('fields').AppendValue('PX_LAST')
    request.Set('periodicitySelection', 'DAILY')
    request.Set('startDate', '20090119')
    request.Set('endDate', '20090130')
    cid = session.SendRequest(request)
    ADMIN = 1
    AUTHORIZATION_STATUS = 11
    BLPSERVICE_STATUS = 9
    PARTIAL_RESPONSE = 6
    PUBLISHING_DATA = 13
    REQUEST_STATUS = 4
    RESOLUTION_STATUS = 12
    RESPONSE = 5
    SESSION_STATUS = 2
    SUBSCRIPTION_DATA = 8
    SUBSCRIPTION_STATUS = 3
    TIMEOUT = 10
    TOKEN_STATUS = 15
    TOPIC_STATUS = 14
    UNKNOWN = -1
    stayHere = True
    while stayHere:
        event = session.NextEvent();
        if event.EventType == PARTIAL_RESPONSE or event.EventType == RESPONSE:
            iterator = event.CreateMessageIterator()
            iterator.Next()
            message = iterator.Message
            securityData = message.GetElement('securityData')
            securityName = securityData.GetElement('security')
            fieldData = securityData.GetElement('fieldData')
            returnList = [[0 for col in range(fieldData.GetValue(row).NumValues+1)] for row in range(fieldData.NumValues)]
            for row in range(fieldData.NumValues):
                rowField = fieldData.GetValue(row)
                for col in range(rowField.NumValues+1):
                    colField = rowField.GetElement(col)
                    returnList[row][col] = colField.Value
            stayHere = False
            break
    element = None
    iterator = None
    message = None
    event = None
    session = None
    print returnList
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 374k
  • Answers 374k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Something like this: $(function(){ $('selector').attr('readonly', true); }); May 14, 2026 at 7:52 pm
  • Editorial Team
    Editorial Team added an answer Short Answer: LuaZip is a lightweight Lua extension library used… May 14, 2026 at 7:52 pm
  • Editorial Team
    Editorial Team added an answer That there is indeed no limit on the amount of… May 14, 2026 at 7:52 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.