Python Flask, how to set content type

I am using Flask and I return an XML file from a get request. How do I set the content type to xml ?

e.g.

@app.route('/ajax_ddl')
def ajax_ddl():
    xml="foo"
    header("Content-type: text/xml")
    return xml

7 Answers
7

Leave a Comment