Skip to main content

drvarma

Exact maximum-likelihood estimation, forecasting and diagnostics of multivariate VARMA (vector ARMA) models — in pure Python, with an optional compiled C engine for speed.

import numpy as np
from drvarma import Model, datasets

series = datasets.simulate_varma(phi=[np.diag([0.5, 0.4, 0.3])], sigma=np.eye(3),
                                 n=300, mu=[100., 50., 75.], seed=1,
                                 names=["A", "B", "C"])
m = Model(series, p=2, q=0, include_mean=True).fit()
print(m.phi, m.sigma, m.loglik)
levels, lo, hi = m.forecast(12, bands=True)     # + 95% bands
print(m.diagnostics())                          # Hosking Q, Jarque-Bera

drvarma fits a stationary Gaussian VARMA(p, q), Φ(B)(wₜ − μ) = Θ(B) aₜ, aₜ ~ N(0, Σ), by exact maximum likelihood (no conditional/back-forecasting approximation), and gives forecasts (+ error bands), impulse responses, variance decompositions, residual diagnostics and volatility.

What this provides. drvarma is a pure-Python implementation of Mauricio's exact-likelihood algorithm for multivariate VARMA (1995 JASA / 1997 AS 311): an innovations-form factorisation that evaluates the exact Gaussian likelihood directly on the VARMA form, without a state-space / Kalman filter, maximised by a faithful factored-BFGS quasi-Newton. Exact ML for VARMA is also available in Python through state-space methods (e.g. statsmodels' Kalman-filter VARMAX); what drvarma adds is a faithful port of this specific, non-Kalman algorithm — which, as far as we know, is not otherwise available in Python — together with the surrounding forecasting/IRF/FEVD/diagnostics toolkit. It runs with no compiled code; the optional C engine is only an accelerator.

Install

pip install drvarma                       # pure-Python (numpy + scipy)

Optional extras: drvarma[plots] (matplotlib + pyfug charts), drvarma[forecast-report] (HTML forecast reports), drvarma[c-engine] (build the CFFI C engine — needs GSL dev headers, ~10–100× faster but optional).

Features

  • Exact-ML estimation of stationary VARMA(p, q) for general dimension m, with mean, diagonal AR/MA/covariance restrictions, and optional Hannan–Rissanen two-step start.
  • Forecasting in original units: level, period and annual variation, each with standard errors and 95 % bands; plus fixed-parameter recursive (out-of-sample) forecasting.
  • Structural analysis: orthogonalised impulse responses, accumulated responses, long-run gain, and the forecast-error variance decomposition.
  • Diagnostics: Hosking multivariate portmanteau, multivariate Jarque–Bera, per-series ACF/PACF and two-sided cross-correlation (CCF).
  • Volatility: exponential-weight and moving-window residual covariance.
  • Transforms: Box-Cox + regular/seasonal differencing and harmonic deseasonalisation (with re-seasonalised forecasts).
  • I/O & reports: .inp reader/writer, C-format .out/.forecast/ .recursive text reports, an HTML forecast report per series, and matplotlib charts.

Everything runs with no compiled code. The optional CFFI engine wraps the validated drvarma C core and is bit-compatible with the pure-Python path on well-conditioned problems — an accelerator only. The numerical methods are tabulated below; see docs/DEVELOPER_GUIDE.md for the complexity discussion and a pure-Python vs hybrid vs C performance study.

Command line

drvarma IPC3 3 0 -mean -deseason auto -forecast 24        # writes IPC3.out, .forecast
drvarma IPC3 3 0 -mean -forecast 24 -html                # + HTML report per series
drvarma IPC3 3 0 -mean -estwin 200 -forecast 12          # recursive (.recursive)
drvarma IPC3 3 0 -mean -volexp 0.05 20 -volmov 20        # volatility (.volexp/.volmov)

<file>.inp in, text reports out. Flags: -mean -diagar -diagma -diagcov -m {1,2} -twostep -deseason [auto|force] -scale S -forecast H -html -estwin N -volexp [α w] -volmov [w] (λ, d, D come from the .inp header).

