A toy app to give a breakdown of timezone distribution in a slack workgroup
Project description
Slack Timezoner
If you use slack, it's sometimes useful to get an idea of the geographic distribution of members.
And because we're online, while geographic distance is important to know it's often the timezone that's more relevant for working out when might be sensible to contact someone, or see how a commmunity is distributed.
This is what slack timezoner does. Right now all it does is print out a count of members in your community, by timezone.
## Usage
- Create an app for a single slack group
- Get a Web API token - https://api.slack.com/web#authentication
- Checkout this code
- Install dependencies
- Either use the code programatically, or run it this as a server, to see the JSON output
Create an app
You need to create an app for a single team. See below for more
https://slack.dev/python-slackclient/auth.html#
You can create an app at the link below:
Get a web api token
This is detailed in slack's extensive documentation. You need a Web API token
https://api.slack.com/web#authentication
If it helps it should be visible at a link that looks like the pattern below, and it will be called OAuth Access Token in the web UI:
https://api.slack.com/apps/YOUR_APP_ID/oauth
Check out this code
Use the code programatically, or run the server
This project includes a minimal, single-file Django app, to serve the summary as JSON, to display using some charting or tabular renderer.
python ./minimal.py runserver
Alternatively, you can also import the library and use it programatically in python code:
import slack_timezoner.group_by_timezones
tzc = group_by_timezones.TimeZoneCounter()
# returns a Counter datastructure
res = tzc.summary()
Next steps
This was thrown together in a hurry, and I'd like to adapt this to allow running the same kind of summaries for any public channel in slack workspace.
You can list all the channels in workspace with this API call: https://api.slack.com/methods/conversations.list
Once you have that, you can get a list of the members like so: https://api.slack.com/methods/conversations.members
This returns a list of member ids like so:
{
"ok": true,
"members": [
"U023BECGF",
"U061F7AUR",
"W012A3CDE"
],
"response_metadata": {
"next_cursor": "e3VzZXJfaWQ6IFcxMjM0NTY3fQ=="
}
}
You can then look up the timezones, with this call to recontruct a datastructure similar to the one used in the TimeZoneCounter already.
https://slack.dev/python-slackclient/basic_usage.html#listing-team-members
Contributing
This is currently used in the ClimateAction.tech slack. If you're interested in helping out, please file an issue, or join the slack there.
You can join the link below:
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file slack-timezoner-0.1.2.tar.gz.
File metadata
- Download URL: slack-timezoner-0.1.2.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.9 CPython/3.6.10 Darwin/19.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ed6bebbb768a1921ed61012803c1ebd2683167d435a4e1f52175b3fc285c753
|
|
| MD5 |
264c12aeefc8e9b56280ded6e17a2c7f
|
|
| BLAKE2b-256 |
188d6106e587226eedac0e94d73490129ce7c7c63db87850d6f1d2e830dd0b8d
|
File details
Details for the file slack_timezoner-0.1.2-py3-none-any.whl.
File metadata
- Download URL: slack_timezoner-0.1.2-py3-none-any.whl
- Upload date:
- Size: 3.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.9 CPython/3.6.10 Darwin/19.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edc226fc78d7eb7210abbc6cf7f7adb62d3b8a60764a3a62453edfd721af1f8f
|
|
| MD5 |
bccebd6bcb54bcf55af2cfbf7b7a4bc2
|
|
| BLAKE2b-256 |
6b527648c48e4c4c19af3652d172df87ad983e3ed6aff25abfbe95c7f129cc75
|