Skip to main content

FCE decoder/encoder

Project description

fcecodec - Python extension module

This file describes installation and usage of fcecodec as Python extension module.

Installation

Requires Python 3.10+

python -m pip install fcecodec

Though numpy is not required, it is recommended.

python -m pip install --upgrade numpy

Examples

See
https://github.com/bfut/fcecodec/blob/main/scripts
and
https://github.com/bfut/fcecodec/blob/main/scripts/bfut_mywrappers.py

Documentation

Help on module fcecodec:

NAME
    fcecodec - FCE decoder/encoder

CLASSES
    pybind11_builtins.pybind11_object(builtins.object)
        Mesh

    class Mesh(pybind11_builtins.pybind11_object)
     |  Method resolution order:
     |      Mesh
     |      pybind11_builtins.pybind11_object
     |      builtins.object
     |
     |  Methods defined here:
     |
     |  IoDecode(...)
     |      IoDecode(self: fcecodec.Mesh, arg0: str) -> None
     |
     |  IoEncode_Fce3(...)
     |      IoEncode_Fce3(self: fcecodec.Mesh, center_parts: bool = True) -> bytes
     |
     |  IoEncode_Fce4(...)
     |      IoEncode_Fce4(self: fcecodec.Mesh, center_parts: bool = True) -> bytes
     |
     |  IoEncode_Fce4M(...)
     |      IoEncode_Fce4M(self: fcecodec.Mesh, center_parts: bool = True) -> bytes
     |
     |  IoExportObj(...)
     |      IoExportObj(self: fcecodec.Mesh, objpath: str, mtlpath: str, texname: str, print_damage: int = 0, print_dummies: int = 0, use_part_positions: int = 1, print_part_positions: int = 0, filter_triagflags_0xfff: int = 1) -> None
     |
     |  IoGeomDataToNewPart(...)
     |      IoGeomDataToNewPart(self: fcecodec.Mesh, vert_idxs: numpy.ndarray[numpy.int32], vert_texcoords: numpy.ndarray[numpy.float32], vert_pos: numpy.ndarray[numpy.float32], normals: numpy.ndarray[numpy.float32]) -> int
     |
     |      vert_idxs: 012..., vert_texcoords: uuuvvv... , vert_pos: xyzxyzxyz..., normals: xyzxyzxyz...
     |
     |  MGetColors(...)
     |      MGetColors(self: fcecodec.Mesh) -> Buffer
     |
     |  MGetDummyNames(...)
     |      MGetDummyNames(self: fcecodec.Mesh) -> list[str]
     |
     |  MGetDummyPos(...)
     |      MGetDummyPos(self: fcecodec.Mesh) -> Buffer
     |
     |  MSetColors(...)
     |      MSetColors(self: fcecodec.Mesh, colors: numpy.ndarray[numpy.uint8]) -> None
     |
     |      Expects shape=(N, 4, 4)
     |
     |  MSetDummyNames(...)
     |      MSetDummyNames(self: fcecodec.Mesh, names: list[str]) -> None
     |
     |  MSetDummyPos(...)
     |      MSetDummyPos(self: fcecodec.Mesh, positions: numpy.ndarray[numpy.float32]) -> None
     |
     |      Expects shape (N*3, ) for N dummies
     |
     |  MValid(...)
     |      MValid(self: fcecodec.Mesh) -> bool
     |
     |  OpAddHelperPart(...)
     |      OpAddHelperPart(self: fcecodec.Mesh, name: str, new_center: numpy.ndarray[numpy.float32] = [0.0, 0.0, 0.0]) -> int
     |
     |      Add diamond-shaped part at coordinate origin or at optionally given position.
     |
     |  OpCenterPart(...)
     |      OpCenterPart(self: fcecodec.Mesh, pid: int) -> bool
     |
     |      Center specified part to local centroid. Does not move part w.r.t. to global coordinates.
     |
     |  OpCopyPart(...)
     |      OpCopyPart(self: fcecodec.Mesh, pid_src: int) -> int
     |
     |      Copy specified part. Returns new part index.
     |
     |  OpDelUnrefdVerts(...)
     |      OpDelUnrefdVerts(self: fcecodec.Mesh) -> bool
     |
     |      Delete all vertices that are not referenced by any triangle. This is a very expensive operation. Unreferenced vertices occur after triangles are deleted or they are otherwise present in data.
     |
     |  OpDeletePart(...)
     |      OpDeletePart(self: fcecodec.Mesh, pid: int) -> bool
     |
     |  OpDeletePartTriags(...)
     |      OpDeletePartTriags(self: fcecodec.Mesh, pid: int, idxs: list[int]) -> bool
     |
     |  OpInsertPart(...)
     |      OpInsertPart(self: fcecodec.Mesh, mesh_src: fcecodec.Mesh, pid_src: int) -> int
     |
     |      Insert (copy) specified part from mesh_src. Returns new part index.
     |
     |  OpMergeParts(...)
     |      OpMergeParts(self: fcecodec.Mesh, pid1: int, pid2: int) -> int
     |
     |      Returns new part index.
     |
     |  OpMovePart(...)
     |      OpMovePart(self: fcecodec.Mesh, pid: int) -> int
     |
     |      Move up specified part towards order 0. Returns new part index.
     |
     |  OpSetPartCenter(...)
     |      OpSetPartCenter(self: fcecodec.Mesh, pid: int, new_center: numpy.ndarray[numpy.float32]) -> bool
     |
     |      Center specified part to given position. Does not move part w.r.t. to global coordinates.
     |
     |  PGetName(...)
     |      PGetName(self: fcecodec.Mesh, pid: int) -> str
     |
     |  PGetPos(...)
     |      PGetPos(self: fcecodec.Mesh, pid: int) -> Buffer
     |
     |  PGetTriagsFlags(...)
     |      PGetTriagsFlags(self: fcecodec.Mesh, pid: int) -> Buffer
     |
     |  PGetTriagsTexcoords(...)
     |      PGetTriagsTexcoords(self: fcecodec.Mesh, pid: int) -> Buffer
     |
     |      uuuvvv..., Returns (N*6, ) numpy array for N triangles.
     |
     |  PGetTriagsTexpages(...)
     |      PGetTriagsTexpages(self: fcecodec.Mesh, pid: int) -> Buffer
     |
     |  PGetTriagsVidx(...)
     |      PGetTriagsVidx(self: fcecodec.Mesh, pid: int) -> Buffer
     |
     |      Returns (N*3, ) numpy array of global vert indexes for N triangles.
     |
     |  PNumTriags(...)
     |      PNumTriags(self: fcecodec.Mesh, pid: int) -> int
     |
     |  PNumVerts(...)
     |      PNumVerts(self: fcecodec.Mesh, pid: int) -> int
     |
     |  PSetName(...)
     |      PSetName(self: fcecodec.Mesh, pid: int, name: str) -> None
     |
     |  PSetPos(...)
     |      PSetPos(self: fcecodec.Mesh, pid: int, pos: numpy.ndarray[numpy.float32]) -> None
     |
     |  PSetTriagsFlags(...)
     |      PSetTriagsFlags(self: fcecodec.Mesh, pid: int, arr: numpy.ndarray[numpy.int32]) -> None
     |
     |      Expects (N, ) numpy array for N triangles
     |
     |  PSetTriagsTexcoords(...)
     |      PSetTriagsTexcoords(self: fcecodec.Mesh, pid: int, arr: numpy.ndarray[numpy.float32]) -> None
     |
     |      arr: uuuvvv..., Expects (N*6, ) numpy array for N triangles.
     |
     |  PSetTriagsTexpages(...)
     |      PSetTriagsTexpages(self: fcecodec.Mesh, pid: int, arr: numpy.ndarray[numpy.int32]) -> None
     |
     |      Expects (N, ) numpy array for N triangles
     |
     |  PrintInfo(...)
     |      PrintInfo(self: fcecodec.Mesh) -> None
     |
     |  PrintParts(...)
     |      PrintParts(self: fcecodec.Mesh) -> None
     |
     |  PrintTriags(...)
     |      PrintTriags(self: fcecodec.Mesh) -> None
     |
     |  PrintVerts(...)
     |      PrintVerts(self: fcecodec.Mesh) -> None
     |
     |  __buffer__(self, flags, /)
     |      Return a buffer object that exposes the underlying memory of the object.
     |
     |  __init__(...)
     |      __init__(self: fcecodec.Mesh) -> None
     |
     |  __release_buffer__(self, buffer, /)
     |      Release the buffer object that exposes the underlying memory of the object.
     |
     |  ----------------------------------------------------------------------
     |  Readonly properties defined here:
     |
     |  MNumParts
     |
     |  MNumTriags
     |
     |  MNumVerts
     |
     |  MVertsGetMap_idx2order
     |      Maps from global vert indexes (contained in triangles) to global vertex order.
     |
     |  ----------------------------------------------------------------------
     |  Data descriptors defined here:
     |
     |  MNumArts
     |      Usually equal to 1. Larger values enable multi-texture access for cop#.fce (police officer models), road objects, etc. Also used in the FCE4M format.
     |
     |  MUnknown3
     |      FCE4M only. Unknown purpose.
     |
     |  MVertsAnimation
     |      Returns (N, ) numpy array for N vertices.
     |
     |  MVertsDamgdNorms
     |      Returns (N*3, ) numpy array for N vertices.
     |
     |  MVertsDamgdPos
     |      Local vertice positions. Returns (N*3, ) numpy array for N vertices.
     |
     |  MVertsNorms
     |      Returns (N*3, ) numpy array for N vertices.
     |
     |  MVertsPos
     |      Local vertice positions. Returns (N*3, ) numpy array for N vertices.
     |
     |  ----------------------------------------------------------------------
     |  Static methods inherited from pybind11_builtins.pybind11_object:
     |
     |  __new__(*args, **kwargs) class method of pybind11_builtins.pybind11_object
     |      Create and return a new object.  See help(type) for accurate signature.

