SDEPack
Runge-Kutta Numerical Integration of Stochastic Differential Equations for Python
sdepack is a high-performance Python library for numerically solving scalar
stochastic differential equations (SDEs)
using stochastic Runge-Kutta methods. It offers deterministic, seed-controlled integration of Itô SDEs of the form:
$$dX(t) = F(X, t),dt + Q,G(X, t),dW(t)$$
Solvers range from the first-order Euler-Maruyama scheme to fourth-order stochastic Runge-Kutta methods using Kasdin coefficients.
Quick example
import numpy as np
import sdepack
x = np.zeros(101, dtype=np.float64)
sdepack.rk4_ti_solve(
lambda x: -0.5 * x, # drift
lambda x: 1.0, # diffusion
x, 0.0, 10.0, 1.0, 100, 0.1, 42
)
Installation
pip install sdepack
Requires Python 3.10+ and NumPy. See the full installation guide for conda, poetry, and source builds.
Documentation
- Theory — mathematical background, Itô SDEs, convergence
- Quickstart — runnable examples
- API Reference — solver signatures and parameters
- References — literature citations
License
MIT — see LICENSE.
Release files for sdepack 0.2.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Built distributions (wheels)
| File | Reset | |||
|---|---|---|---|---|
| sdepack-0.2.0-cp315-cp315t-win_amd64.whl | CPython 3.15 | CPython 3.15 free-threading | Windows x86-64 | Details |
| sdepack-0.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl | CPython 3.15 | CPython 3.15 free-threading | Linux musl 1.2+ x86-64 | Details |
| sdepack-0.2.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl | CPython 3.15 | CPython 3.15 free-threading | Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 | Details |
| sdepack-0.2.0-cp315-cp315t-macosx_15_0_arm64.whl | CPython 3.15 | CPython 3.15 free-threading | macOS 15.0+ ARM64 | Details |
| sdepack-0.2.0-cp315-cp315-win_amd64.whl | CPython 3.15 | CPython 3.15 | Windows x86-64 | Details |
| sdepack-0.2.0-cp315-cp315-musllinux_1_2_x86_64.whl | CPython 3.15 | CPython 3.15 | Linux musl 1.2+ x86-64 | Details |
| sdepack-0.2.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl | CPython 3.15 | CPython 3.15 | Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 | Details |
| sdepack-0.2.0-cp315-cp315-macosx_15_0_arm64.whl | CPython 3.15 | CPython 3.15 | macOS 15.0+ ARM64 | Details |
| sdepack-0.2.0-cp314-cp314t-win_amd64.whl | CPython 3.14 | CPython 3.14 free-threading | Windows x86-64 | Details |
| sdepack-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux musl 1.2+ x86-64 | Details |
| sdepack-0.2.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 | Details |
| sdepack-0.2.0-cp314-cp314t-macosx_15_0_arm64.whl | CPython 3.14 | CPython 3.14 free-threading | macOS 15.0+ ARM64 | Details |
| sdepack-0.2.0-cp314-cp314-win_amd64.whl | CPython 3.14 | CPython 3.14 | Windows x86-64 | Details |
| sdepack-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl | CPython 3.14 | CPython 3.14 | Linux musl 1.2+ x86-64 | Details |
| sdepack-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl | CPython 3.14 | CPython 3.14 | Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 | Details |
| sdepack-0.2.0-cp314-cp314-macosx_15_0_arm64.whl | CPython 3.14 | CPython 3.14 | macOS 15.0+ ARM64 | Details |
| sdepack-0.2.0-cp313-cp313-win_amd64.whl | CPython 3.13 | CPython 3.13 | Windows x86-64 | Details |
| sdepack-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl | CPython 3.13 | CPython 3.13 | Linux musl 1.2+ x86-64 | Details |
| sdepack-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl | CPython 3.13 | CPython 3.13 | Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 | Details |
| sdepack-0.2.0-cp313-cp313-macosx_15_0_arm64.whl | CPython 3.13 | CPython 3.13 | macOS 15.0+ ARM64 | Details |
| sdepack-0.2.0-cp312-cp312-win_amd64.whl | CPython 3.12 | CPython 3.12 | Windows x86-64 | Details |
| sdepack-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl | CPython 3.12 | CPython 3.12 | Linux musl 1.2+ x86-64 | Details |
| sdepack-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl | CPython 3.12 | CPython 3.12 | Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 | Details |
| sdepack-0.2.0-cp312-cp312-macosx_15_0_arm64.whl | CPython 3.12 | CPython 3.12 | macOS 15.0+ ARM64 | Details |
| sdepack-0.2.0-cp311-cp311-win_amd64.whl | CPython 3.11 | CPython 3.11 | Windows x86-64 | Details |
| sdepack-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl | CPython 3.11 | CPython 3.11 | Linux musl 1.2+ x86-64 | Details |
| sdepack-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl | CPython 3.11 | CPython 3.11 | Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 | Details |
| sdepack-0.2.0-cp311-cp311-macosx_15_0_arm64.whl | CPython 3.11 | CPython 3.11 | macOS 15.0+ ARM64 | Details |
| sdepack-0.2.0-cp310-cp310-win_amd64.whl | CPython 3.10 | CPython 3.10 | Windows x86-64 | Details |
| sdepack-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl | CPython 3.10 | CPython 3.10 | Linux musl 1.2+ x86-64 | Details |
| sdepack-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl | CPython 3.10 | CPython 3.10 | Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 | Details |
| sdepack-0.2.0-cp310-cp310-macosx_15_0_arm64.whl | CPython 3.10 | CPython 3.10 | macOS 15.0+ ARM64 | Details |
Total release size: 38.3 MB
Release files / sdepack-0.2.0-cp315-cp315t-win_amd64.whl
| Download URL | sdepack-0.2.0-cp315-cp315t-win_amd64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
aad51dac146d71a0570851fec2d069d13223e50524a17dece4f689da72113edc
|
|
BLAKE2b-256 checksum How to use checksums |
cf3fb34ed894eb6a3c80adc80bdb833181779ebbf844ac5daa7ea7eb78b8d0e8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl
| Download URL | sdepack-0.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
4cb3aac460465d477fa7fe406ec6d01dd3bc5b8eb9b711a54ef6260cd522e3a0
|
|
BLAKE2b-256 checksum How to use checksums |
3c2484e993b9db4af4991bfdd64f6eedca16f25eb13c4d7da84114f661a9a406
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | sdepack-0.2.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
fc02bea16016887f29c9351d0c52d7dd1c579d44820677fe70987c247b9a19ba
|
|
BLAKE2b-256 checksum How to use checksums |
685f814c38e1426ce18fda70eecbc7f7860e5759e8b5a42adf4a5bc79cf041be
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp315-cp315t-macosx_15_0_arm64.whl
| Download URL | sdepack-0.2.0-cp315-cp315t-macosx_15_0_arm64.whl |
|---|---|
| Size | 814.2 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
cc0b1b5a471c17cfc9c666f3425c0542b3099730fd4511da608dafbae72575a9
|
|
BLAKE2b-256 checksum How to use checksums |
34e007fbd7539bb5c9b7cd32cb1997f15453cf56682313b1d8d76427a7cb4303
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp315-cp315-win_amd64.whl
| Download URL | sdepack-0.2.0-cp315-cp315-win_amd64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.15 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7e222bec23235e6b072249606d38551e3362a01a18bd7a6bdb345edb9106cc73
|
|
BLAKE2b-256 checksum How to use checksums |
62e1ed5172356eabf47d88435a539f20db0a291ad34ae7cef907734406f1974a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp315-cp315-musllinux_1_2_x86_64.whl
| Download URL | sdepack-0.2.0-cp315-cp315-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.15 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
94563ab1617a741097499083c084f8b72e96dd1a63c44b091e9eb8e6e4d6fb68
|
|
BLAKE2b-256 checksum How to use checksums |
4c2fcb58f791aad055648530bf272cf059322ccb2d70a915867194d3d07b29b0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | sdepack-0.2.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.15 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
531e654f10b5cb4e986d6cc4f64a576502865582e86e41133c464fc11eac8ce1
|
|
BLAKE2b-256 checksum How to use checksums |
31fd05aad42876078a7007f8ee1b617d064b9efda736ccde9f309921abca6271
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp315-cp315-macosx_15_0_arm64.whl
| Download URL | sdepack-0.2.0-cp315-cp315-macosx_15_0_arm64.whl |
|---|---|
| Size | 813.1 kB |
| Tags | CPython 3.15 macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
4cb81b1afc55ce5c0fe54c3eb886c9fafe5438d6f5b27c6d39a480b42d07814f
|
|
BLAKE2b-256 checksum How to use checksums |
20d6e573bc8d31e6336f29f09ce8f0f7a71c00d8922f334b5d21c6b1138ca3a7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp314-cp314t-win_amd64.whl
| Download URL | sdepack-0.2.0-cp314-cp314t-win_amd64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
5b56104afc22a95ee483e7f30467afab4665a77ef4839a46f7106a49a044cc93
|
|
BLAKE2b-256 checksum How to use checksums |
5defd95287a1b317f8a0e6e2bed8910c0b35253b1e07fd0971143ffd4378e2a3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | sdepack-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
ddaa276cc48871c2f140a8becb390baa9758b9ab510860f4b4ec4fb6898ee11f
|
|
BLAKE2b-256 checksum How to use checksums |
84558964ff6b2fe747a8081f09ebc818522aadedd8425b681d45d383e5b30e4f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | sdepack-0.2.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
a5cf52d07b8e3dd3be9e68a4b4968796864453f9e752700dcfeaea126ed5463f
|
|
BLAKE2b-256 checksum How to use checksums |
99733daa662beec41e4cfdb16a1dd4aa8f23d6c62f1f2e101fff022efdac4efd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp314-cp314t-macosx_15_0_arm64.whl
| Download URL | sdepack-0.2.0-cp314-cp314t-macosx_15_0_arm64.whl |
|---|---|
| Size | 814.2 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
809e9f0454f4410ea53c68c4b12a5dd9387995f3bf8afcdc5ab492a4fa7c9127
|
|
BLAKE2b-256 checksum How to use checksums |
6d091e7767510e3b3cf5487953438887e542f4511e6254b09392cce0eca307d9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp314-cp314-win_amd64.whl
| Download URL | sdepack-0.2.0-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
2bc6685e303cf34890efdb14821f30cd4acc670797e31c594628052aa53da66e
|
|
BLAKE2b-256 checksum How to use checksums |
23d27ca4cf08bc4288f33044e21e44be2a3409b2a1c6ee1be6c4774b07625c7a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | sdepack-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
35ab0a960dbd09e9aec50751b1bf6bd461c373fe46783aee0264cefe26e4fabb
|
|
BLAKE2b-256 checksum How to use checksums |
14abd99d894f1168eaf53d18cddb0e9265f1f55f143664fdef540b0da4bc970d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | sdepack-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
0cbaded4efb293bf8754057aa189cd0972a693c7998a9ab2a57c683c4cd09d8f
|
|
BLAKE2b-256 checksum How to use checksums |
cad1782ca12c36f211609908df2b4ce429cb660900324cd794f9ac1491242b8b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp314-cp314-macosx_15_0_arm64.whl
| Download URL | sdepack-0.2.0-cp314-cp314-macosx_15_0_arm64.whl |
|---|---|
| Size | 813.1 kB |
| Tags | CPython 3.14 macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
ea6e6568e91aa092195a4cf5b0ac9ce87a8477c642603b38835fe0348b5554bc
|
|
BLAKE2b-256 checksum How to use checksums |
8e75fe9a11a60364ec3bd6d173220df50c4700bcd4aff7f635c818b5396f4bc8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp313-cp313-win_amd64.whl
| Download URL | sdepack-0.2.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
37a83fcf7190db16deaf35ab6d204d015a19a9d6441be045993488885015fedb
|
|
BLAKE2b-256 checksum How to use checksums |
006e828309fb1933b22783c5136cf32cf4c85057daa6f54c00c881d00cf455a5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | sdepack-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
afc9545ca8a84e456224b7028af81f74f38220f550f359e889a102f9cc39e972
|
|
BLAKE2b-256 checksum How to use checksums |
2841602319fe412254363b09bb0a0c3ba4e5f1a562a306dcce67fecd1bcddd88
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | sdepack-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
af14c0ced46d2546d4a4353737aad635fe18dda21ea257df5c64588207c2eff4
|
|
BLAKE2b-256 checksum How to use checksums |
a5967089d7ded4c186dc098cc0eae66901603e4043cbb4a54e340273ae8b6f3d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp313-cp313-macosx_15_0_arm64.whl
| Download URL | sdepack-0.2.0-cp313-cp313-macosx_15_0_arm64.whl |
|---|---|
| Size | 813.1 kB |
| Tags | CPython 3.13 macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
111f9ac76f8242d38504c3d9b23e238454b7a6965d0269ddd57039ba7d39e74a
|
|
BLAKE2b-256 checksum How to use checksums |
2d64df26a19c10bbc63497dfec0cdd1a01e006b1e4599fa9ceab84e1d9a60344
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp312-cp312-win_amd64.whl
| Download URL | sdepack-0.2.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
bd4949dc3bd8f4e55e515a2f45614a49cd4fb424754085736dbedad33ccf8f3e
|
|
BLAKE2b-256 checksum How to use checksums |
0a81035d3bd3bf6daf5a86529ad2f10000f17f2a86e0d007d1ab6aebc212f408
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | sdepack-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
3459b12e266c23f7d24cba543791a6a99d98c1f66eb44ee8cc68d36d09f34efa
|
|
BLAKE2b-256 checksum How to use checksums |
b5f91efd1e1d06e54b0514430cffee149000afcb9b0c47f861cb017590257b17
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | sdepack-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
6725752f70c0761967826fdb4f08702708deab2d0c2b85c16b0435b762ee81d8
|
|
BLAKE2b-256 checksum How to use checksums |
1553b8a3b0ce4b6cafa7c3fe5480e7e0e0b3e7299dec3928b9e02f541224867f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp312-cp312-macosx_15_0_arm64.whl
| Download URL | sdepack-0.2.0-cp312-cp312-macosx_15_0_arm64.whl |
|---|---|
| Size | 813.1 kB |
| Tags | CPython 3.12 macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
ae0a91d93ad2fe8e0725e07b95d71cab79fe7f8252f20ed50471879773d07e95
|
|
BLAKE2b-256 checksum How to use checksums |
0c9e1bbeaf3d4d03a843e719709c77070ce0c87ac870bc12e14a28944713d3f4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp311-cp311-win_amd64.whl
| Download URL | sdepack-0.2.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
1c87f94842bc30c1289b673f26559ccc7b2b15f21f2e61e04481b03fefef8cea
|
|
BLAKE2b-256 checksum How to use checksums |
aa29cb1ba5b17d0c63be8fde776ecf03c1637ede433362e39627959c11a6c930
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | sdepack-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
2de9cad32c036d48d4aee329835fa440f8343f76cf0e42fca4873201b0c251dc
|
|
BLAKE2b-256 checksum How to use checksums |
c6d98058299163e92e73c5fc120bf0ea55d5af8af8711c32485362e9c4bfdbc9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | sdepack-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
882eb545224a632f9e83f8bc0dab27b4c10d960fc9862acb8e758a6478940839
|
|
BLAKE2b-256 checksum How to use checksums |
5ea74b45209c39b4f14f71e6d798c9d32e8cb140cbf813624297c7255c2f214c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp311-cp311-macosx_15_0_arm64.whl
| Download URL | sdepack-0.2.0-cp311-cp311-macosx_15_0_arm64.whl |
|---|---|
| Size | 812.6 kB |
| Tags | CPython 3.11 macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
4d8819a44fe398520cf00478b2e7be96ab652c978fab2423844c873fa6297e20
|
|
BLAKE2b-256 checksum How to use checksums |
aebffc5789358dd56b27f3a69830e2788232046420592b9680623d1a0523b23b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp310-cp310-win_amd64.whl
| Download URL | sdepack-0.2.0-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
ccc960074fd17008768ec4f57268b6631199ff8a0038f93a943972feac3d30a7
|
|
BLAKE2b-256 checksum How to use checksums |
d9d218557cfca91849339d157344eda99bfadf64fbbeb2396c8241b01474e9d4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | sdepack-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
2e5e91d71e684cd03d21e3cdc820f0c5969fed8e455affe34f962497d554e799
|
|
BLAKE2b-256 checksum How to use checksums |
8875dd16d2fcc2136d84995c1b870d5bc15d919104d0183dcf3971d383615d64
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | sdepack-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.0 MB |
| Tags | CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
c8bf47b49d2df856e44f3a87bfaae4476bef2e739df19e95afee5e2b510a4f82
|
|
BLAKE2b-256 checksum How to use checksums |
6df0992014a78eae99e8b5d954f84bc2358bcbe8af12057085cc26fdf0d15e3d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency logRelease files / sdepack-0.2.0-cp310-cp310-macosx_15_0_arm64.whl
| Download URL | sdepack-0.2.0-cp310-cp310-macosx_15_0_arm64.whl |
|---|---|
| Size | 812.6 kB |
| Tags | CPython 3.10 macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
1770aa97a65c8432d9d9cae53ea454db3005af19e5f6018861c798ad51e089d8
|
|
BLAKE2b-256 checksum How to use checksums |
a8b8b182a0eb6442dbc3d794594c4e45aed6b19a4666b224c37585257519fc6c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
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 Aug 19, 2026.
Transparency log