Can I send a message programmatically through Eikon messenger

Hi,

Does an API exist to send messages to Eikon Messenger ?

Thanks in advance,

Cyril

Best Answer

  • The requests library is used to send HTTP requests, which the command provided by @Zhenya Kovalyov is not. Here's one example of how it can be executed from Python. This example requires Python 3.5 or higher. In earlier versions of Python you can use os.system() to execute the shell command.

    import subprocess
    subprocess.run(["start","rm://evgenij.kovalev.thomsonreuters.com@reuters.net/?message=hello"],shell=True)

Answers

  • @cyril.godart unfortunately we do not have an API for the Messenger. The only bit that you can do is to open a messenger window and fill in the text of the message with a RACE link:

    In Windows press Win + R for 'Run', paste the following link and press Enter -

    rm://evgenij.kovalev.thomsonreuters.com@reuters.net/?message=hello
  • Just wondering could I use this with the request python library by any chance ?

  • That's what I was after. Thanks.