Skip to main content

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

Release files for fcecodec 1.14

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for fcecodec 1.14
File Size Uploaded
fcecodec-1.14.tar.gz 24.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for fcecodec 1.14
File
fcecodec-1.14-cp313-cp313t-win_amd64.whl CPython 3.13 CPython 3.13 free-threading Windows x86-64 Details
fcecodec-1.14-cp313-cp313t-win32.whl CPython 3.13 CPython 3.13 free-threading Windows x86-32 Details
fcecodec-1.14-cp313-cp313t-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64 Details
fcecodec-1.14-cp313-cp313t-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32 Details
fcecodec-1.14-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-64 Details
fcecodec-1.14-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-32 Details
fcecodec-1.14-cp313-cp313t-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 free-threading macOS 11.0+ ARM64 Details
fcecodec-1.14-cp313-cp313t-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 free-threading macOS 10.13+ x86-64 Details
fcecodec-1.14-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
fcecodec-1.14-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
fcecodec-1.14-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
fcecodec-1.14-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
fcecodec-1.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
fcecodec-1.14-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32 Details
fcecodec-1.14-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
fcecodec-1.14-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
fcecodec-1.14-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
fcecodec-1.14-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
fcecodec-1.14-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
fcecodec-1.14-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
fcecodec-1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
fcecodec-1.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
fcecodec-1.14-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
fcecodec-1.14-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
fcecodec-1.14-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
fcecodec-1.14-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
fcecodec-1.14-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
fcecodec-1.14-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
fcecodec-1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
fcecodec-1.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
fcecodec-1.14-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
fcecodec-1.14-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
fcecodec-1.14-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
fcecodec-1.14-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
fcecodec-1.14-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
fcecodec-1.14-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
fcecodec-1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
fcecodec-1.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
fcecodec-1.14-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
fcecodec-1.14-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details

Total release size: 17.1 MB

Release files / fcecodec-1.14.tar.gz

Download URL fcecodec-1.14.tar.gz
Size 24.8 kB
Tags Source
SHA-256 checksum
How to use checksums
5d1e67aacba48d81314027a3ceebc1b23f7bb20cacd928a36fcc59651c72dd77
BLAKE2b-256 checksum
How to use checksums
f198bf9210c87aed34dc9d52a90aadc37b6b495d974c8c7382ae7ba16c18e280
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313t-win_amd64.whl

Download URL fcecodec-1.14-cp313-cp313t-win_amd64.whl
Size 146.3 kB
Tags CPython 3.13 CPython 3.13 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
236f270339fff3f859136ee06bfaab667533a884305c6504871b1772875c46d8
BLAKE2b-256 checksum
How to use checksums
6176747fcb47b44b0601fb02434a0d3e25c2b0efa2843e50f2b1f2106ed20fa5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313t-win32.whl

Download URL fcecodec-1.14-cp313-cp313t-win32.whl
Size 126.6 kB
Tags CPython 3.13 CPython 3.13 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
b78ae34a4d98b48c7657b4c0950bcaff3ad471d9a71f788f702f17f971a4d618
BLAKE2b-256 checksum
How to use checksums
092337078014a53a16e4803ca8ec6211d30f27aaf01cdbdb9e2ea8ad7c135914
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313t-musllinux_1_2_x86_64.whl

Download URL fcecodec-1.14-cp313-cp313t-musllinux_1_2_x86_64.whl
Size 1.2 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f1c87a731295bc8798a061bdaffcbadf24bca077a3ec6b0d59e17c7c24e5b7e1
BLAKE2b-256 checksum
How to use checksums
7f2b3ed4eb4e92b2a3ce617f73a3a189202152d7d9633270e2be920dc4e6e477
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313t-musllinux_1_2_i686.whl

Download URL fcecodec-1.14-cp313-cp313t-musllinux_1_2_i686.whl
Size 1.3 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
33bcd1c35318f1c9bcf31d93fd825a7670e2c00f99825cf6e8051d3d476d0d0b
BLAKE2b-256 checksum
How to use checksums
e9897328a497aa1eadd72490814134c063878fc566ed072c0c9cf249c943d638
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fcecodec-1.14-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 201.7 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
cf352a561c36507395cdadd6127f7ffaf3630e975af8c6be25606df6f1b3a243
BLAKE2b-256 checksum
How to use checksums
199fea1528b05803a208026d79006cf2d033ffd29cc776ffe8fa7da597dd1325
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fcecodec-1.14-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Size 211.1 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
23a8e57665e062ca2e066c10c7afd6fe2f015789a39c016a57f7e3eff7472740
BLAKE2b-256 checksum
How to use checksums
7f7744977c7266a4e15e5492c6e4aeee3e993b6896d834b7a643e525d3b5a9e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313t-macosx_11_0_arm64.whl

