askvictor
askvictor

Reputation: 3819

Importing data into django from CSV via admin interface

I'm developing a django application that will need regular updates of its database from a number of CSV files. These will need to be uploaded via the web interface. Are there any libraries/modules that I should look at to make this easier?

Victor

Upvotes: 0

Views: 2936

Answers (2)

Dawn T Cherian
Dawn T Cherian

Reputation: 5406

You can make use of Django import_export.

Upvotes: 2

Hedde van der Heide
Hedde van der Heide

Reputation: 22439

Making what easier? Your question is rather vague, but from what I understand you would need something to scedule the job at regular intervals. This could be done in lots of ways, but usually by a python script and a cronjob or a celery task.

Upvotes: -1

Related Questions