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.6.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.6-py3-none-any.whl (106.7 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

drvarma-0.1.6-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.6-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.6-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.6.tar.gz.

File metadata

  • Download URL: drvarma-0.1.6.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.6.tar.gz
Algorithm Hash digest
SHA256 0d4d1f0585127c6e398fdd5da9913070ab245fc161f7449eb6f646d2d4c786f2
MD5 709de8bc7ebc7152786b4baf4df6e34f
BLAKE2b-256 7f54e359dc51b75185a93c598323f5ac57f0bf814e326da0f707add658b23117

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: drvarma-0.1.6-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.6-py3-none-any.whl
Algorithm Hash digest
SHA256 078fbab8e83339df6b4f0e7c34125c873d9b6e39672b30c078300e2d06cfb7e8
MD5 d7f967b86c7da3d018f74389214f75de
BLAKE2b-256 f01429219072e5272674dad16e825344a2b55f72328083ad1e990f573ee8e9cb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: drvarma-0.1.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 43fff7ff41a6b32cabe1e0fddceef8875472c063e2d3bf90933c13ed50b2a245
MD5 9025c93ecbb8e0e17080e3d81ade33dd
BLAKE2b-256 0ec45a6bc857c8ecc2a7847418e051ba74ba0251b199d7ff6f4cc8ae7389a88f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 372a4e0f7673fa29359ab40d88e5292def5ed47d8125a18ff6e20ffdc1db1895
MD5 8799696d722a4e99e4b84a93f224872c
BLAKE2b-256 e342abd37f6720882d9324e3bdd568d165ba188eee0091661cb9dd93302a4978

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b2213a1020d1dc66b7e30c991f5ddb0137c2542060f0bd31a552cc3a467128d
MD5 d139555d195d4e86a0dd484d7fbba860
BLAKE2b-256 755870ba20089c75a5d366a2f625f7874423d62150da129990a03821cc931c73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 725c3bf0915f3d6feef5d17f0e76c347990965356b1c695505c5be3e27bb235e
MD5 6908fb80ee2e9272c3683906e112b5d2
BLAKE2b-256 370cbacd056f2b24b8d4ab604e0721ae22d7855d13b3dbbe81af20e8a9a01f59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5eb3259548e87fa6eb15a560bf94223e5860e26e7f8e4d440d1a749a8db4ef2
MD5 af241d8e73111247cf557e5a67f34b32
BLAKE2b-256 08fde14b49b774740c7c8be42838ecab55fb9356229958225785a80002df7d4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 17c388d47daa7a06fac07b36ea6d2c050d29e8efba357d6230fc5e90d74e2d24
MD5 a49448e1a13a60809ab58c8a5d69527d
BLAKE2b-256 47f62f89ce66a99b48464a171e5bd33ea06a78f4c3f2b5f53fc68a96ea1c32bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: drvarma-0.1.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e9a2ff307cbb92a362a1a83c4fdf4d3cfe4b57151ed386be35ded51d419f46b5
MD5 9373493828e5e03e59cea99498876167
BLAKE2b-256 1049471f7b2287253edc0dfaa34b89e387622efc1c3a6db591374b05093106d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aea110af922ad94ecf5bb19cd9692e96212337f45413494edeeefca22c9b629b
MD5 0b2ea8f1dd49dc0889e04cecf5368264
BLAKE2b-256 99b4fdaafd4b8777dba6d43aa0e9129e67f24ea7306da931ebe4d2e0461b6481

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb487826cc49392b9f9b3d716bebb727930ea8dce4cefac5712484bf63940192
MD5 56c66bf4c081488ecd5f307eb40e867e
BLAKE2b-256 c83394a3df0f4dd97124dca41a188eb4f694c406c90d6563e928da803e4239d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 61a20b31308e75125b1c747e0feed76272e33e45cae582e7f29812a142389f46
MD5 ad9bef701cb4f046625763f5983ebec6
BLAKE2b-256 5f6a4c11d6b982083ebaeee349c5a33854ada574c67f0ff4ece4889ca81be9ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1aeac2f3857cd0c076e4523d0e0a35fdd4f41ea6534fd72b01923eeb91c1b70
MD5 0941e51794366917ef6de8eb6cee2f06
BLAKE2b-256 75fa3b3c5ec3a2091ea27feb256f6f2e92e211172dfb32ebab4ad56cb87d19f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 30782df6946606feb51ac24f8ca28c8cf18cd85ff5ebf9744b489094cfbfe031
MD5 b1c93342eb094d32e143d79fa488c1e3
BLAKE2b-256 49048c4fcf0013365b7706e702fa367b602f779067c4718c023ce5fecfab5228

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: drvarma-0.1.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8c32bc9bb99a1e1dfae1920208e321e028235dda54886bdc3c116ba61161b548
MD5 3bbc9680c9c2d0b3baf9e3c3d3beabf1
BLAKE2b-256 c9875a9c27227c8b7f32db2d011cd0335a08d40bf1c334a9d37523c0aca4a659

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b39f9b76ddfe23c27f7be6b82aceb328b6d4ecd2b38c12672644e7b068c1650
MD5 919eb67851626aa7420265b08331bf91
BLAKE2b-256 13a7b5f3a41b0f6605e63747bd89e61a27d7f4c8048c839644a2fa730b831b80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc3ae15c50cd81059d9579bc1c48d028f63cf9781893bd0a92f6c3ed12420b06
MD5 fc841d02414d70c5ba4f6028717dcc14
BLAKE2b-256 7fbf704f532223363f98f5533846683580b48f8201f9ea8976aa976fc5c4500a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16dfd402860ae0a3ba9ead9dd538cea4acd554ee011782040d185d96e47d435c
MD5 4b277520ce34f155957baabd3fae65e7
BLAKE2b-256 699e5ee0117d7b5361c84c3eba022f377036b87a399bea521eedc0554005d7fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22e0e51636e2fbb7aef21ada240f615764a170da8e20bc1448c1452f40d04121
MD5 9b0d58d8835b7a222da997d901667590
BLAKE2b-256 e4569bf68cd94c70a72efb5821b4161b67fee68fbbe12b72ebfb9c685a413287

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 63cf0534580a4099ab3c88e8e641c972841ad2b12f829fd2d271d19cf97dbab4
MD5 b7de6ae1595fc077161f640d154ae592
BLAKE2b-256 22e20eeffef0d82206eb51a58f11f8cff0a46c9a8bdb1a84a34eff914db35ec3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: drvarma-0.1.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ad6353d2be2dd852400e68fee2fa38b73480088956cab91f4c1b54f59b57b329
MD5 7cb6ccf08eeacfc87d161df28c436646
BLAKE2b-256 cb104881dd337a9ba18040d95733431f7f3688579bc45c1a3ef771c2f5b137de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd34c40d30e611d75c2eb15b2d767fc7c1cff00e45a60b3c7ea220d91ddd1dca
MD5 fb80012b5769cb9b427d0e7bb5dfaca8
BLAKE2b-256 3a43ba422ced6e87baae00e90e27ae2e9d3324a989b729be89f084e2e86b47d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31f5aa0e2dd86a29361e912dceea29107a85d430882ca04319de288745eaa60f
MD5 f705bf0ba5c459673af978570673f82c
BLAKE2b-256 fce2b1cf4e198ce1586c94ce42e527c29526ed5331c8a31b12ed20766868512f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c8b709b2a8bec2c38568537efe3a7abe1f0cd579a54706b217a3ed3ae59f282
MD5 d1ef74c3bfa4dffaefd8ecd8132c21e5
BLAKE2b-256 1a7ab41629f61aa27d96ec81bc779580c1d3f13513e84e6670afb9288a322f2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f562b29c337515dd1a8f06760bfc25201674a774adfb6fdcbda32788c574a6c
MD5 703463428df7dd09bb73b04b2fd1af4b
BLAKE2b-256 90a8bef71a2d039ceddb84c28329c93dd59cf7298017b9f99d04b04c9b2b50f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for drvarma-0.1.6-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f95fc35db8530a9311b11d36b9eab89c6300be51418dffef0e3e7afc6ffb93c3
MD5 55578ac3d7cc352a472286c122e4c6fe
BLAKE2b-256 8fe12f97238d23eec05dad537274966f04b18af8839ea99541df899b9c0bf62c

See more details on using hashes here.

Provenance

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

This release

0.1.6 This release

26 files

0.1.5

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