My Python version is 2.7.3 and OS is Windows 7.
I want to use the Bloomberg API libraries. Specifically, 'importing error blpapi' is my most problem.
At this site, I've tried to run both Supported Release(v3.5.5) and Experimental Release(v3.5.3). But both are not work.
Writing import blpapi
in IDLE,
I keep getting an following error message:
Traceback (most recent call last):
File
<pyshell#0>
, line 1, in<module>
import blpapi
File
C:\Python27\lib\site-packages\blpapi\__init__.py
, line 5, in<module>
from .internals import CorrelationId
File
C:\Python27\lib\site-packages\blpapi\internals.py
, line 50, in<module>
_internals = swig_import_helper()
File
C:\Python27\lib\site-packages\blpapi\internals.py
, line 46, inswig_import_helper
_mod = imp.load_module('_internals', fp, pathname, description)
ImportError: dll load failed specified module could not found
How can I solve this problem? (I hope to import 'blpapi')
With reference to this: Python 2.7 with Bloomberg API import blpapi failure