AttrMeta#

class sunpy.net.attr.AttrMeta[source]#

Bases: type

We want to enable discovery, by tab completion, of values for all subclasses of Attr. So have to create a metaclass that overloads the methods that Python uses, so that they work on the classes. This would allow that attrs.Instrument to be able to tab complete to attrs.Instrument.aia.

Methods Summary

show_in_notebook(**kwargs)

Display the attrs tables as interactive grids in a Jupyter Notebook.

Methods Documentation

show_in_notebook(**kwargs)[source]#

Display the attrs tables as interactive grids in a Jupyter Notebook.

This function utilizes the itables library to render tables as interactive grids.

Note

This function requires the optional dependency itables. Ensure it is installed before calling this method.

Parameters:

**kwargs (dict, optional) – Additional keyword arguments to customize the itables.show function.