blpapi.Element
- class blpapi.Element(handle, dataHolder)
Represents an item in a message.
An
Elementcan represent:A single value of any data type supported by the Bloomberg API
An array of values
A sequence or a choice
The value(s) in an
Elementcan be queried in a number of ways. For anElementwhich represents a single value or an array of values use thegetValueAsBool()etc. functions. For anElementwhich represents a sequence or choice usegetElementAsBool()etc. functions. In addition, for choices and sequences,hasElement()andgetElement()are useful.This example shows how to access the value of a scalar element
sas a floating point number:f = s.getValueAsFloat()
Similarly, this example shows how to retrieve the third value in an array element
a, as a floating point number:f = a.getValueAsFloat(2)
Use
numValues()to determine the number of values available. For single values, it will return either0or1. For arrays it will return the actual number of values in the array.To retrieve values from a complex element types (sequences and choices) use the
getElementAs...()family of methods. This example shows how to get the value of the elementcityin the sequence elementaddress:city = address.getElementAsString("city")
Note
getElementAsXYZ(name)method is a shortcut togetElement(name).getValueAsXYZ().The value(s) of an
Elementcan be set in a number of ways. For anElementwhich represents a single value or an array of values use thesetValue()orappendValue()functions. For an element which represents a sequence or a choice use thesetElement()functions.This example shows how to set the value of an
Elements:value=5 s.setValue(value)
This example shows how to append a value to an array element
a:value=5 a.appendValue(value)
To set values in a complex element (a sequence or a choice) use the
setElement()family of functions. This example shows how to set the value of the elementcityin the sequence elementaddressto a string:address.setElement("city", "New York")
Methods which specify an
Elementname accept name in two forms:Nameor a string. PassingNameis more efficient. However, it requires theNameto have been created in the global name table.The form which takes a string is less efficient but will not cause a new
Nameto be created in the global name table. Because all validElementnames will have already been placed in the global name table by the API if the supplied string cannot be found in the global name table the appropriate error or exception can be returned.The API will convert data types as long as there is no loss of precision involved.
Elementobjects are always created by the API, never directly by the application.- __contains__(item)
- Parameters
item (
Union[str,Name,bytes,bool,int,float,datetime,date,time,None]) – item to check for existence in thisElement.- Return type
- Returns
If this
Elementis a complex type, return whether thisElementcontains anElementwith the specifiedNameitem. Otherwise, return whetheritemis a value in thisElement.
- __getitem__(nameOrIndex)
- Parameters
nameOrIndex (
Union[str,Name,bytes,int]) – TheNameidentifying theElementto retrieve from thisElement, or the index to retrieve the value from thisElement.- Return type
Union[str,Name,bytes,bool,int,float,datetime,date,time,None,Element]- Returns
If a
Nameorstris used, and theElementwhose name isnameOrIndexis a sequence, choice, array, or is null, thatElementis returned. Otherwise, if aNameorstris used, return the value of theElement. IfnameOrIndexis anint, return the value at indexnameOrIndexin thisElement.- Raises
KeyError – If
nameOrIndexis aNameorstrand thisElementdoes not contain a sub-Elementwith namenameOrIndex.InvalidConversionException – If
nameOrIndexis anintand the data type of thisElementis either a sequence or a choice.IndexOutOfRangeException – If
nameOrIndexis anintandnameOrIndex>=numValues().
- __iter__()
- __len__()
- __setitem__(name, value)
- Parameters
- Raises
Format this
Element‘s sub-Elementidentified bynamewithvalue. SeefromPy()for more details.Note
Elements that have been previously formatted in any way cannot be formatted further with this method. To further format anElement, use the get/set/append Element/Value methods.Note
Elements cannot be modified by index.- Return type
- appendValue(value)
Append the specified
valueto thisElements entries at the end.- Parameters
value (
Union[str,Name,bytes,bool,int,float,datetime,date,time,None]) – Value to append- Raises
Exception – If this
Element‘s datatype can’t be initialized from the type of the specifiedvalue, or if the current size of thisElement(numValues()) is equal to the maximum defined byelementDefinition().maxValues().
This method can process the following types of
valuewithout conversion:boolean
integers
float
string
datetypes (
datetime.time,datetime.dateordatetime.datetime)
Any other
valuewill be converted to a string withstrfunction and then processed in the same way as stringvalue.- Return type
- elementDefinition()
- Returns
Reference to the read-only element definition object that defines the properties of this elements value.
- elements()
Note: prefer to iterate over this
Elementdirectly instead of calling this method. E.g.`for e in element`rather than`for e in element.elements()`- Return type
- Returns
Iterator over elements contained in this
Element.- Raises
UnsupportedOperationException – If this
Elementis not a sequence.
- fromPy(value)
Format this
Elementwith the provided native Python value.- Parameters
value (
Union[Mapping,Sequence,str,Name,bytes,bool,int,float,datetime,date,time,None]) – Used to format thisElement- Raises
If the
Elementisa complex type, it is formatted using a
collections.abc.Mapping(e.g.dict) whose keys are thestrnames of its sub-Elements.an array, it is formatted using a
collections.abc.Sequence(e.g.list) of theElement‘s values (see note below for more detais).null, it is formatted using an empty
collections.abc.Mapping.
Otherwise, the
Elementis formatted using its associated value (e.gstrorint).Note
Although
str,bytes,bytearray, andmemoryvieware sub-types ofcollections.abc.Sequence,fromPy()treats them as scalars of type string and will use them to format scalarElements. If you wish to format an arrayElementwith instances of the aforementioned types, put them in a differentcollections.abc.Sequence, likelist.Note
Using
fromPy()to format anElementor one of its sub-Elements that has already been formatted is not supported. To further format anElement, use the get/set/append Element/Value methods.For example, the following
exampleElementhas the following BLPAPI representation:exampleElement = { complexElement = { nullElement = { } } arrayElement[] = { arrayElement = { id = 2 endpoint = { address = "127.0.0.1:8000" } } } valueElement = "Sample value" nullValueElement = }exampleElementcan be created with the following code:exampleRequest = service.createRequest("ExampleRequest") exampleElement = exampleRequest.asElement() complexElement = exampleElement.getElement("complexElement") complexElement.getElement("nullElement") arrayElement = exampleElement.getElement("arrayElement") array = arrayElement.appendElement() arrayValue.setElement("id", 2) endpointElement = arrayValue.getElement("endpoint") endpointElement.setElement("address", "127.0.0.1:8000") exampleElement.setElement("valueElement", "Sample value")
fromPy()can be used to formatexampleElementthe same way:exampleRequest = service.createRequest("ExampleRequest") exampleElement = exampleRequest.asElement() exampleElementAsDict = { "complexElement": { "nullElement": {} }, "arrayElement": [ { "id": 2, "endpoint": { "address": "127.0.0.1:8000" } } ], "valueElement": "Sample value", "nullValueElement": None } exampleElement.fromPy(exampleElementAsDict)
fromPy()can also be called withcollections.abc.Sequences and scalar values to format arrayElements and scalarElements, respectively.arrayElementAsList = [{ "id": 2, "endpoint": { "address": "127.0.0.1:8000" } }] arrayElement = exampleElement.getElement("arrayElement") arrayElement.fromPy(arrayElementAsList) exampleElement.getElement("valueElement").fromPy("Sample value")
Calling
toPy()on anElementformatted byfromPy()with a given value will return an equal value. Continuing from the preceding example:exampleElement.fromPy(exampleElementAsDict) print(exampleElementAsDict == exampleElement.toPy()) # True
- Return type
- getChoice()
- getElement(nameOrIndex)
- Parameters
nameOrIndex (
Union[str,Name,bytes,int]) – Sub-element identifier- Return type
- Returns
Sub-element identified by
nameOrIndex- Raises
Exception – If
nameOrIndexis a string or aNameandhasElement(nameOrIndex) != True, or ifnameOrIndexis an integer andnameOrIndex >= numElements(). Also if thisElementis neither a sequence nor a choice.
- getElementAsBool(name)
- Parameters
- Return type
- Returns
This element’s sub-element with
nameas a boolean- Raises
Exception – If
nameis neither aNamenor a string, or if thisElementis neither a sequence nor a choice, or in case it has no sub-element with the specifiedname, or in case the element’s value can’t be returned as a boolean.
- getElementAsDatetime(name)
- Parameters
- Returns
This element’s sub-element with
nameas one of the datetime types- Return type
- Raises
Exception – If
nameis neither aNamenor a string, or if thisElementis neither a sequence nor a choice, or in case it has no sub-element with the specifiedname, or in case the element’s value can’t be returned as a datetime.
- getElementAsFloat(name)
- Parameters
- Return type
- Returns
This element’s sub-element with
nameas a float- Raises
Exception – If
nameis neither aNamenor a string, or if thisElementis neither a sequence nor a choice, or in case it has no sub-element with the specifiedname, or in case the element’s value can’t be returned as a float.
- getElementAsInteger(name)
- Parameters
- Return type
- Returns
This element’s sub-element with
nameas an integer- Raises
Exception – If
nameis neither aNamenor a string, or if thisElementis neither a sequence nor a choice, or in case it has no sub-element with the specifiedname, or in case the element’s value can’t be returned as an integer.
- getElementAsName(name)
- Parameters
- Return type
- Returns
This element’s sub-element with
nameas aName- Raises
Exception – If
nameis neither aNamenor a string, or if thisElementis neither a sequence nor a choice, or in case it has no sub-element with the specifiedname, or in case the element’s value can’t be returned as aName.
- getElementAsString(name)
- Parameters
- Return type
- Returns
This element’s sub-element with
nameas a string- Raises
Exception – If
nameis neither aNamenor a string, or if thisElementis neither a sequence nor a choice, or in case it has no sub-element with the specifiedname, or in case the element’s value can’t be returned as a string.
- getElementValue(name)
- Parameters
- Return type
Union[str,Name,bytes,bool,int,float,datetime,date,time,None,Element]- Returns
This element’s sub-element with
namedefined by its datatype- Raises
Exception – If
nameis neither aNamenor a string, or if thisElementis neither a sequence nor a choice, or in case it has no sub-element with the specifiedname.
- getValue(index=0)
- Parameters
index (
int) – Index of the value in the element- Return type
Union[str,Name,bytes,bool,int,float,datetime,date,time,None,Element]- Returns
indexth entry in theElementdefined by this element’s datatype.- Raises
InvalidConversionException – If the data type of this
Elementis either a sequence or a choice.IndexOutOfRangeException – If
index >= numValues().
- getValueAsBool(index=0)
- Parameters
index (
int) – Index of the value in the element- Return type
- Returns
indexth entry in theElementas a boolean.- Raises
InvalidConversionException – If the data type of this
Elementcannot be converted to a boolean.IndexOutOfRangeException – If
index >= numValues().
- getValueAsDatetime(index=0)
- Parameters
index (
int) – Index of the value in the element- Returns
indexth entry in theElementas one of the datetime types.- Return type
- Raises
InvalidConversionException – If the data type of this
Elementcannot be converted to a datetime.IndexOutOfRangeException – If
index >= numValues().
- getValueAsElement(index=0)
- Parameters
index (
int) – Index of the value in the element- Return type
- Returns
indexth entry in theElementas a Element.- Raises
InvalidConversionException – If the data type of this
Elementcannot be converted to anElement.IndexOutOfRangeException – If
index >= numValues().
- getValueAsFloat(index=0)
- Parameters
index (
int) – Index of the value in the element- Return type
- Returns
indexth entry in theElementas a float.- Raises
InvalidConversionException – If the data type of this
Elementcannot be converted to an float.IndexOutOfRangeException – If
index >= numValues().
- getValueAsInteger(index=0)
- Parameters
index (
int) – Index of the value in the element- Return type
- Returns
indexth entry in theElementas a integer- Raises
InvalidConversionException – If the data type of this
Elementcannot be converted to an integer.IndexOutOfRangeException – If
index >= numValues().
- getValueAsName(index=0)
- Parameters
index (
int) – Index of the value in the element- Return type
- Returns
indexth entry in theElementas a Name.- Raises
InvalidConversionException – If the data type of this
Elementcannot be converted to aName.IndexOutOfRangeException – If
index >= numValues().
- getValueAsString(index=0)
- Parameters
index (
int) – Index of the value in the element- Return type
- Returns
indexth entry in theElementas a string.- Raises
InvalidConversionException – If the data type of this
Elementcannot be converted to a string.IndexOutOfRangeException – If
index >= numValues().
- hasElement(name, excludeNullElements=False)
- isArray()
- Return type
- Returns
Trueif this element is an array.
This element is an array if
elementDefinition().maxValues()>1or ifelementDefinition().maxValues()==UNBOUNDED.
- isComplexType()
- Return type
- Returns
Trueifdatatype()==DataType.SEQUENCEordatatype()==DataType.CHOICEandFalseotherwise.
- isNullValue(position=0)
- name()
- Return type
- Returns
If this
Elementis part of a sequence or choiceElement, then return theNameof thisElementwithin the sequence or choiceElementthat owns it. If thisElementis not part of a sequenceElement(that is it is an entireRequestorMessage) then return theNameof theRequestorMessage.
- numElements()
- Return type
- Returns
Number of elements in this element.
The number of elements is
0ifisComplexType()returnsFalse, and no greater than1if theDataTypeisCHOICE; if theDataTypeisSEQUENCEthis may return any number (including0).
- numValues()
- Return type
- Returns
Number of values contained by this element.
The number of values is
0ifisNull()returnsTrue, and no greater than1ifisComplexType()returnsTrue. The value returned will always be in the range defined byelementDefinition().minValues()andelementDefinition().maxValues().
- setElement(name, value)
Set this Element’s sub-element with ‘name’ to the specified ‘value’.
- Parameters
- Raises
Exception – If
nameis neither aNamenor a string, or if this element has no sub-element with the specifiedname, or if theElementidentified by the specifiednamecannot be initialized from the type of the specifiedvalue.
This method can process the following types of
valuewithout conversion:boolean
integers
float
string
datetypes (
datetime.time,datetime.dateordatetime.datetime)
Any other
valuewill be converted to a string withstrfunction and then processed in the same way as stringvalue.- Return type
- setValue(value, index=0)
Set the specified
indexth entry in thisElementto thevalue.- Parameters
- Raises
Exception – If this
Element‘s datatype can’t be initialized with the type of the specifiedvalue, or ifindex >= numValues().
This method can process the following types of
valuewithout conversion:boolean
integers
float
string
datetypes (
datetime.time,datetime.dateordatetime.datetime)
Any other
valuewill be converted to a string withstrfunction and then processed in the same way as stringvalue.- Return type
- toPy()
- Return type
Union[Dict,List,str,Name,bytes,bool,int,float,datetime,date,time,None]- Returns
A
dict,list, or value representation of thisElement. This is a deep copy containing only native python datatypes, likelist,dict,str, andint.
If an
Elementisa complex type, it is converted to a
dictwhose keys are thestrnames of its sub-Elements.an array, it is converted to a
listof theElement’s values.null, it is converted an empty
dict.
Otherwise, the
Elementis converted to its associated value. If that value was aName, it will be converted to astr.For example, the following
exampleElementhas the following BLPAPI representation:>>> exampleElement
exampleElement = { complexElement = { nullElement = { } } arrayElement[] = { arrayElement = { id = 2 endpoint = { address = "127.0.0.1:8000" } } } valueElement = "Sample value" nullValueElement = }exampleElementproduces the following Python representation:>>> exampleElement.toPy()
{ "complexElement": { "nullElement": {} }, "arrayElement": [ { "id": 2 "endpoint": { "address": "127.0.0.1:8000" } } ], "valueElement": "Sample value", "nullValueElement": None }
- toString(level=0, spacesPerLevel=4)
Format this
Elementto the string at the specified indentation level.- Parameters
- Return type
- Returns
This element formatted as a string
If
levelis negative, suppress indentation of the first line. IfspacesPerLevelis negative, format the entire output on one line, suppressing all but the initial indentation (as governed bylevel).
- values()
Note: prefer to iterate over this
Elementdirectly instead of calling this method. E.g.`for e in element`rather than`for e in element.values()`If
isComplexType()returnsTruefor thisElement, the empty iterator is returned.