Skip to main content

lbriv

Black-76 pricing and implied volatility for European options, with the implied-vol inversion done by a Cython port of Peter Jaeckel's LetsBeRational algorithm (~2 Householder steps per quote to machine precision, nogil batch loops).

Everything works in the T=1, r=0 convention: prices are undiscounted (premium / discount factor) and vols are Black total vols (raw IV at T=1). Rescale externally for other maturities. q = +1 for calls, -1 for puts.

Install

pip install lbriv

Prebuilt wheels cover CPython 3.11+ on Linux (x86_64, aarch64), Windows (x86_64), and macOS (arm64, x86_64). On anything else pip falls back to the sdist, which needs a C compiler — the compiled extension is required, there is no pure-Python fallback.

To work on the package itself, either install from a checkout:

pip install .

or build in place and put the repo root on PYTHONPATH:

python setup.py build_ext --inplace

Usage

import numpy as np
from lbriv import black76_undiscounted, vectorized_implied_vol_strikes

forward = 100.0
strikes = np.array([80.0, 100.0, 120.0])
prices = black76_undiscounted(forward, strikes, np.array([0.25, 0.20, 0.22]), q=1)

iv = vectorized_implied_vol_strikes(prices, forward, strikes, q=1)
# -> array([0.25, 0.20, 0.22])

Unsolvable quotes (at/below intrinsic, or at/above the vol→∞ bound) come back as NaN.

API

Function Purpose
black76_undiscounted(F, K, total_vol, q) vectorised Black-76 price
black76_vega(F, K, total_vol) d(price)/d(total_vol)
implied_vol(price, F, K, q) scalar IV (returns 0.0 on unsolvable)
vectorized_implied_vol_strikes(prices, F, K[], q) IV across strikes, NaN on unsolvable
vectorized_implied_vol(prices[], F[], K, q) IV across a time series, one strike
black_delta / black_gamma / black_vega scalar Black greeks (T=1, r=0)
compute_trades_greeks(...) batch IV + delta/gamma/vega over mixed trades

Tests

pip install -e .[test]
pytest

License

MIT. The implied-vol solver is a port of Peter Jäckel's LetsBeRational reference implementation, whose permissive notice is preserved in LICENSE.

Release files for lbriv 1.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for lbriv 1.0.0
File Size Uploaded
lbriv-1.0.0.tar.gz 202.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for lbriv 1.0.0
File
lbriv-1.0.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
lbriv-1.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
lbriv-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
lbriv-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
lbriv-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
lbriv-1.0.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
lbriv-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
lbriv-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
lbriv-1.0.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
lbriv-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
lbriv-1.0.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
lbriv-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
lbriv-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
lbriv-1.0.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
lbriv-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
lbriv-1.0.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
lbriv-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
lbriv-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
lbriv-1.0.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
lbriv-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
lbriv-1.0.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
lbriv-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
lbriv-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
lbriv-1.0.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
lbriv-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details

Total release size: 12.3 MB

Release files / lbriv-1.0.0.tar.gz

Download URL lbriv-1.0.0.tar.gz
Size 202.9 kB
Tags Source
SHA-256 checksum
How to use checksums
c3507bb0bfcd3572bc1a476694c1b9823787b3232c04b59fac92e91d1717721e
BLAKE2b-256 checksum
How to use checksums
8d00975aa4cb3c66f85b0002ade924bbe79521ca44e24c0a9c2be67027818a40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp314-cp314t-win_amd64.whl

Download URL lbriv-1.0.0-cp314-cp314t-win_amd64.whl
Size 292.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ebffd3669b143ebaa3231981b74c7930ef803751097b8e39a6b97ed0f148d661
BLAKE2b-256 checksum
How to use checksums
663b88ba4da67438ee767602ed11b061d3125bf40db211a373140d0a4ffded91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL lbriv-1.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 773.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5a1bf9bf72c1756b5399d45bf05f129604df44827cf28da7cd9b0129148e8a09
BLAKE2b-256 checksum
How to use checksums
b04b261814664e6aa4c313dc1be6f985732e4f18ad54ab5e90d226813a6104d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL lbriv-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 775.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2ae04aaa064c851c1faab5d1e2b1d723d00fd9e8df61081d8d8998922b7bb474
BLAKE2b-256 checksum
How to use checksums
a05b2f27e7c44870da05a75a5c84d4b06b70a5c680d66c197aa653c7f0f6bb58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL lbriv-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 301.4 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
abab82686b98d966d029e8e15a493fe24114de17fa8b1cfbc872754d6197a13b
BLAKE2b-256 checksum
How to use checksums
84b70b7ec9208129b9d25c8143582c361ff2e0d28187a17506453c1c29fd22d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL lbriv-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Size 303.7 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
08a2151c854afa1db3d0acddd39cc2c299f2ae317c71d8f08ac7f763c3c08eed
BLAKE2b-256 checksum
How to use checksums
20c37fa6f388c81d2ed05c10040a9728561ba8cda45d2c9f3c71c4de583534f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp314-cp314-win_amd64.whl

