Structured Slack bot framework.
Project description
Slaccato
Structured Slack bot framework
Installation
$ pip install slaccato
Example
General Usage
import slaccato
# Write a new method
class TestMethod(slaccato.SlackMethod):
@property
def execution_words(self):
return ['테스트', 'test', 'ping']
@property
def help_text(self):
return '*{}*: You can test me!'.format('/'.join(self.execution_words))
def response(self, channel, thread_ts, user_command, request_user):
response = 'Oh, {}! here I am!!!'.format(request_user)
return channel, thread_ts, response
slack_bot = slaccato.SlackBot(
slack_bot_token='SLACK_BOT_TOKEN',
slack_bot_name='SLACK_BOT_NAME',
# Optional. Use default logger
logger=None,
)
slack_bot.add_method(TestMethod)
slack_bot.run()
Message Customization
Please see Slack API documentations
import slaccato
# Write a new method
class TestMethod(slaccato.SlackMethod):
@property
def execution_words(self):
return ['테스트', 'test', 'ping']
@property
def help_text(self):
return '*{}*: You can test me!'.format('/'.join(self.execution_words))
def response(self, channel, thread_ts, user_command, request_user):
response = [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Danny Torrence left the following review for your property:"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "<https://example.com|Overlook Hotel> \n :star: \n Doors had too many axe holes, guest in room " +
"237 was far too rowdy, whole place felt stuck in the 1920s."
},
"accessory": {
"type": "image",
"image_url": "https://images.pexels.com/photos/750319/pexels-photo-750319.jpeg",
"alt_text": "Haunted hotel image"
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Average Rating*\n1.0"
}
]
}
]
return channel, thread_ts, response
LICENSE
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file slaccato-0.2.1-py3-none-any.whl.
File metadata
- Download URL: slaccato-0.2.1-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0f6c2a1b56f7dc197dec025b35924332a4ee2bb5ff87b6861a6cdc4da65d9c9
|
|
| MD5 |
fd64147ef77ec348b0aa377db585130b
|
|
| BLAKE2b-256 |
7e99857c391835214358de6e82a9b745d0120078776a2dcdc5349826e55cfca5
|