question

Upvotes
Accepted
3 1 1 4

Open Session Error (python) -- refinitiv-data version 1.2.0

I receive the following error when attempting to open a session using refinitiv-data v1.2.0:

"[error 0 - none] send() got an unexpected keyword argument 'follow_redirects' "

I use the refinitiv-data.config.json file to open a platform.rdp session. The exact command, rd.open_session(), works with version 1.1.1 of the library, but not with the new version. Any ideas on how to fix this? For now, I'm just continuing to use the previous version.


Thanks

#technology#productapisession
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvote
Accepted
78.1k 246 52 72

@qbe.ds

Regarding the "send() got an unexpected keyword argument 'follow_redirects' " error, it may relate to the version of httpx used by Python. I checked the CHANGELOG.md file and found that the follow_redirects argument was introduced in httpx 0.20.0. Please make sure that you are using httpx 0.20.0 or above.

>>> import httpx
>>> httpx.__version__
'0.22.0'
>>>

The Refinitiv Data Library1.2.0 uses this argument when calling the send method.

1684825375143.png



1684825375143.png (15.3 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Thanks @Jirapongse, that was the issue.
Upvotes
4.7k 13 2 7

Hi @qbe.ds ,


I can successfully open a platform session in RD 1.2.0 using refinitiv-data.config.json. Please note that to use rd.open_session() directly you would need "platform.rdp" to be set up as a default in your config file, otherwise you can use rd.open_session(name='platform.rdp').

I hope this helps.


Best regards,

Haykaz

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
14k 30 5 10

Hi @qbe.ds ,

I can use the same code with you with the RD library version 1.2.0 and can open the session properly. Could you please check if the issue still persists? If so, please get the debug log of the RD library and put it here for further investigation (debug log can be set following step 2.2 ) Refinitiv Data Library (RD Library) in Eikon Data API and Refinitiv Data Library - Troubleshooting)

1684149288080.png



1684149288080.png (18.3 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hi @raksina.samasiri,

This is the error I receive:

1684249190860.png

1684249190860.png (4.7 KiB)

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.