Matthew Gilbert
Matthew Gilbert
Happy to take a PR on this. Can someone post what the actual response from @mmtpo looks like? Ideally raw blpapi output and the parsed dataframe. Don't currently have access...
Ahh good catch. This is just an oversight on my part. Happy to take a PR on this, it would probably also make sense to remove from `create_intraday_tick_query`
Hmm, I seem to recall this being something you would want to call with `bdp` instead of `bds` but it's been awhile since I've looked at this. I do agree...
Looking in more detail I think this is probably more a case of the error not appropriately catching this because a string is an iterable, i.e. ``` try: rows.extend(data) except...
I think in this case you should just be using `bdp` instead of `bds` and we should be raising an error in `bds` if the result is not a non...
This should be possible by passing an app name to the constructor and then calling `authenticate`. That being said I have limited experience with the various bpipe authentication procedures so...
To elaborate on what I wrote above, currently a `BlpSession` supports authentication via passing in an `app` and then calling the `authenticate` method. However, this is only supporting the `blpapi.AuthOptions.createWithApp(app)`...
Hi @ctdunc , I'm happy to accept a PR on this, open to suggestions. My initial thoughts are we would want to introduce a single error type like the one...
Okay sure that sounds reasonable. If you want to submit a PR implementing this functionality I'd be happy to review it.
This could be added to the BlpQuery class in a similar way to how `bds` and `bdh` are implemented. The relevant service endpoint that is wrapped is `ExcelGetGridRequest`. There is...