Skip to content

Latest commit

 

History

History
98 lines (67 loc) · 2.24 KB

README.md

File metadata and controls

98 lines (67 loc) · 2.24 KB
SLACK-ALERTS
SIMPLE SLACK ALERTING PYTHON LIBRARY
────

 

 

Usage

import slack_alerts

alerter = slack_alerts.Alerter('https://your-slack.webhook/url')
alerter.critical('something bad happened!!')

Installation

With pip

pip3 install --user slack_alerts

As a dependency

# with poetry
poetry add slack_alerts

# with virtualenv
virtualenv -p python3 .env
source .env/bin/activate
pip install slack_alerts

# with pipenv
pipenv install slack_alerts

Tests

Run pytest for unit tests

# you need a valid slack webhook url as there is no api mocking
export SLACK_WEBHOOK_URL='https://...'

poetry run coverage run --source slack_alerts -m pytest -v
poetry run coverage report

Run flake8 for code style

poetry run flake8 .

Built With

  • Poetry - Python dependency management made great
  • Requests - The famous and robust http client library