问题标签 [blpapi]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - Mac OS X Sierra 上的 Python 2.7 Bloomberg blpapi 导入错误
pybgg 安装成功后,尝试运行 $python test_pybbg.py 时
收到以下错误消息: ImportError: No module named blpapi
MacBook:pfinance Allen$ which python
/用户/艾伦/anaconda/bin/python
MacBook:pfinance Allen$ python test_pybbg.py
回溯(最近一次通话最后):
文件“test_pybbg.py”,第 2 行,在
文件“/Users/Allen/anaconda/lib/python2.7/site-packages/pybbg/init .py ”,第 8 行,在
文件“/Users/Allen/anaconda/lib/python2.7/site-packages/pybbg/pybbg_k.py”,第 8 行,在
ImportError:没有名为 blpapi 的模块
我使用了 $pip list,但未能从输出列表中看到 blpapi。关于如何解决我的问题的任何建议?
提前致谢
附言。以下显示我的安装日志
MacBook:pfinance Allen$ pip install git+ https://github.com/hubertrogers/pybbg 收集 git+ https://github.com/hubertrogers/pybbg
克隆https://github.com/hubertrogers/pybbg到 /private/var/folders/c6/7s88m85x0fj7l0zc52y_kcbh0000gn/T/pip-XagRDz-build
安装收集的包:pybbg Running setup.py install for pybbg ...完成
成功安装pybbg-0.0.1
根据帖子,我已正确设置库链接;
MacBook:pfinance Allen$ echo $DYLD_LIBRARY_PATH /Users/Allen/pfinance/blpapi_cpp_3.8.1.1/Darwin/
MacBook:pfinance Allen$ echo $BLPAPI_ROOT /Users/Allen/pfinance/blpapi_cpp_3.8.1.1
python - Python blpapi 安装
我正在尝试使用 anaconda 在 python 上安装 blpapi。
准备好所有先决条件后,在我的 cmd 屏幕上,我输入
并安装了软件包。
最后一行显示
好像安装成功了。
之后,我在 Spyder(Anaconda) 上输入了import blpapi
,但显示没有这样的模块。
我应该做的下一步是什么?
bloomberg - 如何从 isin 而不是股票代码请求数据
通过 jBloomberg 使用 Bloomberg API,我如何根据 isin 或 sedol 代码而不是 Bloomberg 代码检索数据?
python - 康达安装 BLPAPI
我遵循了以下答案:
但无法发表评论,因为我的声誉不够高。当我使用时,conda install -c dsm/blpapi
我得到以下信息:
这是使用安装了 Python 3.5 的虚拟环境。关于为什么这对我有效Pythonic
但对我无效的任何想法?
node.js - 我没有收到 Node.js Bloomberg API 包 (blpapi) 的响应
我正在开发一个 Node.js 项目,我需要使用 Bloomberg API 对一些股票进行定价。我发现这个 API 有一个 NPM 包,所以我安装了它并根据https://github.com/bloomberg/blpapi-node开始测试它,但我没有得到任何响应。
这是我的代码:
这个包还能用吗?如果不是,如何从 Node.js 调用 Java Bloomberg API?
非常感谢。
bloomberg - 彭博无处不在和 BLPAPI
我通过 BLPAPI (Bloomberg API) 在 Bloomberg Terminal 机器上成功开发了一个应用程序(在 Python 中)。不幸的是,我的公司正在考虑切换到 Bloomberg Anywhere...我将有机会在那里运行我的应用程序?
python - Need help in installing blpapi and configuring Python Interpreter
I am using Python 3.5 64 bit and Windows Machine. Normally i install packages using pip installer.
For blpapi library(bloomberg API), i used the steps mentioned in answer from following question Anaconda - Install blpapi in environment
Steps I followed:
This worked fine. But it has created a separate Python Environment and Interpreter
C:\Users\bl00mb3rg\Miniconda3\envs\py35
Already i have another python interpreter which was created while intalling python 3.5 64 bit.
Which Interpreter i have to use while configuring python IDE. If i select Conda python Env, i am not able to use libraries such as 'pdblp' which i installed using pip
How to make Conda install libraries in existing python instead of creating new Environment.
r - Rblpapi 覆盖设置是 bds 中未使用的参数
我正在尝试使用 Rblpapi 包,并且能够轻松地提取数据并连接到 api。但是,当使用覆盖时,我每次都会遇到此错误。
bds 中的错误(“CPI YOY 指数”,“ECO_RELEASE_DT_LIST”,覆盖 = overrd):
未使用的参数(覆盖 = overrd)
有没有人遇到过这个错误?你知道修复是什么吗?
python - 彭博 API,pybbg
我正在尝试使用 python 中的 BDS 公式提取彭博数据,并且我已经下载了 pybbg 库。我想包括几个覆盖,但我得到一个错误。我要提取的内容是使用 excel API 插件完成的: =BDS("SUBC NO Equity","PG_REVENUE","PRODUCT_GEO_OVERRIDE=G","FUND_PER=Q"= 对于一个覆盖,以下代码有效(https ://github.com/kyuni22/pybbg):
如果公司没有该级别的详细信息,则会出现以下错误:
blpapi - R blpapi 向前传播为点或完全
我正在使用 R 中的 blpapi 包下载外汇远期价格。在公式中,我想指定将远期价格下载为点数或直接价格的设置。我尝试了以下方法:
** 对于 Java 编码,答案在这里:在 Bloomberg API 中,您如何指定将外汇远期作为价差而不是绝对值?