Documentation

Numerical methods

Algorithm Reference Used for
Exact Gaussian VARMA log-likelihood (innovations factorisation, not Kalman) Mauricio (1995) JASA; Mauricio (1997) AS 311 Exact likelihood (drvarma._as311)
Factored-BFGS quasi-Newton + Dennis–Schnabel line search Dennis & Schnabel (1983) ML optimisation (drvarma._qnewt.raxopt)
Concentrated objective f1ᵐ·f2 (σ² profiled, Σ = σ²·Q) Mauricio (1995) JASA §3 Conditioning; covariance / std errors
Hannan–Rissanen two-step Hannan & Rissanen (1982) VARMA start (-twostep)
Companion-form Lyapunov / autocovariances Mauricio (1997) AS 311 Stationary covariance, ψ-weights
Orthogonalised IRF & FEVD (Cholesky of Σ) Lütkepohl (2005) Structural analysis
Hosking multivariate portmanteau; multivariate Jarque–Bera Hosking (1980); Jarque & Bera (1980) Residual diagnostics
Exponential / moving-window conditional covariance Volatility (drvarma.volatility)

Cross-references: Mauricio (2002, JTSA 23(4)) and Shea (1989, AS 242) are the other efficient exact-likelihood methods compared in the literature.

Authors and licence

drvarma is developed by David E. Guerrero and Arthur B. Treadway, based on the exact-likelihood algorithms designed and coded by José Alberto Mauricio.

Released under the GNU General Public License v2.0 or later (GPL-2.0-or-later) — see COPYING.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

drvarma-0.1.5.tar.gz (205.5 kB view details)

Uploaded Source

Built Distributions

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

drvarma-0.1.5-py3-none-any.whl (106.7 kB view details)

Uploaded Python 3

drvarma-0.1.5-cp313-cp313-win_amd64.whl (107.4 kB view details)

Uploaded CPython 3.13Windows x86-64

drvarma-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

drvarma-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

drvarma-0.1.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

drvarma-0.1.5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

drvarma-0.1.5-cp313-cp313-macosx_14_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

drvarma-0.1.5-cp312-cp312-win_amd64.whl (107.4 kB view details)

Uploaded CPython 3.12Windows x86-64

drvarma-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

drvarma-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

drvarma-0.1.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

drvarma-0.1.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

drvarma-0.1.5-cp312-cp312-macosx_14_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

drvarma-0.1.5-cp311-cp311-win_amd64.whl (107.4 kB view details)

Uploaded CPython 3.11Windows x86-64

drvarma-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

drvarma-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

drvarma-0.1.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

drvarma-0.1.5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

drvarma-0.1.5-cp311-cp311-macosx_14_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

drvarma-0.1.5-cp310-cp310-win_amd64.whl (107.4 kB view details)

Uploaded CPython 3.10Windows x86-64

drvarma-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

drvarma-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

drvarma-0.1.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

drvarma-0.1.5-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

drvarma-0.1.5-cp310-cp310-macosx_14_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file drvarma-0.1.5.tar.gz.

File metadata

  • Download URL: drvarma-0.1.5.tar.gz
  • Upload date:
  • Size: 205.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for drvarma-0.1.5.tar.gz
