Metadata-Version: 2.1
Name: screen-brightness-control
Version: 0.1.2
Summary: A Python tool to control monitor brightness on Windows and Linux
Home-page: https://github.com/Crozzers/screen-brightness-control
Author: Crozzers
Author-email: captaincrozzers@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Requires-Dist: wmi

# screen_brightness_control
A Python tool for controlling the brightness of your monitor

### How to install:
* Clone/download the repository
* Enter the folder it has been cloned to and run "pip3 install ."
* That should be all

### How to use:
    import screen_brightness_control as sbc
    current_brightness = sbc.get_brightnness()
    sbc.set_brightness(current_brightness+5)

The module has 2 basic functions: set_brightness and get_brightness.
On Windows these use the WMI module, which is nice and simple. On Linux, however, they use a variety of methods.
They will try to run light and xbacklight commands and if that does not work they will edit the /sys/class/backlight files


