Metadata-Version: 2.1
Name: coffeepy
Version: 0.1.1
Summary: Coffeepy prevents the system from sleeping
Author-email: kuvaus <kuvaus@users.noreply.github.com>
Project-URL: Homepage, https://github.com/kuvaus/coffeepy
Project-URL: Bug Tracker, https://github.com/kuvaus/coffeepy/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Coffeepy

Coffeepy ☕️ is a small program that prevents the system from sleeping.
Works on MacOS, Windows and Linux.

<img alt="coffeepy" src="https://github.com/kuvaus/coffeepy/assets/22169537/d2954958-4c92-4791-92b9-36e46f448abc.gif" width="600" />

## Installation

```sh
pip install -U coffeepy
```

## Usage

Simply run the program from command line
```sh
coffeepy
```

By default the program runs indefinitely. Press `Ctrl-C` to quit

Optional: You can set the time in minutes with `-t` flag. To run the program for 1 hour, use

```sh
coffeepy -t 60
```

## Python module

You can also import coffeepy as a python module

```python
import coffeepy

coffeepy.run()
```


## License

This project is licensed under the MIT [License](https://github.com/kuvaus/coffeepy/blob/main/LICENSE)


