All Projects → aio-libs-abandoned → Aioslacker

aio-libs-abandoned / Aioslacker

Licence: mit
slacker wrapper for asyncio

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Aioslacker

binance-chain-python
Binance chain SDK in Python
Stars: ✭ 22 (-4.35%)
Mutual labels:  aiohttp, asyncio
Aiodocker
Python Docker API client based on asyncio and aiohttp
Stars: ✭ 288 (+1152.17%)
Mutual labels:  asyncio, aiohttp
Web Main
🎉 Ultimate Emoji Generator
Stars: ✭ 261 (+1034.78%)
Mutual labels:  asyncio, aiohttp
rigor
HTTP-based DSL for for validating RESTful APIs
Stars: ✭ 65 (+182.61%)
Mutual labels:  aiohttp, asyncio
Aiojobs
Jobs scheduler for managing background task (asyncio)
Stars: ✭ 492 (+2039.13%)
Mutual labels:  asyncio, aiohttp
aiohttp-socks
Proxy (HTTP, SOCKS) connector for aiohttp
Stars: ✭ 147 (+539.13%)
Mutual labels:  aiohttp, asyncio
Aioresponses
Aioresponses is a helper for mock/fake web requests in python aiohttp package.
Stars: ✭ 278 (+1108.7%)
Mutual labels:  asyncio, aiohttp
dvhb-hybrid
A package to mix django and asyncio in one application
Stars: ✭ 45 (+95.65%)
Mutual labels:  aiohttp, asyncio
Sanic Ms
基于sanic的微服务基础架构
Stars: ✭ 336 (+1360.87%)
Mutual labels:  asyncio, aiohttp
Diy Async Web Framework
Learn how modern async web frameworks work, by writing simple clone from scratch
Stars: ✭ 309 (+1243.48%)
Mutual labels:  asyncio, aiohttp
aiodogstatsd
An asyncio-based client for sending metrics to StatsD with support of DogStatsD extension
Stars: ✭ 26 (+13.04%)
Mutual labels:  aiohttp, asyncio
Aiobotocore
asyncio support for botocore library using aiohttp
Stars: ✭ 630 (+2639.13%)
Mutual labels:  asyncio, aiohttp
waio
Is a pretty simple and fully asynchronous framework for WhatsApp Business API written in Python 3.7 with asyncio and aiohttp.
Stars: ✭ 18 (-21.74%)
Mutual labels:  aiohttp, asyncio
aiohttp traversal
Traversal based router for aiohttp.web
Stars: ✭ 21 (-8.7%)
Mutual labels:  aiohttp, asyncio
aiohttp-jwt
aiohttp middleware and helper utils for working with JSON web token.
Stars: ✭ 70 (+204.35%)
Mutual labels:  aiohttp, asyncio
Python3 Concurrency Pics 02
爬取 www.mzitu.com 全站图片,截至目前共5162个图集,16.5万多张美女图片,使用 asyncio 和 aiohttp 实现的异步版本只需要不到2小时就能爬取完成。按日期创建图集目录,保存更合理。控制台只显示下载的进度条,详细信息保存在日志文件中。支持异常处理,不会终止爬虫程序。失败的请求,下次再执行爬虫程序时会自动下载
Stars: ✭ 275 (+1095.65%)
Mutual labels:  asyncio, aiohttp
glQiwiApi
The ultrarapid and multifunctional wrapper over QIWI and YooMoney
Stars: ✭ 44 (+91.3%)
Mutual labels:  aiohttp, asyncio
website
PySlackers website for invites and learning resources
Stars: ✭ 61 (+165.22%)
Mutual labels:  aiohttp, asyncio
Python Slack Sdk
Slack Developer Kit for Python
Stars: ✭ 3,307 (+14278.26%)
Mutual labels:  asyncio, aiohttp
Aiohttp Demos
Demos for aiohttp project
Stars: ✭ 517 (+2147.83%)
Mutual labels:  asyncio, aiohttp

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

!!!The library is not maintained!!!

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

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].