Metadata-Version: 1.1
Name: aioslacker
Version: 0.0.11
Summary: slacker wrapper for asyncio
Home-page: https://github.com/aio-libs/aioslacker
Author: Victor Kovtun
Author-email: hellysmile@gmail.com
License: UNKNOWN
Description: aioslacker
        ==========
        
        :info: slacker wrapper for asyncio
        
        .. image:: https://travis-ci.org/aio-libs/aioslacker.svg?branch=master
            :target: https://travis-ci.org/aio-libs/aioslacker
        
        .. image:: https://img.shields.io/pypi/v/aioslacker.svg
            :target: https://pypi.python.org/pypi/aioslacker
        
        Installation
        ------------
        
        .. code-block:: shell
        
            pip install aioslacker
        
        Usage
        -----
        
        .. code-block:: python
        
            import asyncio
        
            from aioslacker import Slacker
        
            TOKEN = 'xxxxx'
        
            async def go():
                async with Slacker(TOKEN) as slack:
                    await slack.chat.post_message('#general', 'Hello fellow slackers!')
        
            loop = asyncio.get_event_loop()
            loop.run_until_complete(go())
            loop.close()
        
        Thanks
        ------
        
        The library was donated by `Ocean S.A. <https://ocean.io/>`_
        
        Thanks to the company for contribution.
        
Keywords: slack,slacker,asyncio,aiohttp
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
