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.

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.8.tar.gz (179.9 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.8-py3-none-any.whl (89.6 kB view details)

Uploaded Python 3

fue-0.1.8-cp313-cp313-win_amd64.whl (144.5 kB view details)

Uploaded CPython 3.13Windows x86-64

fue-0.1.8-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.8-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fue-0.1.8-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.8-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.8-cp313-cp313-macosx_14_0_arm64.whl (999.1 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

fue-0.1.8-cp312-cp312-win_amd64.whl (144.5 kB view details)

Uploaded CPython 3.12Windows x86-64

fue-0.1.8-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.8-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fue-0.1.8-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.8-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.8-cp312-cp312-macosx_14_0_arm64.whl (999.1 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

fue-0.1.8-cp311-cp311-win_amd64.whl (144.5 kB view details)

Uploaded CPython 3.11Windows x86-64

fue-0.1.8-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.8-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fue-0.1.8-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.8-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.8-cp311-cp311-macosx_14_0_arm64.whl (999.1 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

fue-0.1.8-cp310-cp310-win_amd64.whl (144.5 kB view details)

Uploaded CPython 3.10Windows x86-64

fue-0.1.8-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.8-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fue-0.1.8-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.8-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.8-cp310-cp310-macosx_14_0_arm64.whl (999.1 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file fue-0.1.8.tar.gz.

File metadata

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

File hashes

Hashes for fue-0.1.8.tar.gz
Algorithm Hash digest
SHA256 4c33a748c783c0f516f47932c2b00022e936ceca6f152f3af13eccb3d34811bb
MD5 e0f279c8e8996d2437d251e58dd268fb
BLAKE2b-256 e34c3b6f521c1dde2cd45a906252f546845d87dcb407390aa9448a7319fe0ca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8.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.8-py3-none-any.whl.

File metadata

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

File hashes

Hashes for fue-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 2b4bd563038d639952f71f76025d823f2a70508d784baa5875e037ab0b487562
MD5 ba7f97c0c7c5ccf73555b0bb1d280249
BLAKE2b-256 c24d46864a924664c6269569c3e9f5dd8af6c4e78439000a5f3b7d2ca12aa9fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fue-0.1.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 144.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fue-0.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b56bdec7c629db837552ba0d9bdb5a805c666955947741d3abe107348fc2f39c
MD5 017c6313eb7ec232c5e452c42efaa436
BLAKE2b-256 80c424f257819fe9bac641502a5f84c3d0bfae636dfccaa518c751ad935be80c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: fue-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fue-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 478f2e5a133c0bdcd8d6cdfe6cf226797e5241641c1e6268bdb2ff1292cee8a3
MD5 508a4ffae4199b128a107f8b60270f16
BLAKE2b-256 36a22d8213c5a3b2eb83a58183303a58cc1cd1ea9ea08ea1d5d2e680ca7db7fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6a5a2ba6025ef41b4c53de7179e9b4d5e75a64d424d37b103601f75a58dee07
MD5 904a200a1513e14d96bd953b714a02b4
BLAKE2b-256 6f330c24ece5d1df2af76f5b686f63d8dd58ace1466318aa18a4766d1bdaee2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-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.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb65c8b6089a48581c2928c844e5602583c0ebddf3e3a89814282ab7215d42ed
MD5 7626bc010e3793e748a8d9e073f2bc13
BLAKE2b-256 39bd3af3d09f6567ba825e03977952cef42ff8721bca1498b75777362a43cb5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e7ecc0554ec6623e1207c3956afe5c7f102877f6c3319a1905b7c9ebdd7cd25
MD5 cd80ec58c4ef756ee21e3dc3a9b7469a
BLAKE2b-256 764427f19b638475088bcb384c9559a52934352e41edcecb41236806542dfaf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

  • Download URL: fue-0.1.8-cp313-cp313-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 999.1 kB
  • Tags: CPython 3.13, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fue-0.1.8-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 938249a446d9aee9548a20ab7ff14384f4516fc7fb35818a0e9e8e7cfeb7aa98
MD5 16a40a2c663449e331a314bcc5d205f5
BLAKE2b-256 c99097d2d5b88a89c0220b58495500ccae268290c8e6c6010a8c4db196d7ae47

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fue-0.1.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 144.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fue-0.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 536ea1c252f2a949eaf003ee4cf1e22c4554abdfcdc91231d1ab456a6695bc8d
MD5 4773cd349402bafefe12b88d6d0ed105
BLAKE2b-256 71faf6f9254d4ebb941bccf04a54704a3dc59f94d3e7ce1c94d73c841099db56

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: fue-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fue-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08d2c815a57210ed9580e8127958ad0be8f108e6ba0bb38e74e4cdb47acd150f
MD5 99e3a810482093facfae60a35493e0c8
BLAKE2b-256 0e17981d66e068647247d3350bdd8583af82e07ae4b05af886b3f0ac8bb9bd17

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efdbbf3e2a22360e2539ed14eef126aed298bfc256140c9d6a03031df9462e41
MD5 fc142414e81917fb59c2259840b88c08
BLAKE2b-256 90a8453290d3c0a8427ab8c33693f87bd97818720321e1014372996d84cae2bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-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.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0fbacfe231c02c5036dec494f16d5dc958dcb132c1b6e0f2e940100c9b653962
MD5 cbbc223ba1baf0a85c779c4fb4e61462
BLAKE2b-256 69e91c5fea2710582ce7d3da13db9e971e2be316da6605fa896aeb28d13aa145

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ef2bfaa0448e5ee6eec95f1524248eccf0298af04f9b10f920538228ff60f57
MD5 7d1781a1121a857db2b77c5929f117c1
BLAKE2b-256 c7eb1c864c6d02c96c30456d41194a7d7595999867c5da9f82f20ecba101b282

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

  • Download URL: fue-0.1.8-cp312-cp312-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 999.1 kB
  • Tags: CPython 3.12, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fue-0.1.8-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3f1e454ad62fb23de8e09677e5030a0d08bc4487f0415d0bfb231365bca20207
MD5 7aea5fdd17af7bb6d0f78b143e86bc86
BLAKE2b-256 c994dcd967d683ff26ab7c12c6ad51611edb32abf1ff50aa84f66c1ce933e1e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fue-0.1.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 144.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fue-0.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e824eab5443fe425df914619091c6d4ec58c350e906aed798cfbdfb26632e1c2
MD5 cbd17a9f5f6c1d5b2f1810f5a7e118b1
BLAKE2b-256 d111bcad93a9f2ae3f4618fee8cc6e8b3afa076bd22c0162d8045bd88f3d3aa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: fue-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fue-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acf7d0be871a97357f6f4460cf2d15284a4cc7b1317ec9454bd758cd0c99e652
MD5 2c9a50c709522aecb9c39ac0f9693051
BLAKE2b-256 a53685b60810a9f65529bd5d8063728ef6f7c01e6d926845ddff1b2e323da83e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a750f6ab738703d76639c90dd4c29ed52620bfbb37d6c1194cb0c3a1030725c
MD5 c69b538178fc908ceaa0ab1ec92d6a56
BLAKE2b-256 8eff9cd2787126b1e04416d8b1bf15c0e5132134422aa7bb8c0a04a71497137e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-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.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5909f7611d5762fb9ffa44cf9392866d880ee23e1cc9c6f7ac3aec2f83073d36
MD5 b93378141448bedbe8d3a706e00a2434
BLAKE2b-256 9a763053bcc111b3c0eef7e72e07e8a45c17a375953a37c34109ba727cf3c12b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c86dd8342b658e4a82d9ffd775fd4eb898efeebca9e093dbdde3fea1dc0aa35
MD5 c8fb249bf2a107d2edd4c9370feeca07
BLAKE2b-256 56048f81b73e7783c2f95390cf39d7bfc1cd4e1667ffd288a790558e07fdd8b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

  • Download URL: fue-0.1.8-cp311-cp311-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 999.1 kB
  • Tags: CPython 3.11, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fue-0.1.8-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 df58af60498eede834681a7e1aaa33db8c4a98e34210a2c2a62e4764294432b0
MD5 fd439aad1c481b81f1803ad85bea7769
BLAKE2b-256 c282cde88e3fc1f1e5ebdf04cca7e2ddc252ebf2b8340c934dbc146502210bc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fue-0.1.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 144.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fue-0.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c1737ccf47a7a7ec1ca9b13d250df02e22ba7af214b18bda1f80a6905618acc3
MD5 a0a111a5d07697b9010133a5e83a3c85
BLAKE2b-256 21c53639e545cd0e63f2c6c681451bb9ccb67a9c823202795e6a01f118a83af7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: fue-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fue-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af6d474f1d6a70644d6a8c0373567d65911a83dc808ea3ce2cc3a2df37a631b5
MD5 0c17206937d8ba22b077912fbcd8c4c0
BLAKE2b-256 bdb6e230babd61d3b6099087b6275f2901e02d3513125b2197bf5d0e4bad3441

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 838161df703fde2c060d1117bdb1ffaf549236cc78b9831528bcdad11e795cba
MD5 45f8d8b8f426606e265c27c477e5e251
BLAKE2b-256 c479d8d3ab1ee9b6d6fa8b13277d8dda036f6f88c0d718817a9a3b8e237243c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-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.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26f6e4789587fc1e7f8e167cda36b3eaec4caccbad5917d39b0f7c7128d14fcd
MD5 44260a32ef52bac0bbbee598f9607d54
BLAKE2b-256 f887ed9e2ffb68037c36f349b0cdbfa499328ca8f2545feb1b9716ef3f4a4756

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fue-0.1.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b1ed19fa1092af17b4a2045d0d7462fae7262dd3255ea7bbd140f8a60d99f2c
MD5 cf263432bc70a5ff8354f5e262ce6da3
BLAKE2b-256 15963c453b60d60f22087cadcfb23b59b25a0be9b5c5b33cc116bae899d15f7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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.8-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

  • Download URL: fue-0.1.8-cp310-cp310-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 999.1 kB
  • Tags: CPython 3.10, macOS 14.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fue-0.1.8-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4541de3a41231f5bc3f09cfa7372bcdea0b08e1997c46cc64675eee263299938
MD5 ba9c8c86589b6627a6500d915d04bd0e
BLAKE2b-256 4758ff4600c09d140946f6cfdf53564630b4fdab4a0e9540b9293d3451999231

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.8-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

0.1.11

26 files

0.1.10

26 files

0.1.9

26 files

This release

0.1.8 This release

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