Skip to content

Latest commit

 

History

History
61 lines (41 loc) · 1.47 KB

README.rst

File metadata and controls

61 lines (41 loc) · 1.47 KB

Slacker

pypi build status gitter chat

https://raw.githubusercontent.com/os/slacker/master/static/slacker.jpg

About

Slacker is a full-featured Python interface for the Slack API.

Examples

from slacker import Slacker

slack = Slacker('<your-slack-api-token-goes-here>')

# Send a message to #general channel
slack.chat.post_message('#general', 'Hello fellow slackers!')

# Get users list
response = slack.users.list()
users = response.body['members']

# Upload a file
slack.files.upload('hello.txt')

# If you need to proxy the requests

proxyEndpoint = 'http://myproxy:3128'
slack = Slacker('<your-slack-api-token-goes-here>', httpProxy=proxyEndpoint, httpsProxy=proxyEndpoint)

# Send a message to #general channel
slack.chat.post_message('#general', 'Hello fellow slackers!', as_user=True)

Installation

$ pip install slacker

Documentation

https://api.slack.com/methods