我只是安装了 pybbg 包 throw git clone 和 python setup.py install。我已经有适用于 windows 的Bloomberg api
我尝试从库中运行示例代码,并且一直收到以下消息:“pybbg 没有属性‘Pybbg’”。
例如 :
import unittest
import datetime
import pybbg
class TestPybbg(unittest.TestCase):
def test_bds(self):
tester = pybbg.Pybbg()
data = tester.bdp('AAPL US Equity','PX_Last')
print(data)
if __name__ == '__main__':
unittest.main()