Skip to main content

Simple class for storing slack profile information.

Project description

slackperson

https://travis-ci.org/rickh94/slackperson.svg?branch=master https://codecov.io/gh/rickh94/slackperson/branch/master/graph/badge.svg

A simple class (SlackPerson) for retrieving and storing information about a person in your slack channel from the slack api.

Installation

$ python setup.py install

You will also need the slackclient package.

Usage

The SlackPerson class initializes with a username (as you would user in an @mention) and a list of users on the channel to pull the user’s info out of.

After initialization, an instance of SlackPerson will have these attributes:

  • username: the username supplied at instantiation (if username was supplied with preceeding ‘@’, it will be stripped off.)

  • userid: the internal id of the user (this is useful for tagging in api generated messages.

  • email: the user’s account email address in slack

  • fname: the user’s first name

  • lname: the user’s last name

  • team: the user’s team id

Import and use the SlackPerson class:

from slackperson import SlackPerson
from slackclient import SlackClient

sc = SlackClient(os.environ['SLACK_API_TOKEN'])
userlist = sc.api_call('users.list')
me = SlackPerson('myusername', userlist)

If myusername is a member of your channel (i.e. on the userlist), the object me will now have all of the SlackPerson attributes. If not, it will raise SlackDataError. It will also raise SlackDataError if the userlist is malformed in any way.

Tests

There is a test case for a successful creation of a SlackPerson object and for the cases where exceptions should be raised. They are unittests so they can be run with unittest discovery or pytest.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

slackperson-0.1.1-py3-none-any.whl (4.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page