--
You received this message because you are subscribed to the Google Groups "peewee-orm" group.
To unsubscribe from this group and stop receiving emails from it, send an email to peewee-orm+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I saw the latest peewee already provide dump_csv() function. Many thanks!
But I want to request few feature for dump_csv(). Actually I am using these features right now.
Maybe the first two is also useful for others.
1. Change title function. It is call writerow() in csv package.
Or should I create a new csv_writer instance by my own. Then using writerow and pass it into dump_csv()?
2. Can choose which column doesn't want to export.
3. re-translate text. For example, in database using number 1~N instead of level or priority.
But if export to files. Users want to see the description instead of numbers. Maybe High, medium, low.
--