Download URL lbriv-1.0.0-cp314-cp314-win_amd64.whl
Size 286.1 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
ff81eb43b50b708235b7fa91e5f4f7eff9d3552fa9bcbe475535ce49a47528ed
BLAKE2b-256 checksum
How to use checksums
6ade7b0f515dacdc1bf6d9ca294021f082e7326bebe32d3caf78f01ada9be12f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL lbriv-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 774.5 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
fb7bc4eb3bdbe379d4d5456f8fb04204047ff8255f974c881da39d55691f1547
BLAKE2b-256 checksum
How to use checksums
2762626b5f3786b4ac92953f254eb2c6eb2080d4b327817174dcdbd823afff12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL lbriv-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 766.6 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
aee0db26412eb4cf7c88607923a1191eeee6f5781b793c72db378561b59091f3
BLAKE2b-256 checksum
How to use checksums
ac7b75d77bc25bf008daa373861629fa92089c1a4ec3b3267ab7225cec3aae4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL lbriv-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Size 296.6 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f03213ac7f8719680e43d048c0a34ad7cd078b81b41bc5953720f099618df8ce
BLAKE2b-256 checksum
How to use checksums
d1299f871c03b3d581f3d5fedb59c29efcd5aeebdba8fd69112bd8faf76652c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL lbriv-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 299.4 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
b4b472cf2722ad1bd030bbb00e25aca3d3f5c31762aade0545557c18113e0c7b
BLAKE2b-256 checksum
How to use checksums
51fadcf94fe7f2b6454ae1e177cff2903029068c59f5f60727f1b1ae988e5833
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp313-cp313-win_amd64.whl

Download URL lbriv-1.0.0-cp313-cp313-win_amd64.whl
Size 283.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
cddc2078a84c04c7576290d6d344c6357ed14b09c68dba6d997f101b39dcd18e
BLAKE2b-256 checksum
How to use checksums
395325f5b75d11f83696a38dd71b0742457734a6147e8905cf8322d6b7d88848
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL lbriv-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 776.5 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
127c27a9cd51ce6edf3192f164899935763a1220fa888f6c786084449359fa0a
BLAKE2b-256 checksum
How to use checksums
5a0084bf7893fb51e4a4773726dd1c7c3ff824414731b02e3f674ef2788bb5bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL lbriv-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 765.2 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5efec9d147146c3e8f22f3f8cf485de4254207bb8901f064327a8bc08276c866
BLAKE2b-256 checksum
How to use checksums
1f5fa47161d570b79637f32ba8c62b9c3cd985e850a93f1421de98d42872fade
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL lbriv-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Size 294.0 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
afac99dd47249e3dde9c859f6ea66ff867197c3dc0c4bcef1fe6b3adc8afc169
BLAKE2b-256 checksum
How to use checksums
d437f589043b8760b01177aeacfeb192879c4994b5464c47780bc1826ea49f71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL lbriv-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 297.0 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
a2ce53a4b9197b918352d5fcef9bda504b0565e21d492efd45d038819615ba40
BLAKE2b-256 checksum
How to use checksums
301280a2adb2452c0d8da8f13206dd9738d429ffe3d8aa5a858ff90879efdb58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp312-cp312-win_amd64.whl

Download URL lbriv-1.0.0-cp312-cp312-win_amd64.whl
Size 283.2 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
4f897ae13d0579046a6dfc2277567f55ce14f960fc27b5b029777de31e2df752
BLAKE2b-256 checksum
How to use checksums
3de0028d1e7890d7f9a53e3eef3034906fd6c9fd9e61bf68e6e3774b5d9f1a6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL lbriv-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 781.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
01118329d546815e2d4f268a9ec567dd415fbb35e414a418175fdffca98421e6
BLAKE2b-256 checksum
How to use checksums
aeb206ae826ebc49be44b43896855169dfa6076f41f788d75d9dd9d8c1bffdec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL lbriv-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 769.5 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a3096f51c23ca39ab6922600819658e30d3ad3fd6f4d5ccfcd5d6d58acb35b58
BLAKE2b-256 checksum
How to use checksums
06b0c3e8303d2395a13f5f568fadfa06ee1866938d870dcfdd112b5eb9e30951
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL lbriv-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Size 294.7 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
de550611674c29ff6a988ddddc1322d35ea51a28ce6ff24027d6c841449e0bc2
BLAKE2b-256 checksum
How to use checksums
c4e148459bbeb643df2cd2cbbc9c01b4a5e4b2d62834cc8441f58d7b717c4a03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL lbriv-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 297.8 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
eb0aee2631c84052bfb9d4bfe144a7208d529b9f8b7b9f7418821f8bf64b4fea
BLAKE2b-256 checksum
How to use checksums
c5988432f35178dda2ea49e74d68a19039b431ab6dfe5659ee361c6a4589480a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp311-cp311-win_amd64.whl

Download URL lbriv-1.0.0-cp311-cp311-win_amd64.whl
Size 280.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
c4770c8227596fcb6ca85f5608664a0f908a989016990762435580444906eed8
BLAKE2b-256 checksum
How to use checksums
f6a28193ad4f0cd09de6f79b9b7fc664599501259324401aae0f906ddee27f2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL lbriv-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 773.6 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ed920423a376d33aed1a8b2c5ba06382e2c47f162273d1772ce6904e01111313
BLAKE2b-256 checksum
How to use checksums
cc7aaf08a13e9edd21630df2edcf9845301ac1fb23564059a7e820feda6d3590
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL lbriv-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 767.4 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
634306b4e07a41ae958c169fcce9c8bbf70b05a8097f1eeda8d8ae28db2bee51
BLAKE2b-256 checksum
How to use checksums
631747cebb1062a8c23d46d6570b28aedea0232ede413973e0056e6b3175a34f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL lbriv-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Size 292.7 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6fbe5ab438f297d70fde8b85ee34107eabfbf1d590297b64c09bc926d57b99a8
BLAKE2b-256 checksum
How to use checksums
a7dafda03117f38a5e5b734d20d39d2487577fb7853949cd7c5db820a652d258
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release files / lbriv-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL lbriv-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 295.4 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b3b5e8505e8db1d683ae42079bce7a5abd7fc503216e5a87cc73eb350b2ad783
BLAKE2b-256 checksum
How to use checksums
b31eb3db9fbd0e0c0f78b7c427431f750172df8ea4c22ac742128c158485bb6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 11, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.0.0 This release

26 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page