This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import logging | |
import os | |
from typing import List, NotRequired, TypedDict | |
from slack_bolt import Ack, App, Complete, Fail, Say | |
from slack_bolt.adapter.socket_mode import SocketModeHandler | |
from slack_sdk import WebClient | |
logging.basicConfig(level=logging.INFO) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import sys | |
from typing import Dict, TypedDict | |
relevant_python_versions = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
allowed_pkg_names = ["slack_sdk", "slack_bolt", "slack_cli_hooks"] | |
pkg_name = allowed_pkg_names[0] | |
if len(sys.argv) >= 2: | |
if sys.argv[1] not in allowed_pkg_names: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CHANNEL_ID=<your channel id> | |
SLACK_BOT_TOKEN=<you bot token> | |
IMAGE_PATH=<path to original file> | |
UPDATE_IMAGE_PATH=<path to the file that will update the image block> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
from slack_sdk import WebClient | |
from slack_bolt import App, Ack, Say, Complete, Fail, BoltContext | |
from slack_bolt.adapter.socket_mode import SocketModeHandler | |
logging.basicConfig(level=logging.DEBUG) | |
app = App() | |