from time import sleep

from matplotlib import pyplot as plt

fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot([1, 5, 6, 3])
plt.show()