Download URL fcecodec-1.14-cp313-cp313t-macosx_11_0_arm64.whl
Size 157.7 kB
Tags CPython 3.13 CPython 3.13 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
724e4ec66033dd697759e518ad10678cf1ccc330831198c4a613659f5ef94bd8
BLAKE2b-256 checksum
How to use checksums
5d662324a7e5770c47d1b727588760eb01315cb82593e33f3ddc5f8a2b255462
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313t-macosx_10_13_x86_64.whl

Download URL fcecodec-1.14-cp313-cp313t-macosx_10_13_x86_64.whl
Size 164.7 kB
Tags CPython 3.13 CPython 3.13 free-threading macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
7158abb0ccde1e8df5a546229bbbd3551c34d6a751249126e7e1889da68f819d
BLAKE2b-256 checksum
How to use checksums
b225d0780d8a9fab6c46efe55f330bdfb2d2aa086b6a7191e283ae32de38222a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313-win_amd64.whl

Download URL fcecodec-1.14-cp313-cp313-win_amd64.whl
Size 135.7 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
efbd85173fd0ed60ea677bf9a5a742381839b6bb0b253b290090f19bfc046666
BLAKE2b-256 checksum
How to use checksums
d665e550286dca94a196447107d9dd5ac885290cd1674aad793a18043db83b0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313-win32.whl

Download URL fcecodec-1.14-cp313-cp313-win32.whl
Size 119.2 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
36599793a71cf674e897f1b7418ec38af75561b57867ad8a9c4285a7c004129e
BLAKE2b-256 checksum
How to use checksums
7cad0f074c080e36096bd1531adc33006492d010c55c87fe990b47b20e9f4279
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL fcecodec-1.14-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.2 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3263d9d90cb791e4cd20235443b75f44edb67e0aa1b167b1331ce251b95304af
BLAKE2b-256 checksum
How to use checksums
580f29b1e3227910f45b7f81431055d8c953cf9dc4dee293f92d0a6969da5ad9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313-musllinux_1_2_i686.whl

Download URL fcecodec-1.14-cp313-cp313-musllinux_1_2_i686.whl
Size 1.3 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
7d092593d8ffdb1796f20f862e156c64ae15021e648d0e5e24a2c0914bff4f18
BLAKE2b-256 checksum
How to use checksums
ae9e6b63ec6057c16a504889223d93254c4488ab567b021d2891f1d802c8b44e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fcecodec-1.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 199.9 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e04778c29bde62c23f74d8548852ce707f94433fadff7c7a6f413b957c33bd40
BLAKE2b-256 checksum
How to use checksums
f261738a14ebf22fd99e55328494ace22fa71642985cadd4178e8d3e3b552184
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fcecodec-1.14-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Size 209.3 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
1ecb871d9302269facfd8a0007a07ed945301371443b4134562380fb2795cae4
BLAKE2b-256 checksum
How to use checksums
e47dad3bb8858cc1b3a658257848e4befff47ac81ff7e1706ed5478a4f19f0fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313-macosx_11_0_arm64.whl

Download URL fcecodec-1.14-cp313-cp313-macosx_11_0_arm64.whl
Size 149.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c70a865b557cd1f6e1902013cf49299e13b2e559d7bbf7bd1ef1125bfa1256a5
BLAKE2b-256 checksum
How to use checksums
9167761638221b6507e8c85190031897fe59bf8ac58d347cd6d87cb340812943
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp313-cp313-macosx_10_13_x86_64.whl

Download URL fcecodec-1.14-cp313-cp313-macosx_10_13_x86_64.whl
Size 157.0 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
2975c6cc164d20b20532be0cffd0c4e2eb9106691f13f721e4fbb29ea0e204b4
BLAKE2b-256 checksum
How to use checksums
268510349ee92eaf4482f0f0d751c871bbe8082944c67e3069e000cb31cd23ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp312-cp312-win_amd64.whl

Download URL fcecodec-1.14-cp312-cp312-win_amd64.whl
Size 135.7 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
2c6ad5d7dde15e50839c0897044a436ada8e92274be1c3bb7c225d6ac93d6819
BLAKE2b-256 checksum
How to use checksums
49d11805d7dc351833f67c05ea019c7352eb2ddc375664557a3a23edf3f65313
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp312-cp312-win32.whl

