Skip to main content

A high-performance matplotlib-compatible plotting library powered by Rust

Project description

rsplotlib

一个由 Rust 强力驱动的高性能 Python 绘图库,提供 Matplotlib 兼容 API

Python Rust License: MIT PyO3 plotters


目录


项目简介

rsplotlib 是一个跨语言的 Python 绘图库,核心渲染引擎完全使用 Rust 编写,通过 PyO3 提供与 Matplotlib 兼容的 Python API。项目的目标是在保持与现有 Matplotlib 代码最大兼容性的同时,利用 Rust 的内存安全和零成本抽象带来显著的性能提升。

设计理念

  • API 优先:提供与 Matplotlib 高度一致的接口,降低迁移成本
  • 性能为王:将性能关键路径(渲染、批量操作)下沉到 Rust 层
  • 零额外依赖:不依赖原生 Matplotlib 的安装,仅需 Python 解释器即可运行
  • 跨平台一致:在 macOS、Linux、Windows 上提供相同的渲染质量

核心特性

丰富的图表类型

  • 基础图表:折线图、散点图、柱状图、水平柱状图
  • 统计图表:直方图、箱线图、饼图、误差棒图、茎叶图、阶梯图
  • 高级图表:堆叠面积图、热力图/图像显示、填充区域图

