Pytplot Arc

from matplotlib import patches
import matplotlib.pyplot as plt

figure = plt.figure(figsize = (10, 10))
axes = figure.add_subplot(111)
axes.add_artist(patches.Arc((0, 0), 10, 10, 20, 0, 120, color = 'red'))
Glorious Goshawk