'datetime' has no attribute 'now' code example
Example 1: datetime has no attribute now
#You probably have
import datetime
#change that to
from datetime import datetime
Example 2: 'datetime' has no attribute 'now'
import datetime
print(datetime.__file__)