이 페이지는 아직 영어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우 언제든지 연락주시기 바랍니다.

Metadata

ID: python-best-practices/no-datetime-today

Language: Python

Severity: Notice

Category: Best Practices

Description

Avoid using datetime.today() and use instead datetime.now(). The two calls are equivalent (as mentioned in the official documentation) and the use of now() is more explicit than today().

Using today() makes you think it only returns the year/month/day but it returns a full timestamp. For this reason, prefer using now().

Non-Compliant Code Examples

from datetime import datetime
print("foo")
bla = datetime.today()  # use datetime.now() instead

Compliant Code Examples

from datetime import datetime
print("foo")
bla = datetime.now()
PREVIEWING: brett.blue/embedded-collector-release