Skip to content

Latest commit

 

History

History
55 lines (37 loc) · 842 Bytes

README.md

File metadata and controls

55 lines (37 loc) · 842 Bytes

Supparize

A CLI tool to fetch and summarize your Slack threads.

Requirements

  • Python 3.12+
  • uv package installer
  • Slack Bot Token with the following scopes:
    • channels:history
    • channels:read
    • groups:read
    • im:read
    • mpim:read

Installation

Using uv:

uv sync

Configuration

Set your Slack Bot token as an environment variable:

export SLACK_TOKEN="xoxb-your-token"

Basic usage - fetch threads from multiple channels

uv run supparize general announcements

Specify end date

uv run supparize general --end-date 2024-03-20

Customize lookup duration

uv run supparize general --duration 14

Combine options

uv run supparize general announcements --end-date 2024-03-20 --duration 14