Skip to main content

A multi-platform chat bot framework

Project description

Chatty

A multi-platform chat bot framework

Description

Chatty is a Python 3 package designed to map any chat platform to the same standardized interface. The goal is to allow a chat bot to be remapped from one platform or protocol to another, or even to multiple platforms at the same time, with nothing more than a change to a configuration file.

Current Development Status

Chatty is brand new, and has currently only been tested for basic message delivery using email (imap & smtp, but not pop3 yet), xmpp, and Slack. See the TODO list for a list of other platforms that will (hopefully) eventually be supported.

Usage

from chatty.bots.standard import make_bot
from chatty.sessions.slack import SlackSession
from chatty.signals.message import Message
from chatty.signals.metadata import SignalMetaData
from chatty.types import Handle, Password


SLACK_BOT_TOKEN = Password('Your Slack bot token goes here...')
BOT_HANDLE = Handle('Your Slack bot user name goes here...')


def converse(session, signal):
    """Say 'hi!' back on the same channel whenever someone says 'hello'"""
    if isinstance(signal, Message) and 'hello' in str(signal.content).lower():
        meta_data = SignalMetaData(
            origin=BOT_HANDLE,
            addressees=[signal.meta_data.room or signal.meta_data.origin],
            response_to=signal.meta_data.identifier
        )
        return Message(meta_data, 'hi!')


session = SlackSession(SLACK_BOT_TOKEN)  # Create a new Slack session
session.add_bot(make_bot(converse))  # Connect our bot to it
session.join(timeout=5 * 60)  # Hang out for 5 minutes
session.close()  # Drop offline

Contributing

If you have a need for a specific platform or protocol to be supported, I'll be happy to accept pull requests. If you're looking to contribute but need a place to start, please see the TODO list. There are plenty of platforms and functionality yet to be added. Each supported platform has its own module in the chatty/sessions folder, and its dependencies should be added to the extras_require parameter in setup.py. Tests go in the test_chatty folder and are named with test_ prefixed to the name of the module being tested.

Submitted code should adhere to pep8 guidelines and should, in general, follow the conventions established elsewhere in the Chatty code base. For the sake of clarity, please note that by submitting a pull request, you agree, as per standard practice, and also the GitHub terms of service to make your code available under the license governing this project.

Design

The design of Chatty is object-oriented, and centers around 3 core abstractions:

  • Signals: A signal is any single indivisible element of communication, such as a message or a notification, which may or may not contain content or data of some sort. Signals always come with certain attached metadata which determines where the signal originated, who it was sent to, when it was sent, etc.
  • Bots: A bot is an endpoint where inbound signals are handled, and outbound signals are generated.
  • Sessions: A session is an open channel over which signals can be sent and/or received.

By default, signals arrive and are sent asynchronously. The SynchronizedBot wrapper can be used to ensure receipt and sending of signals is fully synchronized from the perspective of the bot.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Chatty-0.1.2.tar.gz (17.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

Chatty-0.1.2-py3-none-any.whl (29.0 kB view details)

Uploaded Python 3

File details

Details for the file Chatty-0.1.2.tar.gz.

File metadata

  • Download URL: Chatty-0.1.2.tar.gz
  • Upload date:
  • Size: 17.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Chatty-0.1.2.tar.gz
Algorithm Hash digest
SHA256 42f13d44146b66283d0a26f9ee120aebb0033ff40846aa34e4dcb7b054060f31
MD5 4dafb3f72c927742d798a2b57e5ece75
BLAKE2b-256 2e62e2e9f308f0d40317ad66f129998f098cb1336da942d0469f9c8aeb72bc28

See more details on using hashes here.

File details

Details for the file Chatty-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for Chatty-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 bff50a26289466372917b616f07f09a7406151608fb01806a35eff80011b9b10
MD5 08e9b6d1958f66c9741051ff4afd1753
BLAKE2b-256 95694c1d9c638fc5f4100f8f2224ba920a23aa023e5bf8b53ffa32f08af05629

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page