GithubHelp home page GithubHelp logo

Comments (2)

bridge-four avatar bridge-four commented on August 20, 2024

FYI -- this is still an issue. Just need to add this to the
Attachment class in models.py

def __init__(self, **kwargs):
        for key, default in Page._valid_properties.items():
            setattr(self, key, kwargs.get(key, default))

from api-client-python.

makim0n avatar makim0n commented on August 20, 2024

I think there is a littel typo on the message above. Here is the complete Attachment class :

class Attachment(Model):
    _valid_properties = {'content': None, 'type': None, 'name': None}

    def __init__(self, **kwargs):
            for key, default in Attachment._valid_properties.items():
                setattr(self, key, kwargs.get(key, default))

    @classmethod
    def parse(cls, json):
        attachment = cls()
        for key, val in json.items():
            if key in cls._valid_properties:
                setattr(attachment, key, val)
        return attachment

and here is a working example to put attachment using the python api :

        with open("attachment.png", 'rb') as bin_blob:
            b64_attachment_content = base64.b64encode(bin_blob.read())

        attachment_mimetype = mimetypes.guess_type(attachment.png)[0]

        template = Template(name="test",
            html="<h1> hello world </h1>",
            subject="click click bang bang",
            attachments=[Attachment.parse({"name":"attachment.png", "type":attachment_mimetype, "content":b64_attachment_content.decode()})])

        template = api.templates.post(template)

from api-client-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.