heya, I have a Django app that will need to grab CSV data being sent to an email address into it's own database.
I'm assuming if I can get IMAP access to the mailbox, I can just script all of that part in Python. However, what's the best way of scheduling the process, so that it'll regularly check the mailbox? Just make it a cron job, or is there a more integrated way of doing it inside of Django? Actually, is this the best way of doing it, importing the data this way? Or if say, I could get access to the underyling database behind those CSV files, would I be better off trying the approach here (http://docs.djangoproject.com/en/dev/howto/legacy-databases/). Or should I just import the data into a clean Django-originated database and leave it at that? Cheers, Victor -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

