Hi,
I tried to use the code below to get the vessels that go through china but I get the following error AttributeError: 'NoneType' object has no attribute '_get_endpoint_config'
This is my code below
import refinitiv.dataplatform as rdp
#from refinitiv.data.content import search
df = rdp.search(
view = rdp.SearchViews.VesselPhysicalAssets,
filter = "AssetLocation eq 'China'",
select = "DocumentTitle, RIC, OriginPort, DestinationPort, IMO, AssetLocation"
)
I also used the examples in this data library https://github.com/Refinitiv-API-Samples/Example.DataLibrary.Python/blob/main/Examples/2-Content/2.06-Search/EX-2.06.01-Search.ipynb
and they all returned the same error as above AttributeError: 'NoneType' object has no attribute '_get_endpoint_config'