There is no reason to think you can't use Pandas or any other python
library within Django.
In your views.py or in a subfile that it references, import the library
you want, manipulate any objects in django or from the filesystem(in
this case I assume you've saved the csv somewhere django can see it,
real file or fileIO object), then return a result as part of the view.
Traditionally it would be to a rendertoresponse with a template, but
could be a json return if the page is calling it with ajax.
So as others have pointed out:
1. Do you have your csv already loaded as a python object
2. Can you show us the View code your using with Pandas
Thanks,
Alex