Created
September 8, 2014 03:26
-
-
Save minikomi/6dcd7c363330a8391dbe to your computer and use it in GitHub Desktop.
get all urls mentioned in a slack channel for dump to txt
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 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