Skip to content

Instantly share code, notes, and snippets.

@jackcarter
jackcarter / slack_delete.py
Last active October 13, 2022 15:22
Delete Slack files older than 30 days. Rewrite of https://gist.github.com/jamescmartinez/909401b19c0f779fc9c1
View slack_delete.py
import requests
import time
import json
token = ''
#Delete files older than this:
ts_to = int(time.time()) - 30 * 24 * 60 * 60
def list_files():