Algorithm Hash digest
SHA256 3440cedf9700a7133d22e997189165657fe509f66e76e9e7a7795cc7297bd469
MD5 b97782eabea916c1a35e9c63625d6103
BLAKE2b-256 6209933c32e6e440abe3a944f7f58a596cb93535be3345c3ac131e472fd64d42

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5.tar.gz:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: drvarma-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 106.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for drvarma-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 191eb69155f75832c179560d2049c9c2244fe6c60077eba67182754fdc64539e
MD5 13b6fdbb2c320954e7cd796d5b617183
BLAKE2b-256 683700effc32e93c50a2532e69672b573ab711aafe8e3c2659927aeb9e5fe232

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-py3-none-any.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: drvarma-0.1.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 107.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for drvarma-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a8edaa3c9c206514a4061d900bc4edadc864913cac2f13304aafe0c42474efd1
MD5 3398fd02a2b309dbfc5ff4ccef1267fe
BLAKE2b-256 94c1210443206ba9c75cb4f8295f3b53a0c1af826029b3c9b6fffa1e313d9eff

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ae2bac3c3de43382b2f9451ecee9033d667f1a2215fe29959d6a95feba12542
MD5 2231b3d367daa9cd0b759446863b3da7
BLAKE2b-256 9cf77af89081d94bbeb8343298c33f49a41d197f5eadc2e89c4212bfdd19a995

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd22da5791b120cea27abaed1719127316be7f0f9edb9497bd3e386c5d6a0eb0
MD5 807a0b8396f0b3447bca70ef85ecb39d
BLAKE2b-256 b5ca98840f56d8cf1ba04f126ee2567bfbc937661423a1e7316e1ec7b21aec35

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8893eadec0373d46ae7560aee2758670f8e6efa35147a28ca5fdb57d55bced9c
MD5 6ff67f2568c0b315b58a063565d835e4
BLAKE2b-256 269059a40823290b42712a41446dca3bb8892c6fe9a5461a22cbc4c68796916b

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ba3665295263e1ed2622c2931ee6d335e1bf9d44810034244313de96f7f4e17
MD5 67e79e67fd9c8366c28f7ccb10cb0264
BLAKE2b-256 2ae3940c47e7933ca2acafc57061d37714279b96af515fe09d9f72faf2ae29d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2eaee350e8a9e1c05f3c2d34cd650be89d85f42f683457e25cb06c79846d5a60
MD5 0c7ddf19af686b0dfc50661aae3f4716
BLAKE2b-256 756d019f802c9421ce66d22ebdb5c02cb9f64eb8b8792f05be0fd7bc0ce7f15b

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: drvarma-0.1.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 107.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for drvarma-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a26e1833b0a09c12af64c664b0a5fce49ef360ceb11d1f85682e1d9906646b47
MD5 bac25e624d3c1fff268208eeb1646f89
BLAKE2b-256 31e12efd04e04e7817bd83da42983e971a0f37c6db2a9711dcbba2e23db41b00

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0aa26df3b40c38ae7ca6adc9d501ea4f0fa8b09ae2ad4c1071e048546ce3d551
MD5 f6e3893974b4ccd14742ba3d147220e4
BLAKE2b-256 c0c78e807248a9ae8cab814ec422cdc4ca20e5488c9e5f703dbc4073c788ea2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 329dd1c83b7e8a14bdb366d3c35052f43f480dbe8d84dc3c4beb14f6c3034110
MD5 d2f5dca037189daf1313b42725a8e75e
BLAKE2b-256 789f6e63136728483287d6e743c4ecc8ed57e486eb0bc394e28477f6b399812d

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ddd8ad347878cc7aac005f61a477ee1357467817e31f7906ccee89fa354a8b70
MD5 1c71450b914c470e7a44cf8e7713d6fe
BLAKE2b-256 5d0854f65db740e2887ed7581b80faec33dbd56c3f840742758ff354b44d0559

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f55834ecae1f6cc805e000a630c963c6ad6ada55a46ed922391686a70a33b29c
MD5 f7fd2d224f95539338d8c477611a9670
BLAKE2b-256 cb8eef665019e565b0ef1e20befd543c1e4746787f3acc97254ed27790efdf6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f82387ab828345a7c3fbad80e5314e5c0d1aeb4b04a3be3df4d2a1ad2941dd02
MD5 a0afcf46df9264cae766c71972431391
BLAKE2b-256 e8ba50a3a76e87f5bac4f6e98693cc437d7c0ae155758ec051505caa82b4dbda

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: drvarma-0.1.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 107.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for drvarma-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dcef9c8476986ec17e1410a73fc37c5942cd747f1f4fb070aea42fd112a5ee5c
MD5 86d4234f765382dcb0eb66961148955a
BLAKE2b-256 4474773d6d2fae01c84607f5bcce3f6cb91f2f0fe7949423d9116dc33025bd57

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd5ba1a1b5d0d2e88e7a220bb78dfb39172e4b56ad70f8b62f9522ea3c9a694b
MD5 1d8b9d136232e6d690fda79e2205ad28
BLAKE2b-256 6b68ad1d657b7494ff89b3cf57d8a2ac1c2c4b6b91f45a7bdfc60bb43168b6e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1bb7138b35fb8385ed6cccfd075d86fc101b3ecf24bc5c8213228bb72e06c3dc
MD5 5f6bdf0d52961e087452a9e81597439b
BLAKE2b-256 c504151e98ca7761a95b969bae02f7169e55f811d51ba46dea2bc08e90712d1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 697b26ab6863093f6403d40730b21abdb7efe4e6be3103fca86248cbf13ef964
MD5 c2291129c17dab710577ee4724db96da
BLAKE2b-256 4caddc67a05758cfa35f74a36dee81c4b58a2a1085f3b48e446724c5fab3b112

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e5380525fc971954b16700ff7e4b40a4392a946cb75b938ce267b51c3897092
MD5 96380dfdb398d1e983648b1a5277b35d
BLAKE2b-256 b74b4b2d3566ec793c2f2454385d4e7d4c6e8b4f873a1f60384b179a9ccd5d91

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ea9f9df08285afc5a40ebc8b2fcdb8c5b09592fe36bde46a581d9b98e7a5ef70
MD5 dcf34218ec5293e8cd832efc1798ee06
BLAKE2b-256 616f8b787c3d3129ed2ab9dc7ca5f101ed56692717efd743c7fb0b1127722390

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: drvarma-0.1.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 107.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for drvarma-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 93e94a33fab78b5c35bdc7c6cf819dd1aa968971d00cbd6f8b9f04b544df0a75
MD5 1a2edccec6206c7ffb8cc07948cf7209
BLAKE2b-256 f45fbbb484ccfb059821c07d92767f674c144e40b3d0236a36bc77445c3fdc0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 839c34168510b85d053f8a565d802ba9fff81e1fe2a669d8f6464155640d9ce2
MD5 3230ff426d0ab1583b2d998a78faa85a
BLAKE2b-256 e0d9151a9f4421cbe8038d0e0b6782480702af40de46e8137850cc7f0aa32fff

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77b1531c3ebc225bb6cb705fa44c2a8bfb3491362e581c06cade073487e7cfa2
MD5 18f027f9afbd08bd2c51d7da3633277a
BLAKE2b-256 a4613e13bae958e91427713b3eb5e2042db1e06e07b619e78ef80245355c94cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a537facdeac8eb5d9b3a6245d8497de34b9ec59ae8d14c8ae6d5cbedb5c8168
MD5 574baa3c93258c55cf46a76329dc8866
BLAKE2b-256 76ddd1eb7580462a83ab6ae63ec08930c12c435c0289c117a7de2b30868681f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3fb6d890464b57f779bfdc7d233073398d9c8bae42b57d2ff9cf0fce66e41c2
MD5 b3407882f2eb4245f2ee3ccf95f043d7
BLAKE2b-256 c3395f6bb2cf8b6f7d33727c4abce5328c8aa07cbdaf66944c7dc7d8fffbe9a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file drvarma-0.1.5-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.5-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 261a65619e4c924dd19e7e79bc5b7a25b996688c8896df1e1c5bd458549033ef
MD5 487d8264c38c8e1d0bdd0c652e88b3d9
BLAKE2b-256 7038f1e26b1cc977a38994f8798add2ddf2d14b893241bc890db0a98b5b4f2d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.5-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: publish.yml on davidesg/drvarma-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.1.6

26 files

This release

0.1.5 This release

26 files

0.1.4

26 files

0.1.3

26 files

0.1.2

26 files

0.1.1

2 files

0.1.0

2 files

Supported by

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