Exchangelib流通知处理事件

时间:2018-07-19 12:54:11

标签: python flask exchangelib

因此,我使用来自请求请求355的exchangelib分支,其中实现了流通知。在我的代码中,我获得了对话ID并创建了流订阅

def event_catch(self,account):
    id = ""
    ids = account.stream(account.calendar)
    for each in ids:
        print(each)
        id = each
    return account.events(each)

它返回事件对象。我想知道的是如何处理返回数据。

目前我有这个,但是它崩溃了。

event = data.event_catch(account)
while true:
    for each in event:
        print(each)

我可以像这样存储事件对象。

event = data.event_catch(account)

我不知道该怎么做,并在返回事件时执行操作。

1 个答案:

答案 0 :(得分:0)

Pull request #355不完整且未经测试,因此您必须做一些实际工作才能使其正常工作。 PR中有有用的评论可帮助您入门:-)