how to get multi-language company name by eikon api

how to get multi-language company name by eikon api

Best Answer

  • wasin.w
    wasin.w admin
    Answer ✓

    Hello @joneliu1

    According to this How to get the Chinese company name? old post, you can use "DSPLY_NMLL" field to get the company name in the local language.

    Example code:

    rd.get_data(
        universe=['LSEG.L','7974.T','0001.HK','352820.KS'],
        fields=['TR.CompanyName','DSPLY_NMLL']
    )

    Result:

    result-multilangage.png

    Please note the character decode technical from that old post too.

Answers