Metadata-Version: 2.1
Name: ML-tools
Version: 0.0.5
Summary: ML tools for small projects
Home-page: https://github.com/pablonm3/ML_tools
Author: Pablo N. Marino
Author-email: pablo-n-m@hotmail.com
License: UNKNOWN
Description: Set of ML tools for small projects
        
        ## 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)
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
