As per slackapi/python-slack-sdk#183 (comment) the slackclient module has changed substantially, and this tutorial as written no longer works
from slackclient import SlackClient
fails as now the module is 'slack' not 'slackclient' and SlackClient is no longer an option - you need to choose slack.WebClient or slack.RTMClient,