Metadata-Version: 2.1
Name: ML-tools
Version: 0.0.7
Summary: Tools for managing small Machine Learning projects
Home-page: https://github.com/pablonm3/ML_tools
Author: Pablo N. Marino
Author-email: pablo-n-m@hotmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: slackclient (==2.9.2)

Tools for managing small Machine Learning projects

list of tools:
- Slack Bot

## Installation
`pip install ML-tools`


## Usage

### Post message to Slack
        from ML_tools import SlackNotifier
        SlackNotifier(TOKEN).message("testing baby")


### Post error to Slack
        from ML_tools import SlackNotifier
        try:
            smart = 1/0
        except Exception as e:
            SlackNotifier(TOKEN).error(e)

