Metadata-Version: 2.1
Name: slackron
Version: 0.0.8
Summary: A Python wrapper to notify about cronjob execution to Slack
Home-page: https://github.com/tferreira/slackron
Author: Thomas Ferreira
Author-email: fulura@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: PyYAML (==5.1.2)
Requires-Dist: requests (==2.22.0)
Provides-Extra: testing
Requires-Dist: pylint (==2.4.1) ; extra == 'testing'

# slackron

**slackron** is a Python wrapper to notify about cronjob execution to **Slack**.

## Disclaimer

This software is currently alpha, and subject to change.

## Installation

slackron is available on [pypi.org](https://pypi.org/project/slackron/).

## Configuration

slackron will look for the following configuration file on your home directory: `~/.slackron.yml`

Example:
```yaml
    webhook_url: https://hooks.slack.com/services/T00/B00/XXXXXXXXXXXX
    channel: "#cron"
    username: Slackron
    emoji: robot
```

## Usage

```sh
*/1 * * * * /usr/local/bin/slackron -- wget -Ss https://example.com
```

## Support

* [File an Issue](https://github.com/tferreira/slackron/issues/new)


