Last active
February 11, 2025 15:46
-
Star
(125)
You must be signed in to star a gist -
Fork
(28)
You must be signed in to fork a gist
-
-
Save jackcarter/d86808449f0d95060a40 to your computer and use it in GitHub Desktop.
Delete Slack files older than 30 days. Rewrite of https://gist.github.com/jamescmartinez/909401b19c0f779fc9c1
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 time | |
import json | |
token = '' | |
#Delete files older than this: | |
ts_to = int(time.time()) - 30 * 24 * 60 * 60 | |
def list_files(): | |
params = { | |
'token': token | |
,'ts_to': ts_to | |
,'count': 1000 | |
} | |
uri = 'https://slack.com/api/files.list' | |
response = requests.get(uri, params=params) | |
return json.loads(response.text)['files'] | |
def delete_files(file_ids): | |
count = 0 | |
num_files = len(file_ids) | |
for file_id in file_ids: | |
count = count + 1 | |
params = { | |
'token': token | |
,'file': file_id | |
} | |
uri = 'https://slack.com/api/files.delete' | |
response = requests.get(uri, params=params) | |
print count, "of", num_files, "-", file_id, json.loads(response.text)['ok'] | |
files = list_files() | |
file_ids = [f['id'] for f in files] | |
delete_files(file_ids) |
Does anyone know if any of these scripts work in 2025? Or maybe there is some viable alternative? @IlanVivanco
Does anyone know if any of these scripts work in 2025? Or maybe there is some viable alternative? @IlanVivanco
I haven't attempted this in a while, but I just tried, and the script I have here is still able to connect properly to the Slack API.
What's the problem you're facing now?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
None of the scripts listed here works anymore for me. Something changed @slack?