Various scripts written in Golang.
This tool is used to parse the json
-formatted data that comes from exporting Slack workspace data into a csv
file named: slack_records.csv
.
TimeStamp | UserID | UserName | RealName | MessageType | Text | Attachments | Files |
---|---|---|---|---|---|---|---|
string | string | string | string | string | string | []string | []string |
- Move your files to the
SlackMessages
directory.mkdir -p ./SlackMessages cp [SLACK_WORKSPACE_DATA_PATH_HERE]/*.json ./SlackMessages/
- Run the Slack message parser using the command:
make parse-slack-data
.