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

Uploaded Python 3

fue-0.1.10-cp313-cp313-win_amd64.whl (149.9 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

fue-0.1.10-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.10-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.10-cp313-cp313-macosx_14_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

fue-0.1.10-cp312-cp312-win_amd64.whl (149.9 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

fue-0.1.10-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.10-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.10-cp312-cp312-macosx_14_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

fue-0.1.10-cp311-cp311-win_amd64.whl (149.9 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

fue-0.1.10-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.10-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.10-cp311-cp311-macosx_14_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

fue-0.1.10-cp310-cp310-win_amd64.whl (149.9 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

File metadata

  • Download URL: fue-0.1.10.tar.gz
  • Upload date:
  • Size: 241.7 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.10.tar.gz
Algorithm Hash digest
SHA256 eb86feedb5c192600904aae8fcf0ce70e2d910300d9a4fe0f7c3fe29694aeedb
MD5 e788c5e8c1f0eebf53eb3e2f5eaddaa2
BLAKE2b-256 fafab9fbc90b77aa01a6848453c84050b9e39341f99ae438d552f93cda0299f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.10-py3-none-any.whl
  • Upload date:
  • Size: 94.0 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.10-py3-none-any.whl
Algorithm Hash digest
SHA256 797c0e58daf14964ee5b572a1b308ce10b6e5162af503ece4bc5fda5a5806178
MD5 a5db84184224f9d4a5153716ba931d9a
BLAKE2b-256 be56009f22b23b145cafcedebaaf95e343e9143a00eb26d21eb061bf495ded7b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.10-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 149.9 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.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7115a640e03591c22a78f6a6c14934fd2b0a0ec1b7f361ef2113164eab5e4049
MD5 fedbcd13489c33789de2c4604b5c666b
BLAKE2b-256 f6dcc6802bf3509d8cc251e30fad8b248c11294a501f1607a1cd63a39940113c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8843fb4467e12cfcb770f6a078b44be7d4a76ab3b4aa7770f31972c87e4495b5
MD5 426c3f102ff6669517ce833d5715b660
BLAKE2b-256 8969c15b67fa747fbf2725e9c5ee2f05b7cc76b5dbcc4f265561735882bd63c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09e7298305e6ec0002c31aeb7c26da2f6602940cc152853887c756ceca731c96
MD5 f0fee7b834fc6437caa986597a117bff
BLAKE2b-256 41afac5cfd6ee0e244375c97e3cdf21154980b78e7c2b1df0f16e4988181508f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.10-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.10-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.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3dfb3cc2146d73e6f4a73024ba2a47faa0d59a7445a93c974d9b56272d9ad5ab
MD5 5986cbd91d9917bad2714a47d1c35f47
BLAKE2b-256 4dd7b3eb317c0e5f5da81a3ae3d89519fcdd37b9a6c2c22b81b99bf5e3443c32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 017f2140f4a2592f171bc3a1e4273a3604ee33a8d80b21686b467257e7190deb
MD5 9eb2fce194798d4b6e0e9a7b0e19cef9
BLAKE2b-256 613c12ac6b54ac17dfc132c3af4aed72551ba4af834b111ae993c742c292f991

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ccc269a94c6763071ed5afc214ccf4173bc71153d54a0307590a07dd11c6ef72
MD5 8f223a2672e471308bca3de5e5dda985
BLAKE2b-256 0d8a4237ec920907d663d40f01ab10d307e43ceea8fcdb583d3da59c879eaede

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 149.9 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.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 da14a3de71bfa145c5cba1a2826b93efb00b3ce4d3f7d58cd5828517869dc409
MD5 8ca097ae3b7e7ad515c254810e7a6f54
BLAKE2b-256 f9a4e3a2832d47cd80d1687042ccf4f95f5bd138577fea20a2cdcf27734a09c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61d2839cf17c30cafac67780c7ba941dab8271262aa9cc81721509dbd629c964
MD5 bdc45264085b49ec0a5e0998a3bfa00f
BLAKE2b-256 aa90c2f1de1efb8cda6c92843f5d4790f7e4861e4deedeaa52d3514b60e2df7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9364153d52b276038eb8612b3b06f8931dbade3dd6e9dc86ae702cd8455f3311
MD5 eaaa72423e2a1382f143a828213883b4
BLAKE2b-256 7633e4bb0815e9fd0fbdf52a2748d96abc8cb0f6c1d6444f99988ea5691d11a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.10-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.10-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.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5c7b9ffd27e5b82764eda707808586e85bb5591791203161aaddb3181d24926
MD5 4208200d035e9a01e765f2e243346ea6
BLAKE2b-256 e20036e2039050a46f590f91f945a2fa71a3edc68d872d55b8ac251c40924c6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f7a68312e58b6f9a902c5ac05e5986c22ad324551502bc3fc0edb4ea4a16a42
MD5 2e6d50a2ec10e5c84943a1c301e4e39f
BLAKE2b-256 f5bb19ed17786f9b665ff7a805ec98205a0c3986fb5126694ee488c87e62fd7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 71c8f2dda2f2ad81e1475958741b8a54053475182691060a9653a871295349e7
MD5 ac6af6c1c3e6267cd5bb7a0bbca77493
BLAKE2b-256 bdacb032aa53566bc43f584c60ae479824e5ae17999cd5216d181b49018bfe2f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 149.9 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.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e341880ee13d22011219affdca5bb3fe600bcb8e02a52c8f702eab6abd866068
MD5 fe465beba6d347ede0b1619898a4e88c
BLAKE2b-256 c45e0a773bb55f1e8424360a05ee95a1e6e6f040629a5b3d3db2f8670d35fe85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67eba3848e1f2915ead800fb084ac48d0da9cb0e4da8bc5fc904f9204020c0d6
MD5 7084ed49135805153029af0070e549b3
BLAKE2b-256 4b7ca5560d95cbd5f5e46ebb175d09d735c71bef57f9a2f2ce981924eb8cbb47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d46c49a57e54eaf5a0d505efb604128144c3645e75313fb13110546123d05866
MD5 fbdce26e8724f3015a394e22cdb69f1d
BLAKE2b-256 c64d1ce63c114f9b1459fb678e7f7fca96ae91a400980911c63817340717d492

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.10-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.10-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.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe2ba09c0815e2224feae8b892af038986d8e00f97a8533a6daf6535788c303d
MD5 43e3c948b49ceb9fabbcab0c57a556b0
BLAKE2b-256 6c434186955b7feb10749b5f1678b2d769e00356232f90e93a3929d50f06d03d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 378ab008966892a1e3873ab0be307b89f36c78744262f2b52e5989e64160a503
MD5 805f011516fe9f6be38a20af96e477b2
BLAKE2b-256 529446b464653172e1673bc0822e5df75883b07f04d0566be2b374681e10ab97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 484be611a996973de36363704ef5c44fccb93d8794f120bb007a825f8aebd6ad
MD5 e1f9260ce3a96e5e289bb6815b50dab0
BLAKE2b-256 7e0844d02ba51194612df12e8e123ad21aaf5e381372be1b9a95d4b5848e8a5d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: fue-0.1.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 149.9 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.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dc755230741c3654cbcc99301ead53a89e817c38d17f7e20bf2b3b8de4406560
MD5 73c6a9dffaa9f801af8d481038d8935f
BLAKE2b-256 39d1b908c2414de72a3ea7c250ac5f2d12086d98bf313686b66ccd77e791ec3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4b0bfb5cdb69a1da23d70d6b83608801f815ae9d6171b3e657212a0b2aa4074
MD5 1891d2e8bb377826402b2c74d2ce0b24
BLAKE2b-256 dc0564e4cb5c24faa48c4348a5244d8465626801ba0681021fe24d62d3c7ea6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1a97c409ef8b0fd13636ed0ae3c40d8354f78bda2f4ebf32fe06266547b51d9
MD5 9b380e0c21289b8fef5454c5a99ae58f
BLAKE2b-256 f611a9152f9ecec85a8577211d465c989db36e38e8af80382b588f8839262764

See more details on using hashes here.

Provenance

The following attestation bundles were made for fue-0.1.10-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.10-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.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c8d73329fc77bcfdc7cca56a786a43a5356ec5308a6e4eb676c55d3e3e4776b
MD5 611489f12ecd5489349e1325a75a278d
BLAKE2b-256 7c1d2008cb6b2ed08f860e55c955a0db2659a45151615f343edadf5fdcb34e77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce82c45070f52e17998a85022663dc4da3c49211711bcdf9180d87aee6dac571
MD5 35309b0617d407a78efbb32d4370ab4f
BLAKE2b-256 c89c834061a2c874a63db163a7a1573a7888aa113acc5e233f5f70611509be43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for fue-0.1.10-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d4247eb778f306084f7c8b5d5469ff083692bfd6117473cdff91f06194c46c31
MD5 beeabb9a231dbc3211fb4f7b680c802d
BLAKE2b-256 2a2d95805ef43f725dd83c0131afa5f21bc415bd1e6a098a952983d5b6a454c0

See more details on using hashes here.

Provenance

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

This release

0.1.10 This release

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