I am trying to make a machine learning classifier in python on images. For doing this I need to access image details like GPS location, timestamp and luminous intensity. I have tried to use matplotlib.pyplot.imread to import the image. This gives me only the RGB information which I also need to use but I cannot access the other specs.
import matplotlib.pyplot as plt
image = plt.imread("test.jpg")
How can I access these other specs from the image in python?