Download URL fcecodec-1.14-cp312-cp312-win32.whl
Size 119.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
bfc5997f4d6294e1996b7ece0acd302c0646d92d0135e790c8b7c8c1cb8f4846
BLAKE2b-256 checksum
How to use checksums
4b80e5e863beb877a5e5b98f53c63d98851ec1feb84bae19d6e519bba7fbcc12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL fcecodec-1.14-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.2 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
231fa789742e439854127caa0ea3d82945f605454a990776dc539bb06ae96209
BLAKE2b-256 checksum
How to use checksums
9c76ae926d6b6c05c17f23e93f238223b1417657021778ecdf49329e7938c7ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp312-cp312-musllinux_1_2_i686.whl

Download URL fcecodec-1.14-cp312-cp312-musllinux_1_2_i686.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
a7db7c4b295d6d4fb836e687daba8befd5fd067546acfb39a62844331e250ee2
BLAKE2b-256 checksum
How to use checksums
db9d6e76ce9c606f7e60a99f2b8335b1f4b49d5c2c309dfb3a4c3481ec2c2f23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fcecodec-1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 200.0 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c9de7c2843ed02e0f15130383c108f0e56369247156021c4f887dc8379e4c184
BLAKE2b-256 checksum
How to use checksums
3a97687f8e6438d54f4ac49120868a01fd0378348ac6fbe81a6bc4d290949dc3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fcecodec-1.14-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 209.5 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
783ca65641ec855af50b5d3b870e4c46091264329af1c6056f539a458775aef5
BLAKE2b-256 checksum
How to use checksums
1b027935b05112c9cc23f9cf1e3e5e57f54aa307ca48db478c35fbc639c06827
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp312-cp312-macosx_11_0_arm64.whl

Download URL fcecodec-1.14-cp312-cp312-macosx_11_0_arm64.whl
Size 149.7 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
83e1258e620c677fbd33ccb213e6c3e791cb908a3b57784b47e397537367176b
BLAKE2b-256 checksum
How to use checksums
757f278993bb8c2719e07ff54decfa5eac18a575a05e35fdeb110f99a52cc1e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp312-cp312-macosx_10_13_x86_64.whl

Download URL fcecodec-1.14-cp312-cp312-macosx_10_13_x86_64.whl
Size 157.0 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
3e8cbc996c08e3e0343bb98e90afbc76ef5d085b09f775c1ca98d0551f66c46f
BLAKE2b-256 checksum
How to use checksums
ff6bbe2e9d26902bccc829010049933e68091de3421b19dd7a363e74a36b6fe9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp311-cp311-win_amd64.whl

Download URL fcecodec-1.14-cp311-cp311-win_amd64.whl
Size 135.3 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
5d7635a3256d5335efb747f2594e9e8420c36b56ca77affa3a9dfcc46509261d
BLAKE2b-256 checksum
How to use checksums
6bf305560abf85d6092f58898d22003752b0af41ca1ffa7bf18dac1146283eae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp311-cp311-win32.whl

Download URL fcecodec-1.14-cp311-cp311-win32.whl
Size 118.9 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
bf4aa2ed8758517c4304b1fdfa923b01ea9b6e292ea29b36d20662bf54fbc8a9
BLAKE2b-256 checksum
How to use checksums
8b24febf18a9e4d0902bb4bbb0520ce1ff618e9d4cc2fa3357b69befbbad595a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL fcecodec-1.14-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.2 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d6318997057850e2f867de21fb7816680ea2d098fd65a4f237ee9ac8257d102a
BLAKE2b-256 checksum
How to use checksums
580addafc62a6216f2c10af015a09e675d7ac63fd8d434feedbaa3256fac43f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp311-cp311-musllinux_1_2_i686.whl

Download URL fcecodec-1.14-cp311-cp311-musllinux_1_2_i686.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
6d73d9602be6d67e7bcbb9bb7680388b04489bdb20534997bf7c2cfa36de9faf
BLAKE2b-256 checksum
How to use checksums
44bca670eae98242b8a3eb7367ca64671b9f56b0a747690286d423fe8b4c8f4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fcecodec-1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 201.0 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fa6133fc0d2276dfedacf4ffa8b60fdc24fb19c32df5bc4449cebec3a8010d47
BLAKE2b-256 checksum
How to use checksums
8caac72d6ce33065e3f44e8d3c69725414919da400cf4e62b194af55aa99b74e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fcecodec-1.14-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 210.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
7f2b00e9b7a2cb26e4f04d33da7bac0fe3b06817fbb78b165af48a3340cf7dc1
BLAKE2b-256 checksum
How to use checksums
6eda064d18e04d1faabfd3ce397df1411ec1f6075007cbb85df94b9e7e472f6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp311-cp311-macosx_11_0_arm64.whl

