Skip to Content
Menu
This question has been flagged
1 Reply
2441 Views
Iam using odoo 13 
I want to download the given below file from python

print(attachment._full_path(attachment.store_fname))

It returns

/home/fawad/.local/share/Odoo/filestore/CDNSDB/bf/bfd009f500c057195ffde66fae64f92fa5f59b72



Avatar
Discard
Author

with open(get_resource_path('attachment_pdf2image', 'images/') + "test.pdf", "wb") as f:
f.write(base64.b64decode(attachment.datas))

Author Best Answer
with open(get_resource_path('attachment_pdf2image', 'images/') + "test.pdf", "wb") as f:
f.write(base64.b64decode(attachment.datas))


Avatar
Discard