Metadata-Version: 2.5
Name: mood-cli
Version: 0.1.0
Summary: tiny terminal tool that gives you a random motivational message
Project-URL: Homepage, https://github.com/shibinshibii/mood
Project-URL: Issues, https://github.com/shibinshibii/mood/issues
Author-email: shibinshibi <shibi393493@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: requests
Requires-Dist: rich
Description-Content-Type: text/markdown

# mood

A tiny terminal tool that fetches a random motivational message and prints it in a random color.

Just run `mood` whenever you need a little motivation.

## Installation

### Using pip

```bash
pip install mood-cli
```

### Using pipx

```bash
pipx install mood-cli
```

## Usage

Simply run:

```bash
mood
```

You'll get a random motivational message:

```text
Believe you can and you're halfway there.
```

The message is fetched from the [Affirmations API](https://www.affirmations.dev/), and the color is randomly generated each time.

## Requirements

- Python 3.9+
- Internet connection

## Development

Clone the repository and install the project locally:

```bash
git clone https://github.com/shibinshibii/mood.git
cd mood

python -m venv venv
source venv/bin/activate

pip install -e .
```

Then run:

```bash
mood
```

## License

MIT
