Record and share Jupyter notebook findings via shareable links
Project description
Skua
Capture and share Jupyter notebook results via shareable links.
Skua eliminates the "last mile" problem of sharing data science results. Instead of taking screenshots or exporting static files, capture your visualizations and data with a single function call.
Installation
pip install getskua
That's it! Skua automatically detects and works with libraries you already have installed (matplotlib, pandas, PIL, etc.).
Quick Start
import matplotlib.pyplot as plt
import skua
# Create a visualization
fig, ax = plt.subplots()
ax.plot([1, 2, 3], [1, 4, 9])
ax.set_title("Quadratic Growth")
# Capture and share it
result = skua.record(fig, title="Q3 Revenue Analysis")
print(result.url) # https://skua.dev/f/abc123
Share the URL with colleagues. Re-run skua.record() with the same title to update in place — same URL, fresh results.
Supported Objects
- Matplotlib figures - Saved as high-DPI PNG images
- Plotly figures - Interactive charts, fully embedded
- Pandas DataFrames - Interactive, sortable, filterable tables
- Polars DataFrames - Rendered as interactive tables
- NumPy arrays - Rendered as tables
- PIL Images - Any
PIL.Imageobject, saved as PNG - Dicts and lists of dicts - Pretty-printed with syntax highlighting
- PyTorch / TensorFlow tensors - Image tensors rendered as PNG, others as tables
- Any object - Falls back to string representation
Configuration
By default, Skua uses the hosted service at https://skua.dev. You can configure a different API URL if needed:
import skua
skua.configure(api_url="https://custom-url.com")
Or via environment variable:
export SKUA_API_URL=https://custom-url.com
Anonymous Usage
Skua uses anonymous sessions - no account required:
- Session persists across notebook runs
- Findings expire after 7 days
- Limited to 10 findings per session
- Rate limited to prevent abuse
Privacy
- Anonymous findings are automatically deleted after 7 days
- Open source Python package (MIT License)
Documentation
Visit https://skua.dev for more information and examples.
License
MIT License - see LICENSE file for details
Support
Questions or feedback? Email hello@skua.dev
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file getskua-0.9.0.tar.gz.
File metadata
- Download URL: getskua-0.9.0.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3e9e4c0d15c6c78306a2783bee34e411a4e40e92485a0642b8aba349eb685d2
|
|
| MD5 |
204ad7e79467c4f08f7cc3313175aa94
|
|
| BLAKE2b-256 |
296d0a36c44874f295656b37437e8ccc89fd41d79c5fb394f2bb33080ba219bd
|
File details
Details for the file getskua-0.9.0-py3-none-any.whl.
File metadata
- Download URL: getskua-0.9.0-py3-none-any.whl
- Upload date:
- Size: 16.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.9 {"installer":{"name":"uv","version":"0.9.9"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fa34ccb06b542453339bf5d69c5df991daee27eb6a7e2d6753bd78301ba2c6f
|
|
| MD5 |
035a1a280fc1d2dd489670591228c1e2
|
|
| BLAKE2b-256 |
262ca748cd1330ebc6a1b3a38b5af5e15cd476413fbc91044999e153b5d143c1
|