我只是安装了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()