Chilkat2-Python
Chilkat2-Python
Replace Deprecated GetExpirationDt
Shows how to replace the deprecated GetExpirationDt method.Chilkat Chilkat2-Python Downloads
import chilkat2
cache = chilkat2.Cache()
# ....
# ....
cache_item_key = "xyz"
# Instead of this:
# dt1 is a CkDateTime
dt1 = cache.GetExpirationDt(cache_item_key)
# Do this:
dt2 = chilkat2.CkDateTime()
dt2.SetFromRfc822(cache.GetExpirationStr(cache_item_key))