Metadata-Version: 2.1
Name: Affirmations
Version: 0.0.7
Summary: Randomly adds affirming print statements to functions.
Home-page: https://github.com/TimNicholsonShaw/affirmation
Author: Tim Nicholson-Shaw
Author-email: timnicholsonshaw@gmail.com
License: UNKNOWN
Project-URL: GitHub, https://github.com/TimNicholsonShaw/affirmation
Keywords: Self Care
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Affirmations

A module that gives you a little bump of encouragement. 

## Requirements
- A positive attitude
- A can-do spirit

## Installation

```bash
pip install Affirmations
```

## Usage

Decorate any function to get a random affirmation printed to stdout every time that function is run

```
from Affirmations import affirm

@affirm
def hello_world():
    print("hello")

hello_world()
```
```bash
hello
You are awesome!
```

