Module homey.manager.images
Classes
class ManagerImages-
Manages images used by the app. You can access this manager through the Homey instance as
self.homey.images.Ancestors
- Manager
- SimpleClass
- EventEmitter
- typing.Generic
- abc.ABC
Methods
async def create_image(self) ‑> Image-
Create an image instance.
def get_image(self, id: str) ‑> Image-
Get the image with the given ID.
Raises
NotFound- Raised if no image with the given ID is found.
async def unregister_image(self, image: Image) ‑> None-
Unregister the given image.
Args
image- The
Imageto unregister.
Raises
NotRegistered- Raised if the image is not registered.
Inherited members