My .py app return xml response from API, I want to write value of messageKey 'notFound' into the .html page.
Ex of response:
<response>
<returncode>FAILED</returncode>
<messageKey>notFound</messageKey>
<message>We could not find a meeting with that meeting ID</message>
</response>
EX of .html:
#....
<div class="row">
<p id="demo"></p>
</div>
#....
Any kind of help please?