Skip to content
This repository has been archived by the owner on Oct 24, 2020. It is now read-only.

aio-libs-abandoned/aioslacker

Repository files navigation

aioslacker

info

slacker wrapper for asyncio

image

image

!!!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.