This bot connects your team to the outside and makes it addressable.
Go to file
2023-10-07 14:22:08 +02:00
src/teams_bot added tests for setup and get_crew_id 2023-10-07 14:22:08 +02:00
tests added tests for setup and get_crew_id 2023-10-07 14:22:08 +02:00
.gitignore added necessary project files 2023-10-07 08:50:04 +02:00
LICENSE added necessary project files 2023-10-07 08:50:04 +02:00
pyproject.toml added necessary project files 2023-10-07 08:50:04 +02:00
README.md documented development environment 2023-10-07 10:14:11 +02:00
setup.cfg added tests for setup and get_crew_id 2023-10-07 14:22:08 +02:00

Teams Bot

This bot connects your team to the outside and makes it addressable.

Configure this bot with your team address (e.g. helpdesk@example.org), and add all your team members to the crew. Then, every time an outsider writes to your team address, the bot opens a new relay group with all of you; you can use the relay group to discuss the request in private and when you have come to a conclusion, answer the request. The bot will forward the answer to the outsider in the name of the team, hiding the identities of the team members.

Setup

Configuration

Usage: Command Line Interface

Development Environment

To get started with developing, run:

python3 -m venv venv
. venv/bin/activate
pip install pytest tox black
pip install -e .
tox