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.3.tar.gz (206.1 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.3-py3-none-any.whl (105.3 kB view details)

Uploaded Python 3

drvarma-0.1.3-cp313-cp313-win_amd64.whl (106.0 kB view details)

Uploaded CPython 3.13Windows x86-64

drvarma-0.1.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

drvarma-0.1.3-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.3-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.3-cp313-cp313-macosx_14_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

drvarma-0.1.3-cp312-cp312-win_amd64.whl (106.0 kB view details)

Uploaded CPython 3.12Windows x86-64

drvarma-0.1.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

drvarma-0.1.3-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.3-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.3-cp312-cp312-macosx_14_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

drvarma-0.1.3-cp311-cp311-win_amd64.whl (106.0 kB view details)

Uploaded CPython 3.11Windows x86-64

drvarma-0.1.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

drvarma-0.1.3-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.3-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.3-cp311-cp311-macosx_14_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

drvarma-0.1.3-cp310-cp310-win_amd64.whl (106.0 kB view details)

Uploaded CPython 3.10Windows x86-64

drvarma-0.1.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

drvarma-0.1.3-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.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: drvarma-0.1.3.tar.gz
  • Upload date:
  • Size: 206.1 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.3.tar.gz
Algorithm Hash digest
SHA256 967e6c5853d091919d58f368149d353e91bf1d6c3b599cd87038115dcc4ed3e9
MD5 73180fe092493f7abe542a6d91db000d
BLAKE2b-256 d7b3cde12593f08293cf791511a67e900ff3acb334ab0bcfd2fd283bf202b01d

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3.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.3-py3-none-any.whl.

File metadata

  • Download URL: drvarma-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 105.3 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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 1688bc5708bed2f8a752aa23958673ee2d5556a8f5374bf5c9e380e98127f88c
MD5 87b0d08e5b2c99b776273a7aa0b8b7b9
BLAKE2b-256 37ddd6fe2acea1f79803e8dba5562422ec21a7b8020c06d3b153c2606f576fac

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: drvarma-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 106.0 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 931c53d420915eea8f2d6a7e7e23de99009755c85623d02a247f7626ee9673ec
MD5 af3e8b205f0fa5ad482dd72f000f500c
BLAKE2b-256 d5ee1c0fd3cb0967662f49437fb938a3f2c6d15d8e86b9f88a14e625430d5ad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8328fda94b03db67404bfe02991edf4ddddbdd868b399fdf0fa173b43f696966
MD5 ac9062b2c546f22db0d710c6f4f8650e
BLAKE2b-256 601837deeac79bda06ea95674a1eb7a7d98ca154316072f925d7bcfd7de206fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c09afe87f29080f3f5fc0146f2631de282b55d98b83cc72359a9260b06f0fe58
MD5 c731a23749fdf654d1d0386f5c49351e
BLAKE2b-256 b67628ef0e41b0acc6980ce1c97afc58f6c2308efa8ab0ab4b6f754f97a9e005

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4048b34edccb4028b20b05ceec7f33030b522794cf74c33559d936026ef9f546
MD5 df065ae029d940ce2a5bd1b141e8f5bf
BLAKE2b-256 58804e97a5f6c644270228864338709e1031fe44449d4f1a261544fd2f383ef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81910a45d3f231217bb787bab5354bad418cd77c8a202b958a2c78028c9d7c01
MD5 e46aa44f9bfed93ac4b7b74564274b32
BLAKE2b-256 8ef9ccd1aba84aa0fa4230d451f4574f5207ff58a58c34e5a6693e4a3dd03fb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8900159029499dd587da82f4314ec8d325786b147a91151c044fa55e57566b07
MD5 7d66cd896f6f70be0284f8e68bbcb96b
BLAKE2b-256 547191d63807b826cc7e7eb655ce024817e733fc8b1bff2f18b6dc56c9af0ee1

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: drvarma-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 106.0 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c15be99ce8576f411f2b08b06bf2b110829ffc3e494923957b4de043abf3d1f2
MD5 cc1b902a240b757925c0cf1ab1f5b13f
BLAKE2b-256 b919c7b84cf34e7d81e72dbd6b1e27c39d6b548c98dd89134a662a665a4164cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 353a011fd74cce5bec37a520bc0e321c80051526af3b67db28639c077e73c030
MD5 7a0b6e152343f4e2c3f761a2a0e14bec
BLAKE2b-256 8ac556b4501361c3cd898ce9df62281d28c964e91d7ce3d760cfc457a22ec5f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61df60f1e2905b322e873321ea70bf3735cfd2a094269eb8ab4491e4f27a7735
MD5 fbf7bc45ca0b6e250768c7da815a1d9e
BLAKE2b-256 67ff146e0859d63ea2dcf2750a2784a82fa932ad7292813d79eb7dd8746fbc48

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c74227abe88f50026ea6494166cb55784c9406000c3ea5814caaf68bc89efd8b
MD5 66b75e1301ad000a8a42118932a17f03
BLAKE2b-256 7ff4c59bd859091f7cecc95a7a2fbfd91f7bf8afd1c4112fb1964b92e4b5e07a

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea22a1551002ff6c8740b9916a794a8212b8ab96ced755f34d35973e0c0c07ca
MD5 507b05f0af250aa272e9b3098ca3200a
BLAKE2b-256 e628f053fe1b68f5e820f0e8b3cb4726d5ee29ce2aca5618b65c4222a76cd0f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 673983485c2e7fd5aa875a60dab0b89ba1d4c3062c8354d0a5952830169643d1
MD5 7fd67f33f8508e4a168aacbaf5e6b9d4
BLAKE2b-256 239d7ca664d7a19093685eae41286cc8d292985aff126d4ea4c4285e4ff70d81

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: drvarma-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 106.0 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9ca248d1b684aaa2b07bb46164d9aefd52bf5d5c6f16348fddea8afe6526b507
MD5 a3aab719435da7f4b4662f39bb5229f0
BLAKE2b-256 4a71b861caf72e47e2fe566e96f5ded73660d45e9f157b2abeda2cd294dcf62a

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3875dff6579cdee4a19885204dc1f58c8ac79deeaa828c91396e2a419c9f5f71
MD5 e85d644d5ef42ae3749a3ec4594e995f
BLAKE2b-256 34d48bd5c842f98efc763a67c0c37bd4c6a033a14b9edcd97a07a994a7511153

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a37b62e03f75efd32b922c2ee115f32d0b7d3719e6ef9656a4b9561f83104456
MD5 499fb9cf967d196949cfd064ddfa220a
BLAKE2b-256 24e98cac75bf76b403a0d94d4d9b70b0200816c96ad6a315bb23814cb50648f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d256a54a947f54ef71a7358aef5340dc5ea75b9f99fd7fe3af643bf2a0db4f9b
MD5 7ed280e0489f619d36e5621bd4a1670c
BLAKE2b-256 eb81242b6634ee1e640c1839fc02ace905733ae3b80474ba49cbf2d61efbac15

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e971d59e4645e7ab4ef6b507a3f719804b7e62ff9b69ae75e742675ee112a797
MD5 ab26a075c1ecb56ffb75ab263ace6bf6
BLAKE2b-256 d92383a2419f4925ad72acbe7cf57ef15988f476363cfa0a52aafc5b10b18e9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 fc40d618e868861a88f0a63fc945fd8a1d2519663d1b6d4e636294b212778412
MD5 5eb4c7bbdaffc1cecfbcab482d03e794
BLAKE2b-256 7be1d30c262ef656e61d83f2bba6dcc157f31e51e77d517f80268516d9566720

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: drvarma-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 106.0 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 31a631499ea996d15ab4077c70b72f6953f3f988abd9fb7b64780daf16fd7bf5
MD5 1e12d7d4f2bdfc2caf401e64b470f00a
BLAKE2b-256 ee69bb759ef8ad0dfaa80e1c1c753309915405c3ed3c92392e1a390062b44252

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 690e0fcb8fe2d45b4a13966c6a8afd48c4153bddccd62b5945038bf71d25fa6c
MD5 3c34d68918c8047a4a2577e9dc4d87a1
BLAKE2b-256 11f9664d7bc38968cc595ebe82227459bb86bd61ab7d71d10715b889690a40e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1744498c445bfe0aee28bc864d87e01a82de46f0ad6b2fe9b848d183288e4e5c
MD5 600044c321a2c86dd5bad6cccc140c72
BLAKE2b-256 a0afe5c99f5754da87d8efc7a6afd8efc8b5c78ad31663450676a24e2d192f6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c57dbf170313192b32da9de97600f124e768f1d3c4dd559bc20bf8938c17a5e
MD5 90d56c5694ed97d7fde804fc23443f3f
BLAKE2b-256 704b7702ba5202ebb99756a73f72ba04ae728cd23ac381f529ae5c244c192181

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fcf12b2e043b9b0acf21425471811aed68a5de8a2278e1d5184d262ec5f287f
MD5 61a87d3fb4e024136e742920b6bd1a58
BLAKE2b-256 50965439db435bb4061263b84f7608b2aa775114423d0f5fe77fa6b361f1fc99

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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.3-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for drvarma-0.1.3-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 006a7d5ee75e539fa3ad7f7cbad612f4fe14d2f9754eb5a529216b47394eab21
MD5 60c69bc29d3ea96ac80086c84274fdaf
BLAKE2b-256 bb4a906fce81f51c85a379adeeaa54b08ba4b44b05df3af3c8d6d828394fd050

See more details on using hashes here.

Provenance

The following attestation bundles were made for drvarma-0.1.3-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

0.1.5

26 files

0.1.4

26 files

This release

0.1.3 This release

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