STIX Flare Analysis Bot
How to contribute code to the STIX flare analysis bot
Plugins can be inserted to the bot. They should look similar to the example below: <code> from matplotlib import pyplot as plt def plot_goes_x_ray_flux(start_utc, end_utc): '''code to retrieve GOES light curve data plot the data ''' plt.plot(xx) filename='filename.svg' plt.savefig(filename) return filename </code>