slacker
slacker copied to clipboard
Full-featured Python interface for the Slack API
When publishing an event url, add the option to publish the meetup preview. See example of how Zapier publish a preview.
Hi, I have proxy server to use and try to send simple message. token = 'Blah-Blah; proxy_endpoint = 'http://proxyserverip:8080' slack = Slacker(token, http_proxy=proxy_endpoint, https_proxy=proxy_endpoint,) slack.chat.post_message('#somechannel', 'Hello!!') However, error message comes...
According to the [announcement](https://api.slack.com/changelog/2020-02-legacy-test-token-creation-to-retire), it is no longer possible to issue a new token. I thought that using incoming-webhook might be a detour (mentioned in #91), but It also needs...
Updated users.list to match what's documented on https://api.slack.com/methods/users.list.
users.conversations method is missing. I think this is more complete than https://github.com/os/slacker/pull/169.
users.deletePhoto and users.setPhoto are currently missing from slacker.
Handles the different conversation types. Does not currently support pagination.
Hello, the slack API requires that requests set the correct mime types, like `application/json`. This library does not yet do so. (See for example [Incoming Webhook](https://github.com/os/slacker/blob/7e951cfb7439c5ceac10dbd75216c2767bb30ee9/slacker/__init__.py#L1182)) The slack API does...
How to find ts_id from a given response. I'm trying to send a message to slack and add a thread to original message. To do so I need the ts_id...
Handles users.lookupByEmail API