Skip to content

Instantly share code, notes, and snippets.

@minikomi
Created September 8, 2014 03:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save minikomi/6dcd7c363330a8391dbe to your computer and use it in GitHub Desktop.
Save minikomi/6dcd7c363330a8391dbe to your computer and use it in GitHub Desktop.
get all urls mentioned in a slack channel for dump to txt
import requests
import json
import re
baseurl = "https://slack.com/api/channels.history"
token = "ur_token_plz"
channel = "C029WAA59"
urlregex = re.compile("<(http[s]{0,1}:\/\/.+?)>")
def scrapelinks(latest=""):
payload = {"token" : token,
"channel": channel,
"latest" : latest,
"count" : 1000
}
r = requests.get(baseurl, params=payload)
j = json.loads(r.text)
for m in j['messages']:
if 'text' in m:
mtch = urlregex.match(m['text'])
if mtch:
print(mtch.groups()[0])
elif 'attachments' in m:
for a in m['attachments']:
print(urlregex.match(a['text']).groups()[0])
if(j['has_more']):
scrapelinks(latest=j['messages'][-1]['ts'])
scrapelinks()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment