Metadata-Version: 1.1
Name: aioslacker
Version: 0.0.1
Summary: slacker wrapper for asyncio
Home-page: https://github.com/wikibusiness/aioslacker
Author: wikibusiness
Author-email: osf@wikibusiness.org
License: UNKNOWN
Description: aioslacker
        ==========
        
        :info: slacker wrapper for asyncio
        
        .. image:: https://img.shields.io/travis/wikibusiness/aioslacker.svg
            :target: https://travis-ci.org/wikibusiness/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()
        
        
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
