AttributeError: module 'datetime' has no attribute 'strptime' site:stackoverflow.com code example

Example 1: module 'tensorflow' has no attribute 'ConfigProto'

import tensorflow as tf
and then replace:

tf.ConfigProto by tf.compat.v1.ConfigProto

In fact, the compatibility built in 2.0 to get tf 1.: tf.compat.v1 is really helpful.

Example 2: module 'datetime' has no attribute 'strptime'

Use this: from datetime import datetime
instead of Import datetime

Example 3: AttributeError: module 'tensorflow' has no attribute 'random_normal'

It was moved to tf.random.normal (along with all the other 
tf.random_* functions)