Skip to content

Instantly share code, notes, and snippets.

View codeallthethingz's full-sized avatar

Will codeallthethingz

  • Could Be Anywhere
View GitHub Profile
@codeallthethingz
codeallthethingz / extract_and_transform_slackdump.py
Created December 10, 2024 00:19
Take a slackdump zip file and extract all the images and recreate the slack export with your public IP and port.
import argparse
import json
import re
import shutil
import zipfile
from pathlib import Path
import requests
aoeu
change