前提・実現したいこと
python3.8
windows10
jupyter lab
pythonを使い、outlook情報を取得したいです。
発生している問題・エラーメッセージ
<unknown>.ReceivedTimeとエラーが出てしまいました。
インターネットを検索し、解決策をトライしましたが、解決できませんでした。
エラーメッセージ
AttributeError Traceback (most recent call last)
<ipython-input-28-4e0257f644b1> in <module>
2 a=0
3 for message in messages:
----> 4 RT=message.ReceivedTime
5 hiduketime =datetime.datetime(RT.year ,RT.month, RT.day, RT.hour, RT.minute, RT.second)
~\Anaconda3\lib\site-packages\win32com\client\dynamic.py in getattr(self, attr)
525
526 # no where else to look.
--> 527 raise AttributeError("%s.%s" % (self.username, attr))
528
529 def setattr(self, attr, value):
AttributeError: <unknown>.ReceivedTime
該当のソースコード
a=0
for message in messages:
RT=message.ReceivedTime
hiduketime =datetime.datetime(RT.year ,RT.month, RT.day, RT.hour, RT.minute, RT.second)
試したこと
・anacondaの環境確認
あなたの回答
tips
プレビュー