API 지침 당 적중 목록에 대한 만료 연장 시도
for hit_id in expired_hit_list:
response = client.update_expiration_for_hit(
HITId=hit_id,
ExpireAt=datetime(2017, 4, 9, 19, 9, 41, tzinfo=tzlocal())
)
오류 발생 :
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-59-e0764e20a54b> in <module>()
2 response = client.update_expiration_for_hit(
3 HITId=hit_id,
----> 4 ExpireAt=datetime(2017, 4, 9, 19, 9, 41, tzinfo=tzlocal())
5 )
NameError: name 'datetime' is not defined
또한 datetime.datetime 및 dateTime을 시도하고 제거했습니다.
ExpireAt=(2017, 4, 9, 19, 9, 41, tzinfo=tzlocal())
작동하지 않습니다. 제안?
내 Python 설정의 문제 일 뿐이며 boto3와는 관련이 없습니다.
import datetime
from dateutil.tz import tzlocal
이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.
침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제
몇 마디 만하겠습니다