Metadata-Version: 2.1
Name: slacktastic
Version: 0.1.2
Summary: Package to send Statistics over a Slack Incoming Webhook
Home-page: https://github.com/imperatus/slacktastic
Author: Jurgen Buisman
Author-email: jurgen@labela.nl
License: MIT license
Keywords: slacktastic
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: requests

===========
slackistics
===========

Package to send Statistics over a Slack Incoming Webhook


* Free software: MIT license
* Documentation: https://slackistics.readthedocs.io.


Features
--------

* TODO

Credits
-------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage


Usage
-----
.. code-block:: python

    from slacktastic.client import SlackClient
    from slacktastic.template import Attachment, PieChart, Message

    client = SlackClient(webhook_url='YOUR WEBHOOK URL')
    attachment = Attachment(
        title='Cool block title',
        title_link='https://labela.nl',
        text='Some awesome text')

    chart = PieChart(
            title="Test data",
            data={
                'labels': ['Alpha', 'Omega'],
                 'values': [22, 55]
             }
        )

    message = Message(
        text="I want to show you some *magic* :sparkles:",
        attachments=[attachment, chart]
    )
    client.send_message(message)



=======
History
=======

0.1.0 (2019-07-25)
------------------

* First release on PyPI.


