How can I download data on electronic municipal market access (EMMA) municipal trade statistics t...

How can I download data on electronic municipal market access (EMMA) municipal trade statistics through python API?

Best Answer

  • Jirapongse
    Jirapongse ✭✭✭✭✭
    Answer ✓

    @eikon11

    Thank you for reaching out to us.

    If you mean the data on this website, you can use the get_data method in Refinitiv Data Library for Python to get those values. The code looks like this:

    rd.get_data([".ADCB.MSRB",".ADCS.MSRB",".ADID.MSRB",".AD.MSRB"],
    ["CF_NAME","CF_DATE","CF_TIME","TOT_ISSUES","TRDVOL_1"])

    The output is:

    1706078629518.png

    You can also refer to the example on GitHub.