2

I've got an python script to that generates an excel worksheet from a database query with the DataNitro excel plugin (the free one), now i want so save the file and then send it via email, but the DataNitro docs only includes working with cells and worksheets, is there a method call in the DataNitro API or any other work around to save the file?

4

2 に答える 2

7

ここで DataNitro の創設者 - ワークブックを保存する関数を DataNitro API に追加しました。これを指摘してくれてありがとう!https://www.datanitro.comから DataNitro の最新バージョンをダウンロードする必要があり ます。

ワークブックを保存して電子メールで送信するための Python 2 コードは次のとおりです

save() および save_copy() のドキュメントは、https ://datanitro.com/docs.html#sheets にあります。

ご意見をお聞かせください。ありがとう!

于 2012-10-05T23:18:32.727 に答える
1

smtplib のようなものを探していると思います。これにより、Python から電子メールと添付ファイルを送信できるようになります。

詳細はこちら: http://www.blog.pythonlibrary.org/2010/05/14/how-to-send-email-with-python/

ドキュメント: http://docs.python.org/library/smtplib.html

于 2012-10-03T19:22:37.673 に答える