aio-libs-abandoned / aioslacker

slacker wrapper for asyncio

Home Page:https://pypi.python.org/pypi/aioslacker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aioslacker

info:slacker wrapper for asyncio
https://travis-ci.org/aio-libs/aioslacker.svg?branch=master

!!!The library is not maintained!!!

Please use the official client: https://github.com/slackapi/python-slackclient

Installation

pip install aioslacker

Usage

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.

Thanks to the company for contribution.

About

slacker wrapper for asyncio

https://pypi.python.org/pypi/aioslacker

License:MIT License


Languages

Language:Python 100.0%