My Tech Life

Memo by a Japanese Software Developer in his late 50s.

Entries from 2024-03-20 to 1 day

Fetching emails in bulk using Python (More improved version).

I've modularized the previous version of the email fetching script, focusing solely on message retrieval. I omitted the decoding and content processing, leaving those tasks to be handled in the main processing script if needed. I've also a…

pythonでメールを一括取得する(さらに改善版)

前回のメール逐次取得版をモジュール化しました。 今回は、メッセージの取得だけに特化し、 デコード処理やコンテンツ処理は省略しました。 それらの処理が必要な場合は、メイン処理側で対応すること。 モジュールのドキュメンテーションも追加。 以下のコー…