The effortless solution for managing screen brightness in Python.
Linux support coming soon.
pip install brightness
to test:
python -m brightness
def set(value: int) -> None
Sets the screen brightness to the entered value.
def get() -> (int | None)
Returns the screen brightness.
def increase(value: int) -> None
Increases the screen brightness by the entered value.
def decrease(value: int) -> None
Decreases the screen brightness by the entered value.