Отправка электронной почты из записных книжек Databricks - PullRequest
1 голос
/ 23 мая 2019

Я хочу отправить электронное письмо из записных книжек базы данных на основе этой статьи: https://docs.databricks.com/user-guide/faq/send-email.html

Я выполняю следующие действия, однако у меня возникла ошибка: UnicodeDecodeError: Кодек utf-8 не может декодироватьбайт 0x89 в позиции 0: недопустимый начальный байт И, я думаю, причина в том, что внутри функции makeCompatibleImage у нас есть этот фрагмент: val = ""% base64.standard_b64encode (png.read ()), и, вероятно, что-то не так сbase64.standard_b64encode

import numpy as np
import matplotlib.pyplot as plt

# Compute pie slices
N = 20
theta = np.linspace(0.0, 2 * np.pi, N, endpoint=False)
radii = 10 * np.random.rand(N)
width = np.pi / 4 * np.random.rand(N)

ax = plt.subplot(111, projection='polar')
bars = ax.bar(theta, radii, width=width, bottom=0.0)

# Use custom colors and opacity
for r, bar in zip(radii, bars):
    bar.set_facecolor(plt.cm.viridis(r / 10.))
    bar.set_alpha(0.5)
# Convert image add append to html array
html.append(makeCompatibleImage(ax))

#
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x89 in position 0: invalid start byte
---------------------------------------------------------------------------
UnicodeDecodeError                        Traceback (most recent call last)
<command-890455078841631> in <module>()
     16     bar.set_alpha(0.5)
     17 # Convert image add append to html array
---> 18 html.append(makeCompatibleImage(ax))

<command-890455078841625> in makeCompatibleImage(image, withLabel)
     11   val = None
     12   with open(imageName) as png:
---> 13     val = "<img src='data:image/png;base64,%s'>" % base64.standard_b64encode(png.read())
     14 
     15   displayHTML(val)

/databricks/python/lib/python3.6/codecs.py in decode(self, input, final)
    319         # decode input (taking the buffer into account)
    320         data = self.buffer + input
--> 321         (result, consumed) = self._buffer_decode(data, self.errors, final)
    322         # keep undecoded input until the next call
    323         self.buffer = data[consumed:]

UnicodeDecodeError: 'utf-8' codec can't decode byte 0x89 in position 0: invalid start byte

Я хочу знать, как я могу воспроизвести эту статью.

...