The scenario is as follows.
I get the atom file from the website (say A). A third party will request this atom file through my site (say B).
I am writing a Django application that will often try website A and save it as a file. Now that a third party is requesting a file through website B, I will have to display the file as xml in a browser.
My question is how to make the whole XML file representation in Django?
render_to_response
awaiting template. I can not use the template as such. I just need to display the file in the view. How to do it?
vkris source share