Skip to content

signalbot-org/signalbot

Repository files navigation

Signal Bot Framework

PyPI Downloads Version License CI codecov

Python package to build your own Signal bots.

Installation

See the getting started section in the documentation.

Minimal bot

This is what a minimal bot using signalbot looks like:

import os
import logging
from signalbot import SignalBot, Config, Command, Context, triggered, enable_console_logging


class PingCommand(Command):
    @triggered("Ping")
    async def handle(self, context: Context) -> None:
        await context.send("Pong")


if __name__ == "__main__":
    enable_console_logging(logging.INFO)

    bot = SignalBot(
        Config(
            signal_service=os.environ["SIGNAL_SERVICE"],
            phone_number=os.environ["PHONE_NUMBER"],
        )
    )
    bot.register(PingCommand()) # Run the command for all contacts and groups
    bot.start()

Help

See the documentation for more details.

Other Projects

There are a few other projects similar to this one. You may want to check them out and see if they fit your needs.

Project Description Language Maintained
https://github.com/AsamK/signal-cli A CLI and D-Bus interface for Signal Java
https://github.com/bbernhard/pysignalclirestapi Python Wrapper for REST API Python
https://github.com/bbernhard/signal-cli-rest-api REST API Wrapper for Signal CLI Go
https://github.com/signal-bot/signal-bot Bot Framework using Signal CLI Python
https://github.com/signalapp/libsignal-service-java Signal Library Java
https://github.com/aaronetz/signal-bot Bot Framework Java
https://gitlab.com/signald/signald A socket interface for Signal Java
https://codeberg.org/lazlo/semaphore signald Library / Bot Framework Python
https://git.sr.ht/~nicoco/aiosignald signald Library / Bot Framework Python
https://gitlab.com/stavros/pysignald signald Library / Bot Framework Python
https://gitlab.com/signald/signald-go signald Library Go

About

Micro framework to create your own signal bots.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages