0

I am creating a scientific based website that does some calculation and plots. In order to do those calculations, I need to use some data that is in a csv file. The csv file has around 10,000 columns and 7 rows. Will I be able to do this with DJANGO?

2
  • 1
    You don't. You use Python's CSV handling. Commented Jul 18, 2018 at 19:23
  • python has a CSV module that you can use within Django. Commented Jul 18, 2018 at 19:45

1 Answer 1

1

Simple. Backend of Django is just python, which means you can use any python packages and what not in your views for example. You can probably start off here.

Edit: If you just parse the csv, you can use that data any way you'd like in django, maybe passing to the frontend template, storing it in the database, etc.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.