I\'m building a website that\'ll have a django backend. I want to be able to serve the medical billing data from a database that django will have access to. However, all of
Use http://www.python-excel.org/ and consider this process:
xlrd.open_workbook(filename)
If you follow the process, you can learn a lot of how loading and extracting works and how does it fits with the requirements. I recommend to you first do the step 2 and 3 in shell to get more quicker experiments and avoid to be uploading/testing/error with a django view.
Hope this kickoff base works for you.