How to load images from URL in Odoo 13

In Odoo, Images are stored in binary fields in databases. There is no option in Odoo to load images from the URL. We can only upload the image from the system. For Example:- from odoo import modelsclass PartnerImage(models.Model):   _inherit = res.partner’    partner_image = fields.Binary(string=Partner Image’, attachment=False) In the code above, we created a binary field […]