Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/alpha-xone/xbbg into main
Browse files Browse the repository at this point in the history
  • Loading branch information
alpha-xone committed May 25, 2022
2 parents e858299 + 9d34d6f commit e677f73
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Below are main features. Jupyter notebook examples can be found [here](https://c

- Bloomberg C++ SDK version 3.12.1 or higher:

- Visit [Bloomberg API Library](https://www.bloomberg.com/professional/support/api-library/) and downlaod C++ Supported Release
- Visit [Bloomberg API Library](https://www.bloomberg.com/professional/support/api-library/) and download C++ Supported Release

- In the `bin` folder of downloaded zip file, copy `blpapi3_32.dll` and `blpapi3_64.dll` to Bloomberg `BLPAPI_ROOT` folder (usually `blp/DAPI`)

Expand Down Expand Up @@ -327,6 +327,10 @@ Noted that local data usage must be compliant with Bloomberg Datafeed Addendum
> The most fundamental requirement regarding your use of Data is that it cannot
> leave the local PC you use to access the BLOOMBERG PROFESSIONAL service.
## Star History

[![Star History Chart](https://api.star-history.com/svg?repos=alpha-xone/xbbg&type=Date)](https://star-history.com/#alpha-xone/xbbg&Date)

| | |
| -------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Docs | [![Documentation Status](https://readthedocs.org/projects/xbbg/badge/?version=latest)](https://xbbg.readthedocs.io/) |
Expand Down
Binary file modified docs/xbbg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion xbbg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Intuitive Bloomberg data API"""

__version__ = '0.7.7a2'
__version__ = '0.7.7a3'
2 changes: 1 addition & 1 deletion xbbg/core/conn.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def connect(max_attempt=3, auto_restart=True, **kwargs) -> blpapi.session.Sessio
sess_opts.setServerHost(serverHost=kwargs['server_host'])

if isinstance(kwargs.get('server_port', None), str):
sess_opts.setServerPort(serverPort=kwargs['server_post'])
sess_opts.setServerPort(serverPort=kwargs['server_port'])

if isinstance(kwargs.get('tls_options', None), blpapi.sessionoptions.TlsOptions):
sess_opts.setTlsOptions(tlsOptions=kwargs['tlsOptions'])
Expand Down

0 comments on commit e677f73

Please sign in to comment.