matplotlib chart export options code example
Example 1: save plot in python
plt.savefig('books_read.png')
Example 2: python save figure as pdf
import matplotlib.pyplot as plt
f = plt.figure()
plt.plot(range(10), range(10), "o")
plt.show()
f.savefig("foo.pdf", bbox_inches='tight')