Skip to main content

No project description provided

Project description

Chartsworth

Chartsworth posts from notebooks to slack. This little metric monster lets you post plots, images, and anything else the slack sdk will let you post.

Read more background and workflows around scheduling in the Notebook Reporting with Chart Monsters Post.

Installation and Setup

pip install chartsworth

Set environment variable CHARTSWORTH_TOKEN to your Slack App. You can create a new Slack App Create a new Slack App and learn more about creating a new slack app in the chartsworth post.

Usage

from chartsworth import Chartsworth
chartsworth = Chartsworth("#chartsy")

new_users = 11_003
chartsworth.post(f"We have {new_users} new users")

Note: many times you'll need to use a channel ID (e.g. C05HP8Z5ZPD), especially if the channel is private. Otherwise, images will not post (only text will).

Posting Plots

Chartsworth can take any PIL Image or Matplotlib Figure and post it to slack. This means you can post plots, images, and anything else you can think of.

from chartsworth import Chartsworth

chartsworth = Chartsworth("C05HP8Z5ZPD")
chartsworth.post("Who's ready for a 🏞️ stream plot? 🧵")

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(-3, 3, 100)
y = np.linspace(-3, 3, 100)
X, Y = np.meshgrid(x, y)
u = -1 - X**2 + Y
v = 1 + X - Y**2
speed = np.sqrt(u*u + v*v)

## Create a figure we can pass to Chartsworth ##
fig, ax = plt.subplots()

strm = ax.streamplot(X, Y, u, v, color=speed, linewidth=2, cmap='autumn')
fig.colorbar(strm.lines)

## Post!
chartsworth.post(fig)

Scheduling

Schedule your notebooks on Noteable from the notebooks UI

Or run it with papermill with your own custom scheduling!

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

chartsworth-0.12.0.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

chartsworth-0.12.0-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file chartsworth-0.12.0.tar.gz.

File metadata

  • Download URL: chartsworth-0.12.0.tar.gz
  • Upload date:
  • Size: 5.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.7 Darwin/23.6.0

File hashes

Hashes for chartsworth-0.12.0.tar.gz
Algorithm Hash digest
SHA256 cb4ad07d579a8af4baf6c44797d668dca6aeb549d559b34ad7b8d1c72f535b26
MD5 25e788d93ca935db30f38b56af88ded9
BLAKE2b-256 14a2619fbc300ce5154000215290a738bdf4fd465b09dd8246eeac2401dd4c4c

See more details on using hashes here.

File details

Details for the file chartsworth-0.12.0-py3-none-any.whl.

File metadata

  • Download URL: chartsworth-0.12.0-py3-none-any.whl
  • Upload date:
  • Size: 6.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.7 Darwin/23.6.0

File hashes

Hashes for chartsworth-0.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 52a25646345f6a8ef1f53fae63eef6b1ca3421f7cebaf25c0d1c0ef1a78827c0
MD5 a7fe3ce6fa54be379678d597c3fdd1d0
BLAKE2b-256 2e5cc4d838b43107d2e9fb9c2303de000829efcbfaa9001aa3c4236e4f6c4ca4

See more details on using hashes here.

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