辅助元素

  • 参考线:水平参考线 (axhline)、垂直参考线 (axvline)
  • 区间高亮:水平区间填充 (axhspan)、垂直区间填充 (axvspan)
  • 任意斜率参考线axline — 通过两点绘制贯穿全图的任意角度参考线
  • 批量线hlines / vlines — Rust 层批量实现,避免 Python 级 for 循环
  • 文本标注texttitle、带箭头的 annotate(支持 arrowprops

坐标与布局

  • 多子图支持:subplots()subplot()、网格布局
  • 双坐标轴:twinx() / twiny()
  • 对数坐标:semilogx()semilogy()loglog()
  • 网格显示、图例、坐标轴范围、刻度自定义

输出与分辨率

  • PNG:位图输出,支持 DPI 控制
  • SVG:矢量图输出,可无损缩放
  • 自定义 DPIsavefig(filename, dpi=300) 支持任意分辨率输出
  • 像素尺寸 DPI:PNG 元数据中写入 DPI 信息,方便出版使用

散点图增强

  • 每点独立颜色ax.scatter(x, y, c=['red', 'blue', 'green'])
  • 每点独立大小ax.scatter(x, y, s=[10, 20, 30, 40])
  • 颜色+大小同时独立:Rust 层实现,零 Python 循环开销

样式管理

  • plt.style 模块:兼容 Matplotlib 的样式接口
  • plt.style.use():应用预设样式
  • plt.style.available:查询可用样式
  • plt.rcParams:全局参数配置(字体族、字号等)

字体与国际化

  • 跨平台字体解析:自动查找系统可用字体
  • CJK 支持:内置中文、日文、韩文字体自动检测
  • 自定义字体注册register_sans_serif_font(path) 注册任意字体文件

安装指南

前置依赖

依赖 版本要求 说明
Python 3.10+ CPython 实现
Rust 1.70+ 从源码构建时需要
maturin 1.13+ Rust-Python 包构建工具

方法一:从 PyPI 安装(推荐)

已为 Linux(x86_64/aarch64)、macOS(universal2)、Windows(x64)在 Python 3.10-3.14 上发布预编译 wheel,无需 Rust 工具链:

pip install rsplotlib

方法二:使用 maturin 从源码构建(推荐开发者)

# 1. 克隆项目
git clone https://github.com/YJ-Niu/rsplotlib.git
cd rsplotlib

# 2. 构建并安装(自动编译 Rust 并安装到当前 Python 环境)
pip install maturin
maturin develop --release

方法三:构建 wheel 包

# 使用项目提供的构建脚本(macOS/Linux 直接运行;Windows 请在 Git Bash 或 WSL 中运行)
./build_wheel.sh

# 安装生成的 wheel
pip install target/wheels/rsplotlib-*.whl

方法四:仅编译 Rust 扩展(调试用)

# 编译 Rust cdylib
cargo build --release

# 将编译产物复制为正确的 Python 扩展模块名称
# macOS:
cp target/release/librsplotlib.dylib python/rsplotlib/rsplotlib.cpython-39-darwin.so

# Linux:
# cp target/release/librsplotlib.so python/rsplotlib/rsplotlib.cpython-39-x86_64-linux-gnu.so

# 从源码目录使用
export PYTHONPATH="$PWD/python:$PYTHONPATH"

验证安装

>>> import rsplotlib.pyplot as plt
>>> fig, ax = plt.subplots()
>>> ax.plot([1, 2, 3], [1, 4, 9])
>>> fig.savefig('test.png')
# ✅ 生成 test.png 即安装成功

快速入门

基础使用:折线图

from rsplotlib import pyplot as plt
from rsplotlib.pylab import mpl

# 可选:配置中文字体
mpl.rcParams['font.sans-serif'] = ['PingFang SC', 'Microsoft YaHei', 'Arial']

# 创建 Figure 和 Axes
fig, ax = plt.subplots(figsize=(8, 6))

# 绘制数据
x = [0, 1, 2, 3, 4, 5]
y1 = [1, 2, 4, 8, 16, 32]
y2 = [32, 16, 8, 4, 2, 1]

ax.plot(x, y1, label='指数增长', lw=2.0)
ax.plot(x, y2, label='指数衰减', lw=2.0, linestyle='--')

# 装饰图表
ax.set_title('基础折线图示例')
ax.set_xlabel('时间')
ax.set_ylabel('数值')
ax.legend()
ax.grid(True)

# 保存为高分辨率 PNG
fig.savefig('line_plot.png', dpi=300)

散点图:每点独立颜色和大小

import random
from rsplotlib import pyplot as plt

# 生成随机数据
random.seed(42)
n = 50
x = [random.gauss(0, 1) for _ in range(n)]
y = [random.gauss(0, 1) for _ in range(n)]

# 每点独立颜色和大小(Rust 层处理,Python 层零循环)
colors = ['red' if xi > 0 else 'blue' for xi in x]
sizes = [max(10, abs(xi * yi * 50)) for xi, yi in zip(x, y)]

fig, ax = plt.subplots()
ax.scatter(x, y, c=colors, s=sizes, alpha=0.7)
ax.set_title('散点图:颜色/大小独立')
fig.savefig('scatter.png')

区间高亮与参考线

from rsplotlib import pyplot as plt

fig, ax = plt.subplots()
x = list(range(-5, 6))
y = [xi**2 for xi in x]

# 绘制数据
ax.plot(x, y, 'b-', lw=2, label='y = x²')

# 垂直区间高亮
ax.axvspan(-1, 1, color='yellow', alpha=0.3, label='最小值区域')

# 水平区间高亮
ax.axhspan(0, 5, color='lightgreen', alpha=0.2)

# 水平/垂直参考线
ax.axhline(y=0, color='gray', linestyle=':', linewidth=1)
ax.axvline(x=0, color='gray', linestyle=':', linewidth=1)

# 任意斜率参考线(贯穿整张图)
ax.axline((0, 0), (1, 1), color='red', linestyle='--', linewidth=1.5)

ax.legend()
fig.savefig('reference_lines.png')

箭头标注

from rsplotlib import pyplot as plt

fig, ax = plt.subplots()

# 绘制曲线
x = list(range(-10, 11))
y = [xi**3 - 3*xi for xi in x]
ax.plot(x, y, 'b-', lw=2)

# 添加箭头标注
ax.annotate('局部极大值', xy=(-1, 2), xytext=(-8, 500),
            fontsize=11, color='red',
            arrowprops={'arrowstyle': '->', 'arrowsize': 1.0})

ax.annotate('局部极小值', xy=(1, -2), xytext=(3, -500),
            fontsize=11, color='blue',
            arrowprops={'arrowstyle': '->', 'arrowsize': 1.0})

ax.annotate('原点', xy=(0, 0), xytext=(5, 200),
            fontsize=11, color='darkgreen')

ax.set_title('ax.annotate:带箭头的文本标注')
fig.savefig('annotations.png')

批量水平线/垂直线(Rust 层实现)

from rsplotlib import pyplot as plt

fig, ax = plt.subplots()
ax.plot([0, 10], [0, 10], 'k-', lw=1)

# 批量绘制水平线(Rust 层循环,Python 零开销)
ax.hlines([2, 4, 6, 8], color='steelblue', linestyle='--', linewidth=1)

# 批量绘制垂直线
ax.vlines([2, 4, 6, 8], color='darkorange', linestyle=':', linewidth=1)

ax.set_title('hlines / vlines:批量参考线(Rust 层实现)')
fig.savefig('hlines_vlines.png')

多子图

from rsplotlib import pyplot as plt

# 2x2 网格
fig, axes = plt.subplots(2, 2)

# axes 是一个扁平列表
axes[0].plot([1, 2, 3], [1, 4, 9])
axes[0].set_title('子图 1')

axes[1].bar(['A', 'B', 'C'], [3, 7, 2])
axes[1].set_title('子图 2')

axes[2].scatter([1,2,3,4], [4,3,2,1], c=['red','green','blue','orange'])
axes[2].set_title('子图 3')

axes[3].hist([0.5, 1.2, 1.8, 2.1, 2.5, 3.0, 3.2, 3.8, 4.1, 4.5], bins=5)
axes[3].set_title('子图 4')

fig.savefig('subplots.png', dpi=200)

模块级接口(无需显式创建 Axes)

from rsplotlib import pyplot as plt

# 直接使用 plt.* 接口
plt.figure()
plt.plot([1, 2, 3], [1, 2, 3], 'r-')
plt.axhline(y=2, color='gray', linestyle='--')
plt.axvspan(1, 2, color='yellow', alpha=0.3)
plt.title('模块级接口')
plt.savefig('module_level.png')

功能清单

绘图函数

函数 说明 模块级接口 Axes 接口
plot() 折线图
scatter() 散点图(支持颜色/大小数组)
bar() 柱状图
barh() 水平柱状图
hist() 直方图
pie() 饼图
boxplot() 箱线图
fill_between() 曲线间填充
errorbar() 误差棒图
stem() 茎叶图
step() 阶梯图
imshow() 图像/热力图
stackplot() 堆叠面积图
semilogx() x 轴对数坐标折线图
semilogy() y 轴对数坐标折线图
loglog() 双对数坐标折线图

辅助元素

函数 说明 模块级接口 Axes 接口
axhline() 水平参考线
axvline() 垂直参考线
axhspan() 水平区间填充
axvspan() 垂直区间填充
axline() 任意斜率参考线
hlines() 批量水平线 (Rust 层)
vlines() 批量垂直线 (Rust 层)
text() 文本标注
annotate() 带箭头文本标注

图表配置

函数 说明
title() / ax.set_title() 设置图表标题(loc='left'/'center'/'right'
xlabel() / ax.set_xlabel() 设置 X 轴标签(loc='left'/'center'/'right'
ylabel() / ax.set_ylabel() 设置 Y 轴标签(loc='top'/'center'/'bottom'
grid() 显示/隐藏网格
legend() 显示图例
xlim() / ylim() 设置坐标轴范围
xticks() / yticks() 设置刻度位置和标签
xscale() / yscale() 设置坐标缩放(linear / log
margins() 设置自动缩放边距
box() 设置坐标轴边框显示
minorticks_on() / minorticks_off() 次要刻度显示控制

子图与布局

函数 说明
subplots(nrows, ncols) 创建子图网格
subplot(nrows, ncols, index) 创建单个子图
twinx() / twiny() 创建双坐标轴
tight_layout() 自动调整布局
fig.set_size(w, h) 设置图形像素尺寸

图形控制

函数 说明
figure() 创建新 Figure 对象
savefig(filename, dpi=None) 保存到文件,支持自定义 DPI
show() 显示图形(保存到默认位置)
gca() 获取当前 Axes
gcf() 获取当前 Figure
cla() 清空当前 Axes
clf() 清空当前 Figure
close() 关闭当前 Figure

API 参考

Figure.savefig

保存图形到文件。

fig.savefig(filename, dpi=None)

参数:

  • filename (str): 输出文件路径。支持 .png.svg 扩展名
  • dpi (float, 可选): 分辨率(每英寸点数)。默认使用 Figure 创建时的 DPI

示例:

fig.savefig('plot.png')              # 默认 DPI
fig.savefig('plot_hd.png', dpi=150)  # 屏幕分辨率
fig.savefig('plot_print.png', dpi=300)  # 印刷分辨率
fig.savefig('plot.svg')              # 矢量图

Axes.scatter — 增强版

散点图,支持每点独立颜色/大小。

ax.scatter(x, y, s=20.0, c=None, marker='o', label=None, alpha=1.0, **kwargs)

参数:

  • x, y (list/array): 点坐标数据
  • s (float 或 list/array): 单个浮点值用于所有点,或数组表示每点大小
  • c (str 或 list[str]): 单个颜色字符串,或颜色字符串数组
  • marker (str): 标记形状,支持 'o', 's', '^', 'v', 'D', '*', '+', 'x', '<', '>'
  • label (str): 图例标签
  • alpha (float): 透明度 (0.0-1.0)
  • **kwargs: 额外参数,支持 color(作为 c 的别名)

示例:

# 单色散点
ax.scatter(x, y, c='red', s=50)

# 每点独立颜色
ax.scatter(x, y, c=['red', 'green', 'blue', ...], s=50)

# 每点独立大小
ax.scatter(x, y, s=[10, 20, 30, ...], c='blue')

# 颜色+大小同时独立(Rust 层批量处理)
ax.scatter(x, y, c=colors, s=sizes, marker='D', alpha=0.8)

Axes.axhspan / axvspan

区间高亮填充。

ax.axhspan(ymin, ymax, color=None, alpha=0.3)
ax.axvspan(xmin, xmax, color=None, alpha=0.3)

参数:

  • ymin, ymax (float): 水平区间的 y 轴上下界(数据坐标)
  • xmin, xmax (float): 垂直区间的 x 轴左右界(数据坐标)
  • color (str): 填充颜色,默认浅蓝灰色
  • alpha (float): 透明度,默认 0.3

Axes.axline

通过两点绘制贯穿全图的任意斜率参考线。

ax.axline(xy1, xy2, color=None, linestyle=None, linewidth=None)

参数:

  • xy1 (tuple): 起点坐标 (x1, y1)
  • xy2 (tuple): 终点坐标 (x2, y2)
  • color (str): 线颜色
  • linestyle (str): 线型,'-' (实线), '--' (虚线), ':' (点线), '-.' (点划线)
  • linewidth (float): 线宽

Axes.annotate

添加带箭头的文本标注。

ax.annotate(text, xy, xytext=None, fontsize=12.0, color='black',
            arrowprops=None, arrowstyle=None, arrowsize=1.0)

参数:

  • text (str): 标注文本
  • xy (tuple): 被标注点坐标 (x, y)
  • xytext (tuple, 可选): 文本放置位置。若提供,自动从该位置绘制箭头到 xy
  • fontsize (float): 字体大小,默认 12.0
  • color (str): 文本和箭头颜色,默认 'black'
  • arrowprops (dict, 可选): 箭头属性字典,支持:
    • arrowstyle: 箭头样式(如 '->', '-|>'
    • arrowsize: 箭头相对大小
  • arrowstyle (str, 可选): 独立于 arrowprops 的箭头样式
  • arrowsize (float, 可选): 独立于 arrowprops 的箭头大小

hlines / vlines(Rust 层批量实现)

绘制多条水平线或垂直线。所有内部循环在 Rust 层完成,避免 Python 级循环开销。

ax.hlines(y, color=None, linestyle=None, linewidth=None)
ax.vlines(x, color=None, linestyle=None, linewidth=None)

参数:

  • y / x (list/array): 位置列表

性能优势

rsplotlib 在架构设计上通过"分层下沉"策略实现性能优化:

架构分层

┌──────────────────────────────────────────────┐
│  Python 层 (API 兼容层)                      │
│  · pyplot.py   (Matplotlib 兼容接口)         │
│  · api.py      (参数规范化 / 别名映射)       │
│  · _patch_*    (方法补丁 / 动态分发)         │
├──────────────────────────────────────────────┤
│  Rust 层 (高性能核心)                        │
│  · lib.rs      (模块注册 / 字体系统)         │
│  · figure.rs   (Figure 对象 / 渲染调度)      │
│  · axes.rs     (Axes 对象 / 数据解析)        │
│  · elements.rs (绘图元素数据结构)            │
│  · axes_render_elements.rs (plotters 渲染)   │
│  · pyfuncs.rs  (模块级函数暴露)              │
└──────────────────────────────────────────────┘

性能关键路径下沉到 Rust

功能 传统实现 rsplotlib 实现
scatter(c=colors) Python 层遍历每个点 Rust 层 ScatterMulti 统一渲染
scatter(s=sizes) Python 层遍历每个点 Rust 层统一大小数组处理
hlines([y1, y2, y3, ...]) Python for 循环多次调用 axhline Rust 层单次调用批量处理
vlines([x1, x2, x3, ...]) Python for 循环多次调用 axvline Rust 层单次调用批量处理
savefig(dpi=300) 无 DPI 支持 / Python 层缩放 Rust 层直接写入 PNG DPI 元数据

为什么选择 Rust + Python 混合架构

  1. 开发效率:Python 层快速迭代 API 设计、参数校验
  2. 执行性能:Rust 层处理渲染、循环、内存密集型计算
  3. 内存安全:Rust 编译期保证无数据竞争
  4. 零额外依赖:无原生 Matplotlib 安装要求

项目结构

rsplotlib/
├── python/                          # Python 包装层
│   └── rsplotlib/
│       ├── __init__.py              # 包入口与导出
│       ├── api.py                   # 模块级 API 函数定义
│       ├── pyplot.py                # Matplotlib 兼容 pyplot 接口
│       │                            # (含中文 docstring, IDE 悬停提示)
│       ├── pylab.py                 # pylab 风格接口,提供 mpl.rcParams
│       ├── style.py                 # plt.style 样式管理
│       ├── _rcparams.py             # rcParams 配置管理
│       ├── _font_resolver.py        # 系统字体路径解析
│       ├── _figure_defaults.py      # Figure 默认配置
│       ├── gridspec.py              # 网格布局管理
│       └── ticker.py                # 刻度定位器 (AutoLocator, MaxNLocator)
│
├── src/                             # Rust 核心实现
│   ├── lib.rs                       # 库入口,Python 模块注册
│   ├── figure.rs                    # Figure 类 (savefig, DPI 管理)
│   ├── axes.rs                      # Axes 类 (所有绘图方法)
│   ├── axes_render_elements.rs      # 元素渲染引擎 (基于 plotters)
│   ├── axes_bounds.rs               # 坐标边界计算
│   ├── axes_title.rs                # 标题渲染
│   ├── axes_legend.rs               # 图例渲染
│   ├── axes_grid.rs                 # 网格线渲染
│   ├── axes_mesh.rs                 # 坐标轴刻度
│   ├── axis.rs                      # Axis 数据结构
│   ├── elements.rs                  # 绘图元素枚举 (Line/Scatter/Bar/...)
│   ├── pyfuncs.rs                   # 暴露给 Python 的模块级函数
│   ├── colors.rs                    # 颜色解析 (命名色, RGB, HSL)
│   ├── colormap.rs                  # 颜色映射
│   ├── marker.rs                    # 标记形状渲染
│   └── text_utils.rs                # 文本工具函数
│
├── Cargo.toml                       # Rust 依赖 (PyO3, plotters, png)
├── pyproject.toml                   # Python 包配置 (maturin)
├── build_wheel.sh                   # wheel 包构建脚本
├── README.md                        # 英文说明
└── README_zh.md                     # 中文说明(本文档)

开发与贡献

本地开发环境

# 1. 安装 Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

# 2. 安装 maturin
pip install maturin

# 3. 开发模式构建(自动编译 Rust 并安装到当前 Python 环境)
maturin develop --release

# 4. 运行交互式测试
python3 -c "
from rsplotlib import pyplot as plt
fig, ax = plt.subplots()
ax.plot([1,2,3], [1,4,9])
fig.savefig('/tmp/test.png')
print('OK')
"

开发工作流

  1. 理解需求:分析需要实现的 Matplotlib 功能
  2. Rust 层实现:在 src/ 中添加核心逻辑
    • 新增绘图元素:修改 elements.rs
    • 添加绘图方法:修改 axes.rs
    • 添加渲染逻辑:修改 axes_render_elements.rs
    • 暴露模块级函数:修改 pyfuncs.rs
    • 注册:修改 lib.rs
  3. Python 层包装:在 python/rsplotlib/ 中添加 API
    • 添加中文 docstring(供 IDE 悬停显示)
    • 处理参数别名(如 lwlinewidth
    • 将数组参数路由到 Rust 层批量方法
  4. 编译测试maturin develop --release
  5. 验证结果:生成图像进行目视检查

为 Python 层添加文档(IDE 悬停)

Python 包装层的函数都包含详细的中文 docstring,当用户在 IDE(VS Code、PyCharm 等)中悬停在函数上时,会自动显示中文说明和参数列表。

def axhspan(ymin, ymax, **kwargs):
    """绘制水平方向的区间填充。

    用法:
        plt.axhspan(0, 1, color='yellow', alpha=0.3)

    Args:
        ymin: y 轴下限
        ymax: y 轴上限
        color: 填充颜色 (默认蓝灰色)
        alpha: 透明度 (0.0-1.0, 默认 0.3)
    """
    ...

贡献指南

欢迎提交 PR!请在提交时包含:

  • 清晰的功能说明或问题修复描述
  • 适用时包含生成的示例图像
  • 确保同时更新 README.mdREADME_zh.md

已知限制

  • 当前版本不支持 3D 绘图
  • 不支持动画/交互式图表
  • contour / violinplot / hexbin 为占位实现

字体配置

rsplotlib 支持通过 mpl.rcParams 自定义字体,同时支持直接注册字体文件。

自动检测的系统字体

平台 常用字体
macOS Arial, Helvetica, PingFang SC, STHeiti, Hiragino Sans GB, Arial Unicode MS
Linux DejaVu Sans, Liberation Sans, Noto Sans CJK SC, WenQuanYi Micro Hei
Windows Microsoft YaHei, SimHei, SimSun, Arial

自定义字体配置

from rsplotlib.pylab import mpl
from rsplotlib import pyplot as plt

# 设置 sans-serif 字体族(优先顺序)
mpl.rcParams['font.sans-serif'] = ['PingFang SC', 'Microsoft YaHei', 'DejaVu Sans']

# 设置默认字体大小
mpl.rcParams['font.size'] = 12

直接注册字体文件

from rsplotlib import rsplotlib as _rs

# 从任意 .ttf/.otf/.ttc 文件注册为 sans-serif 字体
_rs.register_sans_serif_font('/path/to/your/custom-font.ttf')

许可证

MIT License — 详见 LICENSE 文件。


致谢

  • PyO3 — Rust ↔ Python 绑定库,版本 0.29
  • plotters — Rust 绘图库,提供底层渲染能力
  • Matplotlib — Python 绘图生态标准,提供 API 设计参考
  • maturin — Rust Python 包构建与发布工具

相关链接


最后更新:2026-07-03 · 版本 v0.1.9

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

rsplotlib-0.2.6.tar.gz (271.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rsplotlib-0.2.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rsplotlib-0.2.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rsplotlib-0.2.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

rsplotlib-0.2.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

rsplotlib-0.2.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

rsplotlib-0.2.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rsplotlib-0.2.6-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

rsplotlib-0.2.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rsplotlib-0.2.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rsplotlib-0.2.6-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

rsplotlib-0.2.6-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

rsplotlib-0.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rsplotlib-0.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rsplotlib-0.2.6-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

rsplotlib-0.2.6-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

rsplotlib-0.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rsplotlib-0.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rsplotlib-0.2.6-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

rsplotlib-0.2.6-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

rsplotlib-0.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rsplotlib-0.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rsplotlib-0.2.6-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

rsplotlib-0.2.6-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

rsplotlib-0.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rsplotlib-0.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rsplotlib-0.2.6-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

File details

Details for the file rsplotlib-0.2.6.tar.gz.

File metadata

  • Download URL: rsplotlib-0.2.6.tar.gz
  • Upload date:
  • Size: 271.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for rsplotlib-0.2.6.tar.gz
Algorithm Hash digest
SHA256 ef58f7924173054fc4c515069d05419cc1f263f9091e7aff34749002c6028253
MD5 084417240d103d350631af2fc61714a6
BLAKE2b-256 dca951f70feb46c3cb955462d89e37a925e6d7d8443498c98a9c9dcb2a2e2de7

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8abc0e3a3cd8776519d9daf095a430b1c8293a44d088ce8abf0f2a29ba1f15cc
MD5 b126070c2ca1fee66a5aa95c320215b5
BLAKE2b-256 f5c9c2fbcbfc81245d9df023ac2b54db2735d20fa55e1f9c486919196c889711

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e051cec65f40be239f5832ad1bf819a3dd64bc99ac8a657ec7dcdae4786f3b5
MD5 4d4041fbb5ce29de9d730bd9f447cbe5
BLAKE2b-256 1b7d3b9cbe3ca597c60aa66da5ff630de0461835d2cf5eee57b8625d2ec96963

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdf50ce119d0c6311babd1028f0144bec61f2160008eafd8d98d5a3d6ccb3fb2
MD5 a119d88d853d763c4f9dccc11b56e0e5
BLAKE2b-256 18f36800df7cc2c173ba462f8ac907c9d0f2e55232eda3f5e81eb77eae350796

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05822e849fafc62b819d61a3d07969af0cd1b961d916e1a7adf63d12d9213c7d
MD5 3eb89f5f6ba32302579855c334f516b3
BLAKE2b-256 6e9fa39b2ca09ed9163c8e939acac5a096db429229abc62125bb909b0cfa2da8

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 291091178de29fc54a9c6c62809d1b6652036f1614c95249ace02933f88cf39c
MD5 b8044ef8cc3feac745bb4baa2abdfe11
BLAKE2b-256 07751f932649f6684d64255d200cfe71216ef98b990cbde295135f845e3678f8

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a18e53ada13903cca549f07741e375f6139601989a0546891f3e2a35c487f75
MD5 24db0253b55e7582948d03d485a0eda1
BLAKE2b-256 8c6f9b4d5fe38be0d4b3fd3eee48915878b3b2a2f32fd1a2638374c4d68f1ca8

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 865c7f1dd8fc50e030610b3c4e5c1d049caa5dd353e0a04fd367057fa33fe75d
MD5 33e7d26f81c1bd961bb9e645efc7a823
BLAKE2b-256 3a2e09d2f1af2a1ff1fd0da6421da6d6f8d39343465397bb4cc31aa468c67bdb

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e92d252390f429483eb6faaec1ce372485528ac315249557d54f5141768053e
MD5 c462ce85d291579d7f206cddc048c974
BLAKE2b-256 931b62c2dd4c0843503f1d30d93f2ff1505a9cd1f286ed61d68c771c55f2b3fe

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 659b52c80c4c7c7830c46bba4820afaf5b6f94759e07d26b5f55c68963e037d2
MD5 28bc8433c90edcb601e1cd123d13b2ee
BLAKE2b-256 27893366ab6e332849f2ef8903c0191dc3528f43a5607124a3628518a6d0bf00

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 a3c39f4675dc98993438caef1beceb0e44a55eed07adcb4cae1e1a52b4650e97
MD5 261e28d0bcdfe39ccfc5ec8ccf38307e
BLAKE2b-256 351504271228affe6b58cafb0222fd4f4f5e241ca0040f312ddac7363e4f4539

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f4ae7e46a779d2946b9b8ddd65bf557cc9b641705e5c96d00797902744db5ba1
MD5 1625c99a9ad7df45d39dec0859332dd5
BLAKE2b-256 9e83c45232cca9caa4f4f301c2cabf1cd956e0a70cf818a5d8748a6f9e111b45

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd32711d9a4208430472348fa8d1313f3fa10123ca86919c2e32496a5695e2a2
MD5 0d1f40979e68bb15251166358468616e
BLAKE2b-256 9571447115f66a0517ffe46870ca3e9658df82661e13645549834b2614c4a5eb

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c6f233a6134e792901f95ec0991acb0c92cceaac8be36063b27535e9d03af38
MD5 cdb3eaf2251874d6fbf62cd9b98ffa0f
BLAKE2b-256 b9074d9c25ebd332a39202e6096aa26e90446134d42624f6e46969f440551f80

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 6d92ca5cf1740784bd15766494671475b971cd7af6dd4fd4192cd0bdfa33f7e6
MD5 f527784265c1214d75407aac3be2e991
BLAKE2b-256 3023c78a607669a538997370b953d4413977ceca756384e5da16d5f248cd227c

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 601b5bd84c1a2f7e6144d35968e47a0a014c8b069a8ce112c6451f6a9fd7b728
MD5 64563667395f8ae3e804db7ce680c6fd
BLAKE2b-256 c8f47e0ab23e473ad2a0b4354fce71087fca2153532f6355e2cf80b48a37a67a

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9f4ae31fe84c4d7c6c78f2a815236b1725e7d323533c19e6e64d2e84482e1e0
MD5 37aed6c8fabb6acf7687949706f4665f
BLAKE2b-256 b39efefa74eedbd264da9d6957685ab42db3ed7965993ef5579355940ae68dc5

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06f14f495206cdcbb7e990548db183e6c609c9e2e83fcf1533863f3e4bdb6c18
MD5 0bcd332caed894fe54dadab1b910599c
BLAKE2b-256 4820a1568885a719116d6afdfea1890de680bb320e3ad051f78cf68b1e89581a

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e159263ed37b0191f3469ee90d16917b4162213978a60fb7a40f62255dc38b63
MD5 9947bc7833ae3464da23ef597fddc49b
BLAKE2b-256 8534d8d846e0dec680a664bd64b8252d6fee2a0830592ae6702ecdfaa67c9c87

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e5c9c316c9a1d26bca8deba3e11ebef09f1915887c0ac87d42fe5267e8658e78
MD5 d71238aac03a92f38f3952965bb631e9
BLAKE2b-256 770beb3d667fc88176578687c2a49b7a4b2facbaa38dd51ac37e974ed12a55df

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd7bde81a18586db424277e48733509d7f4ff39f6cbcbb8f37dc69bc3eaf45f8
MD5 94bfd245656807998c965b5d7bd4d725
BLAKE2b-256 2eab6572911ab93860666a68f7897e7895239837f3d0655d1d9edc7277e94e3c

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5877dd7f7e2d7162d27adb8f043425d859c952877c394c17f85c5a31cdea82f0
MD5 232785c00d7911312358d519e9fc06c6
BLAKE2b-256 7be52345f9bba7eaa580e97c2cbac1fa07a42f4044796723624f3b549d3c4f4f

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 cc24b138eb1fd660996f31e1016380badbb1b87745a421cb2f629c1c8aef0055
MD5 acc3a5b5ca794789b2884a4dc2a733db
BLAKE2b-256 ea327f462cb67bce64ba9d9311d08766a353d33df0916d72dfe1186e6de2c951

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2ca531a9816c7c849c39c2254b9e1aea1472522cbfd8b6d81ac5c85ebcd65b1d
MD5 96e25b4ff16577539a69793ccf283678
BLAKE2b-256 37f41fd09894c7df966a4e5384e84a3819ebe58279f4b9887cf29478e8be1325

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b7c71587335fc0235e84f63a3a41159248ef59ec52d59b61458caaa96429051
MD5 7b0668b06f9e2aa601a0c9c74caa3bd9
BLAKE2b-256 17bbcf4f249031a388f6425113c6f28a6d4bcfd4391358f1bc6d9f71f10719aa

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cececa0c1a1c24d9e1140cc8b7d74eada5c4907a880a40f11a320fd6f354700f
MD5 540772063dc309460d41ae18aa1fe366
BLAKE2b-256 a5665338a160e083f32f1489802f75e3e8d17461698a046ced128a2b470f86e4

See more details on using hashes here.

File details

Details for the file rsplotlib-0.2.6-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for rsplotlib-0.2.6-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 565fe4800e798a8fd61124d2fa234dd3628c63835ce665432a4c74f4152a900e
MD5 56d7d4989c7d1fb310d1a737318eedd8
BLAKE2b-256 d5ad76bfc0e668761e57c7d2f25e1e7e493f5c2f7047cb96be973a8e6dc94b94

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page