This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import blpapi | |
| import datetime | |
| class BbDownloader: | |
| def __init__(self): | |
| self.output_file = "" | |
| self.TICK_DATA = blpapi.Name("tickData") | |
| self.COND_CODE = blpapi.Name("conditionCodes") | |
| self.TICK_SIZE = blpapi.Name("size") | |
| self.TIME = blpapi.Name("time") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas | |
| import scipy | |
| def test: | |
| print 'Hello' |