matplotlib.animation.MovieWriterRegistry

class matplotlib.animation.MovieWriterRegistry[source]

Registry of available writer classes by human readable name.

__init__(self)[source]

Initialize self. See help(type(self)) for accurate signature.

Methods

__init__(self) Initialize self.
ensure_not_dirty(self) [Deprecated] If dirty, reasks the writers if they are available
is_available(self, name) Check if given writer is available by name.
list(self) Get a list of available MovieWriters.
register(self, name) Decorator for registering a class under a name.
reset_available_writers(self) [Deprecated] Reset the available state of all registered writers
set_dirty(self) [Deprecated] Sets a flag to re-setup the writers.

Attributes

avail
property avail
ensure_not_dirty(self)[source]

[Deprecated] If dirty, reasks the writers if they are available

Notes

Deprecated since version 3.2.

is_available(self, name)[source]

Check if given writer is available by name.

Parameters:
namestr
Returns:
bool
list(self)[source]

Get a list of available MovieWriters.

register(self, name)[source]

Decorator for registering a class under a name.

Example use:

@registry.register(name)
class Foo:
    pass
reset_available_writers(self)[source]

[Deprecated] Reset the available state of all registered writers

Notes

Deprecated since version 3.2.

set_dirty(self)[source]

[Deprecated] Sets a flag to re-setup the writers.

Notes

Deprecated since version 3.2.