Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sending matplotlib image to pymsteams (cannot create new tag pymsteams)

I am using matplotlib to plot my image.

import pandas as pd
from matplotlib import pyplot as plt

x = ['09:30', '09:33', '09:40', '09:43', '09:50', '09:53', '10:00', '10:03', '10:10', '10:13']
y = ['3010.910000', '3011.650000', '3009.130000', '3011.500000', '3010.460000', '3010.950000', '3012.830000', '3013.120000', '3011.730000', '3010.130000']
matrix = pd.DataFrame({'Time': x, 'Quote': y})
matrix['Quote'] = matrix['Quote'].astype(float)
plt.plot('Time', 'Quote', data=matrix, color='mediumvioletred')

Here is the challenge now:

import pymsteams
web_hook = 'My Microsoft Teams URL https://outlook.office.com/webhook/blahblah'
teams_message = pymsteams.connectorcard(web_hook)
msg_section = pymsteams.cardsection()
msg_section.title('Title')
msg_section.addImage(image) #I want to add that plt image here
teams_message.addSection(msg_section)
teams_message.text("Some Message")
self.teams_message.send()

I have tried this (and I want this approach, using cache):

buf = io.BytesIO()
plt.savefig(buf, format='png')
buf.seek(0)
msg_section.addImage(buf.read())

I did try saving the image to local drive 'c:/temp/'. The code did not give any error msg, but the image on Teams was a blank image, even though the image is correct in c:/temp

like image 419
Pankaj Singh Avatar asked Sep 18 '25 13:09

Pankaj Singh


1 Answers

In summary. A PNG image has to be converted to base64 string.

Please see the example below.

Note that I'm using Python 3.6.
Additionally image width seems to be limited in a Connector Card.

import numpy as np
import matplotlib.pyplot as plt
import base64
from io import BytesIO
import pymsteams

# generate fig
fig, ax     = plt.subplots(1,1,figsize=(20,6))
ax.hist(np.random.normal(0, 1, 1000), bins=51, edgecolor='k', alpha=0.5);
buf         = BytesIO()
fig.savefig(buf, format="png")

# get base64 string
data        = base64.b64encode(buf.getbuffer()).decode("ascii")
encoded_fig = f"data:image/png;base64,{data}"

# send encoded_fig via webhook
web_hook      = 'YOUR_WEBHOOK'
teams_message = pymsteams.connectorcard(web_hook)
msg_section   = pymsteams.cardsection()
msg_section.title('Title')
msg_section.addImage(encoded_fig) #I want to add that plt image here
teams_message.addSection(msg_section)
teams_message.text("Some Message")
teams_message.send()
like image 146
clumdee Avatar answered Sep 23 '25 06:09

clumdee



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!