gpt4 book ai didi

pandas - Python3 如何在电子邮件中发送 Pandas Dataframe

转载 作者:行者123 更新时间:2023-12-01 13:25:52 24 4
gpt4 key购买 nike

def call_panda():
filename = 'C:\\file.csv'
cols_to_use = ['col1', 'col2', 'col3', 'col4']
df = pd.read_csv(filename, nrows= 5,usecols=cols_to_use,index_col='col1')
# Send email
me = 'me@email.com'
you = 'you@email.com'
textfile = df
with open(textfile, 'rb') as fp:
msg = MIMEText(fp.read())
msg['Subject'] = 'Contents of file'
msg['From'] = me
msg['To'] = you
s = smtplib.SMTP('mailhost.acme.net')
s.sendmail(me, [you], msg.as_string())
s.quit()

错误消息是 open(textfile, 'rb') as fp:
类型错误:预期的 str、bytes 或 os.PathLike 对象,而不是 DataFrame

最佳答案

Pandas 有一个 df.to_html特征。

https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_html.html

复制克里斯·阿尔本:https://chrisalbon.com/python/data_wrangling/pandas_join_merge_dataframe/

import pandas as pd

raw_data = {
'subject_id': ['1', '2', '3', '4', '5'],
'first_name': ['Alex', 'Amy', 'Allen', 'Alice', 'Ayoung'],
'last_name': ['Anderson', 'Ackerman', 'Ali', 'Aoni', 'Atiches']}
df_a = pd.DataFrame(raw_data, columns = ['subject_id', 'first_name', 'last_name'])
df_a.to_html('df.html')

从这里,检查此线程以获取电子邮件提示: Sending HTML email using Python

看起来您需要附加 HTML 文件;我不确定它是否会在线显示,而且我没有可以检查的邮件服务器。

关于pandas - Python3 如何在电子邮件中发送 Pandas Dataframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48196273/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com