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

Uploaded Python 3

fue-0.1.7-cp313-cp313-win_amd64.whl (143.2 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fue-0.1.7-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.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

fue-0.1.7-cp313-cp313-macosx_14_0_arm64.whl (997.8 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

fue-0.1.7-cp312-cp312-win_amd64.whl (143.2 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fue-0.1.7-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.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

fue-0.1.7-cp312-cp312-macosx_14_0_arm64.whl (997.8 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

fue-0.1.7-cp311-cp311-win_amd64.whl (143.2 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fue-0.1.7-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.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

fue-0.1.7-cp311-cp311-macosx_14_0_arm64.whl (997.8 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

fue-0.1.7-cp310-cp310-win_amd64.whl (143.2 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

fue-0.1.7-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.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

fue-0.1.7-cp310-cp310-macosx_14_0_arm64.whl (997.8 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

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

File metadata

  • Download URL: fue-0.1.7.tar.gz
  • Upload date:
  • Size: 172.7 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.7.tar.gz
Algorithm Hash digest
SHA256 3410ace238b5118bd5242c39fd0a804eb0f3125e5113009a7efa3a6e62c9735a
MD5 d7dfa54439977dac15f21fb51ae7bc16
BLAKE2b-256 f560d868050c4f15a2087bc1c130dd5682cf84e7b2563359b76f2c9be0004c91

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 88.3 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.7-py3-none-any.whl
Algorithm Hash digest
SHA256 d10ba9b7735a967d6c4ea87c45b44a74cd8f3df97eb7aa2ed1cf95f5065e7f3f
MD5 512552dc012fbb00fe5db52c35984975
BLAKE2b-256 ee5ba9ebbf4c18aba09fff96344f6ef146aec971be37b75536775f0a823aff2f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 143.2 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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4ad9c44a7ba252e73e282f7b548e3f64aa4570e4f0e80ca2db695c1f3f5e05d1
MD5 e57ca7ea926be4ee5832848f4267cf1d
BLAKE2b-256 e322a73a85329d70d625c7a51e004009b4ee28b3fbbb67de5d988cd26d7a2d58

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.7-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.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c279629abbf5dbbafc7a8d9ac59dd2b1709fcc10f62217d24cd399289cc726b4
MD5 0bbda3972b1609f5eb5f621bec30702b
BLAKE2b-256 9b964d257c2470a573efd064d55758bc9bd079812a5804f78cd66beea733d846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af0c306558039ca5b23a2be864d9d68b936501078852c9c67e28a9cd5b397d80
MD5 c08258b20b7643ba2cde9fad47a55df9
BLAKE2b-256 bfea20e9e4e8a9a4f3bfe226fff625d59dab6a36921837a76227d3a666bc7dba

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.7-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.7-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.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5070b8a1fd145651dcc27d23e8b65728b0f014e80772dee3e62341b163c2bd21
MD5 c47da0c96f923c11d558e8fe34a4c96c
BLAKE2b-256 b43d7fd56d66ec4b66ae8e24047ab649fb3be2fb6fac1c794d01e875acc396de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94fff0dea9ec41ece87c25e7bb4802a9b9482bc5515bf5c4dd62505b0b85ce72
MD5 ac32ba237a175ce7fdda8febf58fdbf6
BLAKE2b-256 9e9d26a1a96690fe9bce38a1d253c961f10f807268432b5a3e00dc10eaeb3677

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.7-cp313-cp313-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 997.8 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.7-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1dfeb02bee79b09bf85fc8d487ea7aeb7afe1c8bc45761c651360eff1052cf1d
MD5 7da22009f4a17c3b08a26aaa708996ba
BLAKE2b-256 32b9dd18f6d958dee21e0809c36fd0b287a05d69e16ab21e1d65bd25eb893916

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 143.2 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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 50afc1e92c7274a41592ab4a3b3d0eace7adc02e437aeb25b66078b2b0d26435
MD5 a85f6b987183e28bb6f883a3d9ea5ba8
BLAKE2b-256 6f0cad5b89133f92bf4712261c37a00ae4effcfbf7c2aa035796a6e951aad1a9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.7-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.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb8c1e89a4a68314aef5a6111e86a164eeaad910ddfd4c8b657cbf37754e63a2
MD5 88079a2507abf014c10acb236a3c0031
BLAKE2b-256 3fdc6762f414c37bc21398ce780306a70e45e6d6ed447f5477840776b514f743

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a3c59e2d18d778c3447401177f81ca0ec6518d70550bd0f25a3121d1ab2cb50
MD5 5090a51678c09725cb17a18d948075c5
BLAKE2b-256 4f3757fba8d6ce93ebd1e2879df79929020d30e0198859a22a2a7807df3dcc41

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.7-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.7-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.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5faefc2090d9746c5b62fbc4a8f55811a0bd61a9c7fe888cbb193b9429f6e44b
MD5 106dfff0a90057c4534746c7550f35ff
BLAKE2b-256 9bbe0ae47836f5701a190bef01b9b43ba401d96954de5d5f6c225c67aedf9a32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ca4552d524e81245892fce16c7396a1152e80de31a2052fe47a29f3067d6583
MD5 af904badde721b7d2e6cdbc152be990e
BLAKE2b-256 37000d883f4b22f9a864671b026ec342cc34a8a1094ba57d2c2e28d4f8500194

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.7-cp312-cp312-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 997.8 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.7-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 868e19db2e070d509389549310cd6fa5903ada9fcd8e7d5d375454c68f0925f3
MD5 5cb2d77adfa034d70abbf7a3561ae69a
BLAKE2b-256 03c0f72e4968655e0266855dccf0262966d29f5e0504f39b2cea24712bdf55f6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 143.2 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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9e4dbcfcf342d920c9410830fbc722c0ef61d7982ac59590bde99c9788c690bc
MD5 36d13942927fe4275efe2b6518f97a11
BLAKE2b-256 8489d848a0c15204fb65f83e265240b758c4f1726bbd9ff6b6e4771baef25ab8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.7-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.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64616cbbb1a9a70516a5af00c32e57460f8542021f517458498faf267c141671
MD5 dad9befdf46d9901a98dc685cb3f2cb7
BLAKE2b-256 880a4326eb13a096cb7a6dc306e1f2d9cf1722f70f86a7a269552bd2e8c14f18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8141035db84674eee137c079d09425988a3f2961813cdddf9e7145c6c2e6fb5d
MD5 e6a1852991b6eaf9729975b1079b42c3
BLAKE2b-256 d484ac795e41ca0313e7728df41875906457feeb688e2317f6900ca1897530fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.7-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.7-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.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0b41d00933d8590a014ac8d6996348911e1542bc076f637be388afa7b135e1dd
MD5 570e929f824f2cec6a0dc8f59064f1d5
BLAKE2b-256 4b41d024a4be8dbe5a59c60809af6d5382440216b1d283d10fa5aa24fd8cec9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c83a9bca794af3297d215e09c7a798fc5309d3d266724073f207322bd7df1739
MD5 01324000ceca953f3caa03b49e99fb42
BLAKE2b-256 e8ee9d71e77eb0b0dc3b61322d5e8ea5aebeb4b11c9c2f7802f4bf4ab241bb42

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.7-cp311-cp311-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 997.8 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.7-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 70f283eb2a8963c2ded2022e23142900a6b3702e57019942849a8bd6e0bf281e
MD5 a8ca7d92ef554d6e326c0410af3e8816
BLAKE2b-256 5e9ec6d0d5b7b6b6dcaab67596ea7ca91f3461cf31bb5c19035d679583b04a39

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 143.2 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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4b3e65940efbc0af3bb1a98b2f8c3c622317667bd2ad7b95e39814720f3d9a72
MD5 69bf26d79e96fe3e14dc64fbc8b9a2a9
BLAKE2b-256 bb6936f6b0e2d5974f7be62b8db7f7ae2db16a0802db9c685e4b2fef7395c6a0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.7-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.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d3aadb8ba20a6559dffb241ace2b68b4a4abd423e55d580da2a9c40b44f6f46
MD5 f12b737cddf8ce8f4fd9018cc628791d
BLAKE2b-256 073083e894334cc847741202273af4ac020ed8c88fcd978f917fe27df78bee24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f556ae64823dc8d97867fa6943345addf42c45a8e9af3af3c8433b5f183dada
MD5 f6334668d05c18e178ad0bca2c973052
BLAKE2b-256 5abc5569aa379eaa6d7180153956c931eced464a7754d12b1e223efff2523f7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.7-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.7-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.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c680492b2d09874329ed7b3d4de496bebf245fd8df8a58a3019c6aa9b6b5333
MD5 acb1c6c63af69c62ef87336855de1fb4
BLAKE2b-256 72ec006d041a3c03bbc7a5e42162198118c12eb3209fed4fee5f7d5e73c847b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e515ac0b2546ed2e622eb910e254e75b93860e598d8a5deeb404364a4c6569c5
MD5 b8fb26de03a4d49dcc53f8e624c7d474
BLAKE2b-256 128ab5eae47ca38a366c399130a81907d395b8ae618fcce7193a03c3f9f7c0e4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.7-cp310-cp310-macosx_14_0_arm64.whl
  • Upload date:
  • Size: 997.8 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.7-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c4132a76caf68b1f50ec2aa46df53fac733d4ba1f3c0f30aa8f2978ce9379847
MD5 94e9bbee0650549efe575898fc27a4b7
BLAKE2b-256 274d7976dadf329b7666b78432767f582a425ae12678a4d1261f55b9016a17b3

See more details on using hashes here.

Provenance

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

0.1.8

26 files

This release

0.1.7 This release

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