Skip to content

UCSD-E4E/label-studio-slack-reporter

Repository files navigation

Label Studio Slack Reporter

This bot reports on the labeling progress on slack on a daily basis

Getting Started

pip install git+https://github.com/UCSD-E4E/label-studio-slack-reporter.git

Installing for developers

Developers should do the following:

# Create a virtual environment
python -m venv .venv

# Activate the virtual environment
.venv/Scripts/activate.ps1   # for Windows PowerShell
.venv/Scripts/activate.bat   # for Windows Command Prompt
source .venv/bin/activate    # for bash

# Update dependencies
python -m pip install --upgrade pip poetry

# Install package
poetry install