删除没有生命周期规则的旧S3对象
问题描述
我在AWS中有一个存储桶,其中定期上载文件。存在此存储桶不能附加生命周期规则的策略。
我正在寻找一种可以移除超过2周的物品的lambda。我知道timeDelta库可以用于比较日期,但是我不知道如何使用它来检查对象是否超过2周(我是Python新手)。
到目前为止我有:
import boto3
import datetime
s3 = boto3.resource('s3')
now = datetime.datetime.now()
now_format = int(now.strftime("%d%m%Y"))
print(f'it is now {now_format}')
# Get bucket object
my_bucket = s3.Bucket('cost-reports')
all_objects = my_bucket.objects.all()
for each_object in all_objects:
obj_int = int(each_object.last_modified.strftime('%d%m%Y'))
print("The object {} was last modified on the {}".format(
each_object.key, obj_int))
这只是使用strftime比较,但这实际上也会起作用吗?或者我必须使用timeDelta模块,这看起来会是什么样子?
解决方案
您的each_object.last_modified
是datetime
对象,就像now
一样。
所以要计算从上次修改算起的天数,应该很简单:
now = datetime.datetime.now().astimezone()
last_modified_days_ago = (now - each_object.last_modified).days
相关文章