Skip to main content

fue — Exact Maximum Likelihood for Univariate Time Series

fue is a Python implementation of the FUE/FUF estimation engine originally written in C by Arthur B. Treadway and David E. Guerrero, based on the algorithms designed and coded by José Alberto Mauricio. It fits ARMAX models with linear transfer-function interventions by exact maximum likelihood using the Ansley (1979) innovations form and the Mauricio (1997, AS 311) / Mauricio (1995, JASA) algorithms.

📖 Documentation: davidesg.github.io/fue-python — what the model is, the file contract, the formal tests with their critical values, how the port was verified against the published algorithms, and why the wheel. Five runnable examples in examples/.

Features

  • Exact ML estimation of ARIMA/SARIMA/ARMAX models (Box–Jenkins family)
  • Seasonal and non-seasonal AR/MA operators; regular and seasonal differencing
  • Linear transfer function interventions: impulse, step, ramp, Fourier harmonics, alternator, and arbitrary user-defined regressors
  • Fixed-frequency AR/MA factors (AR(2) with constrained spectral peak)
  • Box–Cox transformation with automatic back-transformation of forecasts
  • Multi-step forecasts with asymptotic prediction intervals
  • ASCII .out and .pre report output compatible with the C FUE binary
  • HTML forecast reports (requires jinja2)
  • CLI tools fue and fuf mirroring the C binaries

Installation

pip install fue                  # pure Python (numpy + scipy + matplotlib)
pip install "fue[report]"        # + HTML forecast reports (jinja2)
pip install "fue[pdf]"           # + PDF export (weasyprint)

Python 3.10+ required.

Quick start

import numpy as np
import fue

# Build a time series
data = np.array([...])   # monthly observations
ts = fue.TimeSeries(data, freq=12, start=(2002, 1), name="CPI")

# Specify an ARIMA(1,1,0)(1,0,0)_12 model with a log transform
m = fue.Model(ts,
              ar=[[0.3]],          # AR(1), initial value 0.3
              sar=[[0.2]],         # seasonal AR(1) at lag 12
              d=1,                 # one regular difference
              boxlam=0.0,          # log transform (Box–Cox λ=0)
              refactor=100.0)

result = m.fit()
print(result.sigma2, result.aic)
m.plot_residuals()

Load from a .inp file (fue format)

ts, m = fue.load("model.inp")
result = m.fit()
m.write_out("model.out")
m.write_pre("model.pre")

Forecast from a pre-estimated .inp file (fuf format)

ts, m = fue.load_fuf("forecast_model.inp")
fr = m.forecast_fuf(horizon=24)
print(fr.level)          # point forecasts in original units
print(fr.level_std)      # forecast standard deviations

Command-line interface

# Estimate a model and write .out / .pre
fue model_name [eml|aml] [chk|nochk] [-f horizon]

# Generate forecasts from a pre-estimated .inp file
fuf forecast_model

Numerical methods

Algorithm Reference Used for
Ansley (1979) innovations form Mauricio (1997) AS 311 Exact log-likelihood (elf_scalar)
Kalman filter (quick recursions) Mélard (1984) AS 197 Inner BFGS loop (flikam_scalar)
BFGS with Cholesky factor update Dennis & Schnabel (1983) ch. 9 Optimization (raxopt)
Scaled objective Π(x)/Π₀ Mauricio (1995) JASA §3 Numerical conditioning

Bug tracking

Bugs are tracked in-repo under bugs/ — one Markdown file per report (BUG-NNNN-slug.md) with a small frontmatter schema. A fix references the id in its commit, e.g. fix(forecast): BUG-0001 ….

fue-bug list                       # list reports (open marked with *)
fue-bug show BUG-0001              # print a report
fue-bug new "title" --component forecast   # file a new report
fue-bug check                      # validate all reports (runs in CI, tests/test_bugs.py)
fue-bug index                      # regenerate bugs/README.md

Authors and licence

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

Released under the GNU General Public Licence v2.0 or later (GPL-2.0-or-later). See COPYING for the full licence text.

Download files

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

Source Distribution

fue-0.1.11.tar.gz (243.3 kB view details)

Uploaded Source

Built Distributions

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

fue-0.1.11-py3-none-any.whl (94.6 kB view details)

Uploaded Python 3

fue-0.1.11-cp313-cp313-win_amd64.whl (150.5 kB view details)

Uploaded CPython 3.13Windows x86-64

fue-0.1.11-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fue-0.1.11-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fue-0.1.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

fue-0.1.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

fue-0.1.11-cp313-cp313-macosx_14_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

fue-0.1.11-cp312-cp312-win_amd64.whl (150.5 kB view details)

Uploaded CPython 3.12Windows x86-64

fue-0.1.11-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fue-0.1.11-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fue-0.1.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

