Metadata-Version: 2.1
Name: brightness
Version: 0.0.1
Summary: The effortless solution for managing screen brightness in Python.
Home-page: https://github.com/ekinpy/brightness
Author: Ekin Aksu
License: MIT License
Keywords: windows,screen,brightness
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
License-File: LICENSE

![Logo](https://raw.githubusercontent.com/ekinpy/brightness/main/brightness.png)

The effortless solution for managing screen brightness in Python.\
Linux support coming soon.

## Installing

```sh
pip install brightness
```

to test:

```sh
python -m brightness
```

## set()
```python
def set(value: int | float) -> None
```
Sets the screen brightness to the entered value.

## get()
```python
def get() -> (int | None)
```
Returns the screen brightness.

## increase()
```python
def increase(value: int) -> None
```
Increases the screen brightness by the entered value.

## decrease()
```python
def decrease(value: int) -> None
```
Decreases the screen brightness by the entered value.