Download URL fcecodec-1.14-cp311-cp311-macosx_11_0_arm64.whl
Size 149.7 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5690bd612457c0faee8b4bbc9ed05793dd61a033f88899c85141462af5d4d7b9
BLAKE2b-256 checksum
How to use checksums
b0756e3bca16306a6d8cba093d19d7c54757eecb1ce195c6eba8d38791c99e1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp311-cp311-macosx_10_9_x86_64.whl

Download URL fcecodec-1.14-cp311-cp311-macosx_10_9_x86_64.whl
Size 155.9 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c9726984825766d35d7d82dd5aabe2157c72358a99b41492b9f88054323576b0
BLAKE2b-256 checksum
How to use checksums
8dfa9de88176221468b2c0b070b906b9a8cce0871edc5323c93c4a5be2fb96e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp310-cp310-win_amd64.whl

Download URL fcecodec-1.14-cp310-cp310-win_amd64.whl
Size 134.2 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
cfe7eb57d04002115f9fa821423130003368e3d650f64daa56cff57251b3377e
BLAKE2b-256 checksum
How to use checksums
0082e03d3398fc241ef68c54ab8f12bfc2550753c497e95bdb1b3bb1f73276fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp310-cp310-win32.whl

Download URL fcecodec-1.14-cp310-cp310-win32.whl
Size 118.1 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
9fa0372b1c3ef042fcc9ff924258aabc738e7c0dff00c103aa8cb2134f546b3b
BLAKE2b-256 checksum
How to use checksums
08159e59db1e9dba73b06fe5bc4269fd9dc7a89687324541356d60d9134666cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL fcecodec-1.14-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.2 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a154ad2cd56d2054c10fc434694c959bd07dea8b4178845d16cc7d5091f41b3c
BLAKE2b-256 checksum
How to use checksums
bcf64875d1f5225f74ecd7b491b4deaf6bec2257fc593cbc59a6c9249eb5d4da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp310-cp310-musllinux_1_2_i686.whl

Download URL fcecodec-1.14-cp310-cp310-musllinux_1_2_i686.whl
Size 1.3 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
fefd71d5cbafeeea17531a9170692f454f0cd923f4d35977e4aeb729b9548d85
BLAKE2b-256 checksum
How to use checksums
339160ce92da61154a97c647302443922c4049756fcd7dd8fa5d3b4f195283de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fcecodec-1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 200.1 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f7c17002f5bee8f3c96780271de63f5a27c3623c4403e6674885913d5de8466b
BLAKE2b-256 checksum
How to use checksums
e0b2ad3cef153dfcbaf096b8757b88746b4013206cd032114f02445e7db01371
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fcecodec-1.14-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 209.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
d141df45de5750ba70e3d09fb9899f44754d28e217f7c31a479706131a2d632e
BLAKE2b-256 checksum
How to use checksums
0ae2d5ed026435c44c633d30ac262d7ca3c39459ad2089c0215353ae69a26442
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp310-cp310-macosx_11_0_arm64.whl

Download URL fcecodec-1.14-cp310-cp310-macosx_11_0_arm64.whl
Size 148.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4db8f3d9a851d6fe3d10d2efa533e0066a0878fe92bb6818a3665d82f3da2a5c
BLAKE2b-256 checksum
How to use checksums
1ff4ad515fd2ce23f20cc69437c9e9dd1b24d1387d0a043676e6b30871d3bfcc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release files / fcecodec-1.14-cp310-cp310-macosx_10_9_x86_64.whl

Download URL fcecodec-1.14-cp310-cp310-macosx_10_9_x86_64.whl
Size 154.8 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c17f3b658402405ed1815a79398c59184927c2a31a0d195a196d87a5c53af341
BLAKE2b-256 checksum
How to use checksums
5f4ad763a0113bde6829b57e66f57eccdd0fdd761fec275de13d5cdd3f333a82
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Nov 15, 2024.

Transparency log

Release history Release notifications | RSS feed

This release

1.14 This release

41 release files

1.11

41 release files

1.10

41 release files

1.9

25 release files

1.7

25 release files

1.6

25 release files

1.5

25 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page