Skip to content

2.1.0 - Upgraded date view

Compare
Choose a tag to compare
@cubicbyte cubicbyte released this 07 Aug 10:01
· 19 commits to main since this release

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