Shareable URLs for notebook outputs.

import skua
import matplotlib.pyplot as plt

fig, ax = plt.subplots(figsize=(10, 5))
ax.bar(x, revenue, label="Revenue", ...)
ax.bar(x, costs, label="Costs", ...)
ax.plot(x, profit, "o-", label="Profit")
# ...

skua.record(fig, title="Revenue vs Costs", description="...")
# > https://skua.dev/f/0cbH7W6v88OL

One function call turns plots, DataFrames, and text into permanent links. Re-run the cell to update — same URL, fresh results.

pip install getskua