mostr-zulip-bot/zulip_bots
Anders Kaseorg f11e960537 Add more uses of @override.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2023-11-13 13:36:56 -08:00
..
zulip_bots Add more uses of @override. 2023-11-13 13:36:56 -08:00
architecture.md zulip_bots: Update README.md. 2017-11-14 09:51:09 -08:00
README.md Remove remnants of bots_unmaintained. 2023-11-13 13:29:50 -08:00
setup.py ruff: Fix EXE001 Shebang is present but file is not executable. 2023-10-29 16:54:40 -07:00

Zulip bots

This directory contains the source code for the zulip_bots PyPI package.

The Zulip documentation has guides on using Zulip's bot system and writing your own bots.

Directory structure

zulip_bots  # This directory
├───zulip_bots  # `zulip_bots` package.
│   ├───bots/  # Actively maintained and tested bots.
│   ├───game_handler.py  # Handles game-related bots.
│   ├───lib.py  # Backbone of run.py
│   ├───provision.py  # Creates a development environment.
│   ├───run.py  # Used to run bots.
│   ├───simple_lib.py  # Used for terminal testing.
│   ├───test_lib.py  # Backbone for bot unit tests.
│   ├───test_run.py  # Unit tests for run.py
│   └───bot_shell.py  # Used to test bots in the command line.
└───setup.py  # Script for packaging.