Skip to main content

A library to connect to https://hack.chat/

Project description

Example

#!/usr/bin/env python3

import hclib


# Make a callback function with two parameters.
def on_message(connector, data):
    # The second parameter (<data>) is the data received.
    print(data)
    print(connector.onlineUsers)
    # Checks if someone joined the channel.
    if data["type"] == "online add":
        # Sends a greeting the person joining the channel.
        connector.send("Hello {}".format(data["nick"]))


    if __name__ == "__main__":
        hclib.HackChat(on_message, "myBot", "botDev")

Documentation

  1. Open the interactive Python console:
    • Windows: python

    • Other: python3

  2. Import the module: import hclib

  3. Generate the documentation: help(hclib)

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

hclib-0.1.3.tar.gz (3.9 kB view hashes)

Uploaded Source

Supported by

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