The best way to export openerp data to csv file using python [closed]

删除回忆录丶 提交于 2019-12-04 21:38:46
ifixthat

Well their are certain ways like

  • using csv python package
    • In this case you can take advantage of the export_data service which will automatically produce csv for you, you can use with Scheduler(cron job ) or even you can write script for it.
  • using xlwt python package
    • This will be over head for you read all data then process then produce csv while first opption already yours 90% of your job.

Why not to use Open ERP client it self.

you can go for xlwt if you really require to write a python program to generate it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!