fue-0.1.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

fue-0.1.11-cp312-cp312-macosx_14_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

fue-0.1.11-cp311-cp311-win_amd64.whl (150.5 kB view details)

Uploaded CPython 3.11Windows x86-64

fue-0.1.11-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fue-0.1.11-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fue-0.1.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

fue-0.1.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

fue-0.1.11-cp311-cp311-macosx_14_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

fue-0.1.11-cp310-cp310-win_amd64.whl (150.5 kB view details)

Uploaded CPython 3.10Windows x86-64

fue-0.1.11-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fue-0.1.11-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fue-0.1.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

fue-0.1.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

fue-0.1.11-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 fue-0.1.11.tar.gz.

File metadata

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

File hashes

Hashes for fue-0.1.11.tar.gz
Algorithm Hash digest
SHA256 9ed55fcd68da271fafcca9ed422cc5bea2a679216b57fe786c53a4fa491d7f6e
MD5 473218d7de266a56cb63962dc203b227
BLAKE2b-256 e7144f2a115b88b764476b0d0f4c7afd5f00dc22f19efc0cf4bc14c8a34561cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11.tar.gz:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-py3-none-any.whl.

File metadata

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

File hashes

Hashes for fue-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 94b5de03679cac545c121fc3c25d853ce2516790db2a6eb9406c74d83eb50204
MD5 879cc8c7e91babe65ef87d3650d47fa0
BLAKE2b-256 a1929c2408c905816c6d669dfc59014317d1e88fb27467d517ae2bb41741597b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-py3-none-any.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fue-0.1.11-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 150.5 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 fue-0.1.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 118591bf1648c1be673fb1426d3e4c0655bc777ad1d37c1f36b796fe550bd9dc
MD5 01e99a0e585d58cd41f0adec89c42734
BLAKE2b-256 6c07dd0fb79db0c72614f3fc8e521202090b9f3300a3c78fbfd5db9b902189be

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f1d53c3bc4483f33fc54c8b3ca364fd27e440ae55223b7dbb7e54ba22760906
MD5 fcec41c2caeab9c35d96a518d309d834
BLAKE2b-256 09e3405de0ac0d42e83c9f75bf3307d05c243b2c2a703399292ad30546541a89

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72262f9d4f7157bf7ba7801e27eb505ee81e7305801233b21d7619ba516b52ea
MD5 a2414af9142ca486e080fc06cbeab194
BLAKE2b-256 3b065b28e3131a3b724a55b191d56b852712745554b560f02574ff095ed5bb5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4831b7761fd64f6130c4f479f289d09860327feaf8455d8e7899bb6d2ed2d23d
MD5 9f2ec7cfe6fc0a8ffc68f05a9a40e3f3
BLAKE2b-256 1ac995cb367cfa59afa29bd0943d5f9ecd1c5ae8dccf1f22392cf431fec379e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd81d386a79c0fac5a026d4b6c8a1103955f5684c0f883f20850bc6696eae8e4
MD5 3e680569c1ff644e74118eba81f2d29b
BLAKE2b-256 689d5a80e801fb32c63a43cb14b27657b03de49f70e6449925b6d4a9f517e508

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 540bec82aa9370fa7993508231f67ea1d487848ad1051f7a96ca9ff954883c95
MD5 644b3ba0dd4632fe40a16b1d446142bd
BLAKE2b-256 5f472d650a48f7fa04a3cb7bfa45c6a65fbfdd1dcc93aa7ef13adc5dc5eb4a14

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fue-0.1.11-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 150.5 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 fue-0.1.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 832382c98fb5390aa2c1b74c7583b61b5fa1adcc5392a13288554d0a38ff024d
MD5 a1fb546529281f02ecfb70d6cd295207
BLAKE2b-256 f7b6e984200d4996997d6d88df32610826e2c2996df226683f69af9ca5c04eae

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1381d162ef1d63a2d1c83d330d61efa62097c7f781b11a9029af342da544d2ed
MD5 dec0b093702ae251c30e05cb9732bab4
BLAKE2b-256 fc8823693fb21d6b09abffc98b95c937524398469d26008c6ef6b0463f516c45

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05d3fb600daa6844ef562dfed1fcb4a22059dd4a172fae8d9f08ef48cb0ed163
MD5 d7863e353bea405adc2fa78cbb80eeba
BLAKE2b-256 39d8dfd15c3addfdf0866605f6ee8b89f67e1f791f068b91534f5f71eecd1c65

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca9ad1e4e2415b2a6ffd8d62a884ddfcf949e1e10826db0eaf81ba68d61d0557
MD5 f87d87489a3650a56a856c8d1a0d91a1
BLAKE2b-256 6759256d4ce74c602e47ab1974c443285ec41fa43fe13c64dd3330c51fd01345

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4df74ec8fd782ce7e91cad1f90014dfbf1adc623b2b522083527a001552cdd32
MD5 4f2189a9e6845700f914c6b64a6e0d26
BLAKE2b-256 ff03b3c0cebfcbf679d1c8dea295f472032c9e2ac18bb6e32a076b5455dd656f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c830300f5e93a8c4c0eeab7ee305d113f192cd0749e2cbceaee30efc26d73c36
MD5 ad62fa3097910246b4eb2970972889f5
BLAKE2b-256 76bb6eb5532e40ae7a268344ee50a2321c499c3a20f0ce8ee5fd36e609253c3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fue-0.1.11-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 150.5 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 fue-0.1.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 75d768c153278c3eb678d1ce4381cdb6f74706917a59ba40fb82487e7678f35e
MD5 5c0e7b199832940c229bab601bdfc027
BLAKE2b-256 78002c43b61c457edd04443e306fea657d88be8163fde0bd016e7680e4952fc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8794a6f28cf52a7a368a638b553633288bc656e585a6ecd61e1da71d41047b3e
MD5 5cc783b27e9ef65e902d7e25d3811543
BLAKE2b-256 cf5d9a1c83cae611f034875150b5e55a4fe22969c9193bf9ee0a3d20f6c7c6de

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6131b0a193b5f4dd56a971ed0518b24d19d1e6e6f6db8d3f71f083727893229
MD5 369de71f80ff0c51ddcf40ffd83ae860
BLAKE2b-256 b2b56bea09e034e67422e5abee2bd78b43a8ee5b3f6cae4eaafbb9fc2c422288

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11514e15f05cee11f04343aebbe4f042d8b4f3f992f252b78fd21adde4c69a8b
MD5 3b2c755a78576f8678408d876d2da2c9
BLAKE2b-256 7c33c02b9aebd1ce22b03aafa31acc59438c0849510e773e633bb657b1ca1575

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8cc4b7676e29dc18043513ce357f8b0dbc25602c965097c6509ca705697a334d
MD5 fd17cfe5ee317650c318f4d51be582f1
BLAKE2b-256 ff24397e4f3333c213a3f750d466cf89d1c41d26d9b9ede5cf92392b613a90cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b6a7874a920885d6388edb6133ec7e815b3368b79890aa4211381e55b5c04824
MD5 38faa1c8a9986cb040d96903f841f455
BLAKE2b-256 dd6e29c6569a8ab4eae3d62ce049bc8e2b4f1362dada59e77de87de94f52c523

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fue-0.1.11-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 150.5 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 fue-0.1.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7655c897bfd098f25784047073b31ff7ad32871f853b55d64a4d5cd36b1074a1
MD5 d04e72080788da9c9c2c44193b3e08ba
BLAKE2b-256 2b84229b9bc1d3fcb0c87102b74de7da25564e4f433bc204563eae6b4b23fb0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aff2b56025e1a9420a00b9195a8d5b1a403c7fb0085c615ee1fbffeaa51e90d3
MD5 3df8661ff54696492892e0c49d06dfb1
BLAKE2b-256 084cf61bf294eb068a7fb2f0f9e610b37e643b149c81fd93d8e1daebc932f0a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f6caa91b1e5d5103dc7e74039b355c89ca02d9b8a60a3b9ed8f491e4eae8472
MD5 4d4cd678960e2f9b8be2272c91f9b0d1
BLAKE2b-256 e9fd32d8ca5be61a315dc672ac16ab88032eca7e177cc692d9f8c2bd3cd5f444

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e51d010ecadcf240a0c81af90f951b734804383280bcb4e449381c8a894f576
MD5 3c90ac65e83499db1ed573840718d481
BLAKE2b-256 3b31c2f28bd7b59f0a29d98be48479eb2dd1bca3fc526d7d82fdd2e42cf95c15

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70fedd798c582a506b03c97b90465aac4f691558f31d7564cd2d1b4d23507fa1
MD5 8bdd21a4b6e56c96511998b301852e8b
BLAKE2b-256 9021a7b0d8ee1b92dea12526090744f07837f8dde5e578b0575216cc093bff77

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on davidesg/fue-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 fue-0.1.11-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fue-0.1.11-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 67f78c794cca16ee846dd06d0470f7bd580a59e6a1d3464382f1a8c7f532d66a
MD5 dd1a22baa43ea320d06e0e87e34c6e39
BLAKE2b-256 299408df67fd7e1b254603e00a1a9f1ff7563bb6670192f203a0e8273036b9a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.11-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: wheels.yml on davidesg/fue-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.11 This release

26 files

0.1.10

26 files

0.1.9

26 files

0.1.8

26 files

0.1.7

26 files

0.1.4

1 file

0.1.3

1 file

0.1.2

1 file

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