我有一个问题,我正在寻找执行以下任务的最佳方式。
我很难找到我正在寻找的确切解决方案。
这是我的代码。
prospects = Customer.objects.filter(state_id=2)
csvfile = StringIO.StringIO()
writer = UnicodeWriter(csvfile, encoding='utf-8')
writer.writerow(["Name", "Email"])
for prospect in prospects:
writer.writerow(
[prospect.name, prospect.email]
)
csvobj = csvfile.getvalue() # not sure about it.
g = gzip.GzipFile(fileobj=csvobj)
g.close()
msg = EmailMultiAlternatives(
subject="Innovation",
body="text_context",
from_email=settings.DEFAULT_FROM_EMAIL,
to=["bac@gmail.com"]
)
msg.attach("z.gzip",g, 'application/zip')
msg.send(True)
TypeError: 'GzipFile' object does not support indexing
答案 0 :(得分:2)
以下是我的表现。
import StringIO
import tablib
headers = ["name", "Email"]
values = Customer.objects.filter(state_id=2).values_list(‘name’, ‘email’)
data = tablib.Dataset(*values, headers=headers)
csvfile = StringIO.StringIO()
csvfile.write(data.csv)
gzipped = gzip.GzipFile(mode='wb', fileobj=csvfile.getvalue())
gzipped.close()
# msg stuff...
msg.attach("z.gzip", gzipped, 'application/zip')
对我来说很好,如果你尝试的话,你仍然会收到错误吗?