Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

slack-progress-bar

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

slack-progress-bar

A Python package for displaying progress bars in Slack messages.

  • 2.0.0
  • PyPI
  • Socket score

Maintainers
1

slack-progress-bar Downloads

A Python library for adding a progress bar to a Slack Bot, updated for Python 3.9+.

animated-gif

Installation

pip install slack-progress-bar

Tutorial

  1. Setup your bot using the Slack API and grab the associated Bot User OAuth Token (Settings -> Install App).
  2. Get the user_id for the person you want to receive updates. This can be found by going to a Slack profile and clicking Copy member ID.
import time
from slack_progress_bar import SlackProgressBar

progress_bar = SlackProgressBar(token=BOT_TOKEN, user_id=SLACK_MEMBER_ID, total=150)
for i in range(151):
   time.sleep(0.1)
   progress_bar.update(i)

Instantiating a SlackProgressBar will send a message featuring an empty progress bar. from the bot account to your Slack user. The message will be sent from your Bot account to your Slack user in a private message. Calling update() will update that progress bar on Slack. To create a new progress bar on Slack, instantiate a new instance of SlackProgressBar.

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc