[Fixed]-Xml authenticate version response via python django

1👍

That’s definitely you can acheive this using Django RestFramework.

Found this django-rest-framework-xml

i.e)

REST_FRAMEWORK = {
    'DEFAULT_PARSER_CLASSES': (
        'rest_framework_xml.parsers.XMLParser',
    ),
    'DEFAULT_RENDERER_CLASSES': (
        'rest_framework_xml.renderers.XMLRenderer',
    ),
}

Leave a comment