Metadata-Version: 2.1
Name: easynotify
Version: 0.1.1
Home-page: https://github.com/CauchyComplete/EasyNotify
Author: CauchyComplete
Author-email: corundum240@gmail.com
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE

# EasyNotify
This package allows you to post messages with bots easily.

## Install
Install this package:

```pip install easynotify```

If it does not work, try:

```pip install git+https://github.com/CauchyComplete/EasyNotify```

## SlackBot
In your slack workspace, click the top left menu > Settings & administartion > Manage apps.

Search for "Incomming Webhooks" and click "Add to Slack".

Choose a channel you want to use and click "Add Incoming Webhooks integration".

Now you can post onto this workspace using this library.

```angular2html
import easynotify
bot = easynotify.SlackBot("https://hooks.slack.com/services/...")  # Your Webhook URL
bot.post("Test Message", username="SlackBot", icon_emoji=":ghost:", print_also=True)
```