FUNCTIONS
    GetFceVersion(...) method of builtins.PyCapsule instance
        GetFceVersion(buf: str) -> int

        Returns 3 (FCE3), 4 (FCE4), 5 (FCE4M), negative (invalid)

    PrintFceInfo(...) method of builtins.PyCapsule instance
        PrintFceInfo(buf: str) -> None

    ValidateFce(...) method of builtins.PyCapsule instance
        ValidateFce(buf: str) -> int

        Returns 1 for valid FCE data, 0 otherwise.

VERSION
    1.14

Project details


Download files

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

Source Distribution

fcecodec-1.14.tar.gz (24.8 kB view details)

Uploaded Source

Built Distributions

fcecodec-1.14-cp313-cp313t-win_amd64.whl (146.3 kB view details)

Uploaded CPython 3.13t Windows x86-64

fcecodec-1.14-cp313-cp313t-win32.whl (126.6 kB view details)

Uploaded CPython 3.13t Windows x86

fcecodec-1.14-cp313-cp313t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ x86-64

fcecodec-1.14-cp313-cp313t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ i686

fcecodec-1.14-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (201.7 kB view details)

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

fcecodec-1.14-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (211.1 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ i686

fcecodec-1.14-cp313-cp313t-macosx_11_0_arm64.whl (157.7 kB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

fcecodec-1.14-cp313-cp313t-macosx_10_13_x86_64.whl (164.7 kB view details)

Uploaded CPython 3.13t macOS 10.13+ x86-64

fcecodec-1.14-cp313-cp313-win_amd64.whl (135.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

fcecodec-1.14-cp313-cp313-win32.whl (119.2 kB view details)

Uploaded CPython 3.13 Windows x86

fcecodec-1.14-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

fcecodec-1.14-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

fcecodec-1.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (199.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

fcecodec-1.14-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (209.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

fcecodec-1.14-cp313-cp313-macosx_11_0_arm64.whl (149.8 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

fcecodec-1.14-cp313-cp313-macosx_10_13_x86_64.whl (157.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

fcecodec-1.14-cp312-cp312-win_amd64.whl (135.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

fcecodec-1.14-cp312-cp312-win32.whl (119.2 kB view details)

Uploaded CPython 3.12 Windows x86

fcecodec-1.14-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

fcecodec-1.14-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

fcecodec-1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (200.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

fcecodec-1.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (209.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

fcecodec-1.14-cp312-cp312-macosx_11_0_arm64.whl (149.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

fcecodec-1.14-cp312-cp312-macosx_10_13_x86_64.whl (157.0 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

fcecodec-1.14-cp311-cp311-win_amd64.whl (135.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

fcecodec-1.14-cp311-cp311-win32.whl (118.9 kB view details)

Uploaded CPython 3.11 Windows x86

fcecodec-1.14-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

fcecodec-1.14-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

fcecodec-1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (201.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

fcecodec-1.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (210.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

fcecodec-1.14-cp311-cp311-macosx_11_0_arm64.whl (149.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

fcecodec-1.14-cp311-cp311-macosx_10_9_x86_64.whl (155.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

fcecodec-1.14-cp310-cp310-win_amd64.whl (134.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

fcecodec-1.14-cp310-cp310-win32.whl (118.1 kB view details)

Uploaded CPython 3.10 Windows x86

fcecodec-1.14-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

fcecodec-1.14-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

fcecodec-1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (200.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fcecodec-1.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (209.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

fcecodec-1.14-cp310-cp310-macosx_11_0_arm64.whl (148.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

fcecodec-1.14-cp310-cp310-macosx_10_9_x86_64.whl (154.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

File details

Details for the file fcecodec-1.14.tar.gz.

File metadata

  • Download URL: fcecodec-1.14.tar.gz
  • Upload date:
  • Size: 24.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fcecodec-1.14.tar.gz
Algorithm Hash digest
SHA256 5d1e67aacba48d81314027a3ceebc1b23f7bb20cacd928a36fcc59651c72dd77
MD5 9c63d5700ce64a8a64ed550903e5e725
BLAKE2b-256 f198bf9210c87aed34dc9d52a90aadc37b6b495d974c8c7382ae7ba16c18e280

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14.tar.gz:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: fcecodec-1.14-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 146.3 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fcecodec-1.14-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 236f270339fff3f859136ee06bfaab667533a884305c6504871b1772875c46d8
MD5 f43c01f74faa3e907706ab08cd5f8eb6
BLAKE2b-256 6176747fcb47b44b0601fb02434a0d3e25c2b0efa2843e50f2b1f2106ed20fa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313t-win_amd64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313t-win32.whl.

File metadata

  • Download URL: fcecodec-1.14-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 126.6 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fcecodec-1.14-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 b78ae34a4d98b48c7657b4c0950bcaff3ad471d9a71f788f702f17f971a4d618
MD5 6382407593d7607c04fd12d2f6cdbe55
BLAKE2b-256 092337078014a53a16e4803ca8ec6211d30f27aaf01cdbdb9e2ea8ad7c135914

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313t-win32.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1c87a731295bc8798a061bdaffcbadf24bca077a3ec6b0d59e17c7c24e5b7e1
MD5 1adc63a760cc3b12c8fb96256eb45ee8
BLAKE2b-256 7f2b3ed4eb4e92b2a3ce617f73a3a189202152d7d9633270e2be920dc4e6e477

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 33bcd1c35318f1c9bcf31d93fd825a7670e2c00f99825cf6e8051d3d476d0d0b
MD5 37d0c184a4f3e2e11b0a5b1c97569fb1
BLAKE2b-256 e9897328a497aa1eadd72490814134c063878fc566ed072c0c9cf249c943d638

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf352a561c36507395cdadd6127f7ffaf3630e975af8c6be25606df6f1b3a243
MD5 25de00a75262abd4bb2635a175bea9b2
BLAKE2b-256 199fea1528b05803a208026d79006cf2d033ffd29cc776ffe8fa7da597dd1325

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23a8e57665e062ca2e066c10c7afd6fe2f015789a39c016a57f7e3eff7472740
MD5 80c6c82fb844a9ecd096e8cd53f4df23
BLAKE2b-256 7f7744977c7266a4e15e5492c6e4aeee3e993b6896d834b7a643e525d3b5a9e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 724e4ec66033dd697759e518ad10678cf1ccc330831198c4a613659f5ef94bd8
MD5 294e84341e5ac21292adc88b2b3c280c
BLAKE2b-256 5d662324a7e5770c47d1b727588760eb01315cb82593e33f3ddc5f8a2b255462

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7158abb0ccde1e8df5a546229bbbd3551c34d6a751249126e7e1889da68f819d
MD5 ba9cb7343230cc3ecd4ede638b2000d2
BLAKE2b-256 b225d0780d8a9fab6c46efe55f330bdfb2d2aa086b6a7191e283ae32de38222a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fcecodec-1.14-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 135.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fcecodec-1.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 efbd85173fd0ed60ea677bf9a5a742381839b6bb0b253b290090f19bfc046666
MD5 db472bc34daa889fd4c009dc9b1ce09a
BLAKE2b-256 d665e550286dca94a196447107d9dd5ac885290cd1674aad793a18043db83b0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313-win_amd64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313-win32.whl.

File metadata

  • Download URL: fcecodec-1.14-cp313-cp313-win32.whl
  • Upload date:
  • Size: 119.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fcecodec-1.14-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 36599793a71cf674e897f1b7418ec38af75561b57867ad8a9c4285a7c004129e
MD5 2185fb49c301a0f4b1805af3cb53e032
BLAKE2b-256 7cad0f074c080e36096bd1531adc33006492d010c55c87fe990b47b20e9f4279

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313-win32.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3263d9d90cb791e4cd20235443b75f44edb67e0aa1b167b1331ce251b95304af
MD5 3244781fb6d288fbf1e7aa7023ec154f
BLAKE2b-256 580f29b1e3227910f45b7f81431055d8c953cf9dc4dee293f92d0a6969da5ad9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d092593d8ffdb1796f20f862e156c64ae15021e648d0e5e24a2c0914bff4f18
MD5 9624e8cf5b55d99384e9cc7480bc6d73
BLAKE2b-256 ae9e6b63ec6057c16a504889223d93254c4488ab567b021d2891f1d802c8b44e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e04778c29bde62c23f74d8548852ce707f94433fadff7c7a6f413b957c33bd40
MD5 163d46a340548a061b8ab47d7e004f20
BLAKE2b-256 f261738a14ebf22fd99e55328494ace22fa71642985cadd4178e8d3e3b552184

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ecb871d9302269facfd8a0007a07ed945301371443b4134562380fb2795cae4
MD5 86615f7afbff78072f258829a3dd509f
BLAKE2b-256 e47dad3bb8858cc1b3a658257848e4befff47ac81ff7e1706ed5478a4f19f0fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c70a865b557cd1f6e1902013cf49299e13b2e559d7bbf7bd1ef1125bfa1256a5
MD5 45bf2a8846ff6da5b1e379b75908597a
BLAKE2b-256 9167761638221b6507e8c85190031897fe59bf8ac58d347cd6d87cb340812943

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2975c6cc164d20b20532be0cffd0c4e2eb9106691f13f721e4fbb29ea0e204b4
MD5 187bae0216779b8dc404cdd900f05512
BLAKE2b-256 268510349ee92eaf4482f0f0d751c871bbe8082944c67e3069e000cb31cd23ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fcecodec-1.14-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 135.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fcecodec-1.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2c6ad5d7dde15e50839c0897044a436ada8e92274be1c3bb7c225d6ac93d6819
MD5 24d0e4a8f6f50797887a5c60155713b1
BLAKE2b-256 49d11805d7dc351833f67c05ea019c7352eb2ddc375664557a3a23edf3f65313

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp312-cp312-win_amd64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp312-cp312-win32.whl.

File metadata

  • Download URL: fcecodec-1.14-cp312-cp312-win32.whl
  • Upload date:
  • Size: 119.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fcecodec-1.14-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bfc5997f4d6294e1996b7ece0acd302c0646d92d0135e790c8b7c8c1cb8f4846
MD5 2e611dca48cd943d2bbdaf7af5480132
BLAKE2b-256 4b80e5e863beb877a5e5b98f53c63d98851ec1feb84bae19d6e519bba7fbcc12

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp312-cp312-win32.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 231fa789742e439854127caa0ea3d82945f605454a990776dc539bb06ae96209
MD5 6cd0bbefb87b9c44e99455083d9f269d
BLAKE2b-256 9c76ae926d6b6c05c17f23e93f238223b1417657021778ecdf49329e7938c7ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7db7c4b295d6d4fb836e687daba8befd5fd067546acfb39a62844331e250ee2
MD5 a31587b984dec2c8c6425d6784a27fe3
BLAKE2b-256 db9d6e76ce9c606f7e60a99f2b8335b1f4b49d5c2c309dfb3a4c3481ec2c2f23

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9de7c2843ed02e0f15130383c108f0e56369247156021c4f887dc8379e4c184
MD5 0db037f9ee6ec58e7165ae4e9fbf8a06
BLAKE2b-256 3a97687f8e6438d54f4ac49120868a01fd0378348ac6fbe81a6bc4d290949dc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 783ca65641ec855af50b5d3b870e4c46091264329af1c6056f539a458775aef5
MD5 f721d465ca41ee24fb84160cec94705e
BLAKE2b-256 1b027935b05112c9cc23f9cf1e3e5e57f54aa307ca48db478c35fbc639c06827

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83e1258e620c677fbd33ccb213e6c3e791cb908a3b57784b47e397537367176b
MD5 c57c0cf6c6f61e383a7096933cd0ebdb
BLAKE2b-256 757f278993bb8c2719e07ff54decfa5eac18a575a05e35fdeb110f99a52cc1e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3e8cbc996c08e3e0343bb98e90afbc76ef5d085b09f775c1ca98d0551f66c46f
MD5 1ffb92445a6ecbcf3c1b6bc3cf5d8e53
BLAKE2b-256 ff6bbe2e9d26902bccc829010049933e68091de3421b19dd7a363e74a36b6fe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fcecodec-1.14-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 135.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fcecodec-1.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5d7635a3256d5335efb747f2594e9e8420c36b56ca77affa3a9dfcc46509261d
MD5 875a2467f1c1f49f15b227b4907034b5
BLAKE2b-256 6bf305560abf85d6092f58898d22003752b0af41ca1ffa7bf18dac1146283eae

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp311-cp311-win_amd64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp311-cp311-win32.whl.

File metadata

  • Download URL: fcecodec-1.14-cp311-cp311-win32.whl
  • Upload date:
  • Size: 118.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fcecodec-1.14-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bf4aa2ed8758517c4304b1fdfa923b01ea9b6e292ea29b36d20662bf54fbc8a9
MD5 d86748c61d5e990d7c203077a10e8680
BLAKE2b-256 8b24febf18a9e4d0902bb4bbb0520ce1ff618e9d4cc2fa3357b69befbbad595a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp311-cp311-win32.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6318997057850e2f867de21fb7816680ea2d098fd65a4f237ee9ac8257d102a
MD5 b2af07b6a6feb8e026bcca33b1bb30b0
BLAKE2b-256 580addafc62a6216f2c10af015a09e675d7ac63fd8d434feedbaa3256fac43f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d73d9602be6d67e7bcbb9bb7680388b04489bdb20534997bf7c2cfa36de9faf
MD5 15a612013f0caaafc616e57c62028beb
BLAKE2b-256 44bca670eae98242b8a3eb7367ca64671b9f56b0a747690286d423fe8b4c8f4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa6133fc0d2276dfedacf4ffa8b60fdc24fb19c32df5bc4449cebec3a8010d47
MD5 6fefe7a2bf42443b0e1442b987bb90b7
BLAKE2b-256 8caac72d6ce33065e3f44e8d3c69725414919da400cf4e62b194af55aa99b74e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f2b00e9b7a2cb26e4f04d33da7bac0fe3b06817fbb78b165af48a3340cf7dc1
MD5 140c3939af493d4fa2f1a6343a0afb30
BLAKE2b-256 6eda064d18e04d1faabfd3ce397df1411ec1f6075007cbb85df94b9e7e472f6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5690bd612457c0faee8b4bbc9ed05793dd61a033f88899c85141462af5d4d7b9
MD5 b39f4539ecfb96c4aa59bb8343252abd
BLAKE2b-256 b0756e3bca16306a6d8cba093d19d7c54757eecb1ce195c6eba8d38791c99e1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9726984825766d35d7d82dd5aabe2157c72358a99b41492b9f88054323576b0
MD5 b701df98101ecb605a997c33b44cbcc8
BLAKE2b-256 8dfa9de88176221468b2c0b070b906b9a8cce0871edc5323c93c4a5be2fb96e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fcecodec-1.14-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 134.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fcecodec-1.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cfe7eb57d04002115f9fa821423130003368e3d650f64daa56cff57251b3377e
MD5 512f0eea4cca736554561f333ed98bb9
BLAKE2b-256 0082e03d3398fc241ef68c54ab8f12bfc2550753c497e95bdb1b3bb1f73276fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp310-cp310-win_amd64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp310-cp310-win32.whl.

File metadata

  • Download URL: fcecodec-1.14-cp310-cp310-win32.whl
  • Upload date:
  • Size: 118.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for fcecodec-1.14-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9fa0372b1c3ef042fcc9ff924258aabc738e7c0dff00c103aa8cb2134f546b3b
MD5 d8d3f8c094a41c952fdf6a09b25fdc20
BLAKE2b-256 08159e59db1e9dba73b06fe5bc4269fd9dc7a89687324541356d60d9134666cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp310-cp310-win32.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a154ad2cd56d2054c10fc434694c959bd07dea8b4178845d16cc7d5091f41b3c
MD5 4e08bcc28dc78f56b6ca23e8a3f79434
BLAKE2b-256 bcf64875d1f5225f74ecd7b491b4deaf6bec2257fc593cbc59a6c9249eb5d4da

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fefd71d5cbafeeea17531a9170692f454f0cd923f4d35977e4aeb729b9548d85
MD5 200614bd098e3efef6185becfd26be26
BLAKE2b-256 339160ce92da61154a97c647302443922c4049756fcd7dd8fa5d3b4f195283de

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7c17002f5bee8f3c96780271de63f5a27c3623c4403e6674885913d5de8466b
MD5 4e92f076d0abc5409110262951298f1f
BLAKE2b-256 e0b2ad3cef153dfcbaf096b8757b88746b4013206cd032114f02445e7db01371

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d141df45de5750ba70e3d09fb9899f44754d28e217f7c31a479706131a2d632e
MD5 e22b8b7121429dbad64df95c5f826c05
BLAKE2b-256 0ae2d5ed026435c44c633d30ac262d7ca3c39459ad2089c0215353ae69a26442

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4db8f3d9a851d6fe3d10d2efa533e0066a0878fe92bb6818a3665d82f3da2a5c
MD5 853e114ebfcf5987fe0bba5973f52071
BLAKE2b-256 1ff4ad515fd2ce23f20cc69437c9e9dd1b24d1387d0a043676e6b30871d3bfcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

File details

Details for the file fcecodec-1.14-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fcecodec-1.14-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c17f3b658402405ed1815a79398c59184927c2a31a0d195a196d87a5c53af341
MD5 1965d9c4f4fcb99e3b1390f519f90562
BLAKE2b-256 5f4ad763a0113bde6829b57e66f57eccdd0fdd761fec275de13d5cdd3f333a82

See more details on using hashes here.

Provenance

The following attestation bundles were made for fcecodec-1.14-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheel.yml on bfut/fcecodec

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page