Skip to content

2.1.0 - Upgraded date view

Choose a tag to compare

@cubicbyte cubicbyte released this 07 Aug 10:01

Previous:

msg = email.wait_for_message()
print(type(msg.date))  # <class 'str'>

Now:

msg = email.wait_for_message()
print(type(msg.date))  # <class 'datetime.datetime'>
print(type(msg.date_str))  # <class 'str'>

Full Changelog: 2.0.0...2.0.1