/slack-channel-history-analyzer

Analyze Slack Channel history by counting threads with specified keywords

Primary LanguagePythonApache License 2.0Apache-2.0

Slack channel history analyzer

Analyze Slack channel history by counting threads with specified keywords.

This small project contains two Python scripts:

  1. fetchHistory.py - fetches a Slack channel history and saves it to a json file.
  2. analyzeHistory.py - counts threads with specified keywords, aggregates those threads per month and renders them on a chart.

Example analyze

Example Slack channel history analyze with threads containing keywords such as Apple, Mango, Orange, etc.

alt text

Requirements

  • Python 2.7+
  • Token from a Slack Application with channels.history scope. You can create the Slack Application to get this token, but then you need to install the App in the channel which you want to analyze.

How to run

Fetch history

python ./fetchHistory.py -token {token} -channel {channelID} 

Where:

  • {token} is a token from Slack App with permission to read channel history. With this token you should be able to run the following test method.
  • {ChannelID} you can get from URL of Slack Web Client.

Analyze history

python ./analyzeHistory.py -threads '[{"name": "Apple", "keywords": ["apple", "green"], "color": "#008000", "debug": false}, {"name": "Mango", "keywords": ["mango", "yellow"], "color": "#FF0000"}]'

-threads parameter is a JSON list in which every element has to have name and keywords fields. name is a thread name and keywords is a list of words which represent the thread. If a Slack channel thread contains specified keyword, then counter of the corresponding thread is incremented. The configuration from above command means that if in a Slack thread there is a word apple or green, then number of Apple threads is incremented.