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
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
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.