Skip to content

Scan Status

ScanStatus(subsonic, scanning, count)

Bases: Model

Object that holds all the info about a scan status.

Attributes:

Name Type Description
scanning bool

If the server is scanning media or not.

count int

The number of media already scanned.

Source code in .venv/lib/python3.11/site-packages/knuckles/models/_scan_status.py
def __init__(self, subsonic: "Subsonic", scanning: bool, count: int) -> None:
    super().__init__(subsonic)

    self.scanning: bool = scanning
    self.count: int = count