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.10

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.11.tar.gz (25.0 kB view details)

Uploaded Source

Built Distributions

fcecodec-1.11-cp313-cp313t-win_amd64.whl (145.0 kB view details)

Uploaded CPython 3.13t Windows x86-64

fcecodec-1.11-cp313-cp313t-win32.whl (126.2 kB view details)

Uploaded CPython 3.13t Windows x86

fcecodec-1.11-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.11-cp313-cp313t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ i686

fcecodec-1.11-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (200.7 kB view details)

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

fcecodec-1.11-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (209.8 kB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ i686

fcecodec-1.11-cp313-cp313t-macosx_11_0_arm64.whl (156.1 kB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

fcecodec-1.11-cp313-cp313t-macosx_10_13_x86_64.whl (162.0 kB view details)

Uploaded CPython 3.13t macOS 10.13+ x86-64

fcecodec-1.11-cp313-cp313-win_amd64.whl (134.5 kB view details)

Uploaded CPython 3.13 Windows x86-64

fcecodec-1.11-cp313-cp313-win32.whl (118.7 kB view details)

Uploaded CPython 3.13 Windows x86

fcecodec-1.11-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.11-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

fcecodec-1.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (199.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

fcecodec-1.11-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (208.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

fcecodec-1.11-cp313-cp313-macosx_11_0_arm64.whl (148.6 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

fcecodec-1.11-cp313-cp313-macosx_10_13_x86_64.whl (155.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

fcecodec-1.11-cp312-cp312-win_amd64.whl (134.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

fcecodec-1.11-cp312-cp312-win32.whl (118.6 kB view details)

Uploaded CPython 3.12 Windows x86

fcecodec-1.11-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.11-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

fcecodec-1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (199.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

fcecodec-1.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (208.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

fcecodec-1.11-cp312-cp312-macosx_11_0_arm64.whl (148.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

fcecodec-1.11-cp312-cp312-macosx_10_13_x86_64.whl (154.9 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

fcecodec-1.11-cp311-cp311-win_amd64.whl (134.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

fcecodec-1.11-cp311-cp311-win32.whl (118.5 kB view details)

Uploaded CPython 3.11 Windows x86

fcecodec-1.11-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.11-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

fcecodec-1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (200.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

fcecodec-1.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (209.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

fcecodec-1.11-cp311-cp311-macosx_11_0_arm64.whl (148.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

fcecodec-1.11-cp311-cp311-macosx_10_9_x86_64.whl (154.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

fcecodec-1.11-cp310-cp310-win_amd64.whl (133.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

fcecodec-1.11-cp310-cp310-win32.whl (117.6 kB view details)

Uploaded CPython 3.10 Windows x86

fcecodec-1.11-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.11-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

fcecodec-1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (198.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fcecodec-1.11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (208.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

fcecodec-1.11-cp310-cp310-macosx_11_0_arm64.whl (147.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

fcecodec-1.11-cp310-cp310-macosx_10_9_x86_64.whl (153.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fcecodec-1.11.tar.gz
Algorithm Hash digest
SHA256 ae71c2101562ea3a2bc5f58dfe5cfe58a85a95f1db7fc8c3e9a52924c559c60d
MD5 135b7c5dc1dc0fa0c5d4a729d0ceb9b4
BLAKE2b-256 1a69b86e08a6ead2ec2776501d5d06d39ba19da9b7da3b3aea6c334068d46ff7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fcecodec-1.11-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 145.0 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.11-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 746352b0246a88548be4d6eadb4c71e4a0bf361a39b6a7cc7b1baea9fdb007e3
MD5 57ba76ca705541d5dded25aa84622362
BLAKE2b-256 27508e0591f7b117019b5f330d727f326bb08fb3e300ff1ac517239898c960a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fcecodec-1.11-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 126.2 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.11-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 201f4225bd898a2c0a2702af0acf6f87bd05b90afc3df266e537f73766c819fc
MD5 ef540ed6c664f23dc9f23d1a510d3527
BLAKE2b-256 06c82f28cfdf58486ba5b61282f8e48fe7d402034ea3c1c10ff6b0140fd71a4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 695f02674703b00c482367371948ff4ddee96f0e4773e0b210c790e754bbc5d5
MD5 0945d960b956dd8d97a1691dfce78dd2
BLAKE2b-256 df1c1532e54d98a3885e955de76eb8ccebb7ab4af78cb543d32d33344c464ccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 945372b66bb34d938c4f2f7507f85cf1759ef90fd0b91d8c35c482b7e5335fcc
MD5 2e673f70c18c51730cd2d83b03dff92d
BLAKE2b-256 24beff043f0ff10d69bc03ad26c0913403c44a3a7b068218e74676f7f6105526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e01f339ac17dd63a8bd35938f5622fdac4ba7924cffa7cb580c3cd72e190a67b
MD5 c17d264cb0113b5c45ffb244b69c205c
BLAKE2b-256 d292895e3db5398bdbd0b6ec4e570c55ea24f519708f1e08d4f639d2be22e625

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2b9e932314fb00800b9eef7f895ebc3ded0e8051a87f471aca0b733b643b8ee6
MD5 70416dfa657ea3df89aa0f8aa17ef1cf
BLAKE2b-256 12074b0238b87963cd90bb21f969e60fe37e27417ee7aca90d35e1f93320ae53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9f4e1fc52061ffd5b605294fdf3b1d7eff07100999d9bffc3c7697e126586b0
MD5 80ae3d33f9233d75c503f7f1c76b238f
BLAKE2b-256 dd90a2b76a5f58449a3054d3bf50134de5682f5c3079d2407d5fb302c5c39ea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9ed1ae39488591e5d98c3df0a32003b01e1b6e81ff4efc00c2c65ce62bd92f9f
MD5 7c41c02e933e40955f76e0df76a566f1
BLAKE2b-256 6fe8c653cde0bfc5cdd1bfb3143c2e649dab64a09998c5c8bf00492d1331f738

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fcecodec-1.11-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 134.5 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.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b4e3986a75b5975f226698de3f7d7c300c67a9e130314e363e3ec4b1d61cdda4
MD5 2f0982872c70290e7b288318ce6078f4
BLAKE2b-256 eca7a886463921dba471c9a75ab2c00984729603088b103b794dd96e28ae5337

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fcecodec-1.11-cp313-cp313-win32.whl
  • Upload date:
  • Size: 118.7 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.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e2f850b298dd1c854cb720a2d8df977be8ac34a4898b0ae4e6f1f10a0ab2e9c0
MD5 124174a03b4bed48cd996d8b01ac20e8
BLAKE2b-256 71c9552280c7cf7faaf22a543e61700d0665b69225a627b8720f459a27071934

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84f2ba5c2fbe22a5cd86604e1d3546e988e88ed468add684ceef9a4391b1a6f4
MD5 8165f6c70c32dceeebdbc5f98bf913d4
BLAKE2b-256 1d631ef99256ac5df536f3b7b841c20144e628d7bfa7e0ed16b021a5ad364753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77a4a52ec6bed6fbe5b2b1f98cb5a33df002f2fa9241a27c195887c067695ab6
MD5 32b185f0533c13a29934156ba035075b
BLAKE2b-256 0ddd876828a717a29e0b6d3eb399de6b1da57938a6150356a65f34b69603a527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d02ef54b1ad82369b66bd2a0fdaf1d7c0533433e7f58f7a19eef758d32c64a6
MD5 22808a5aafd35b70a43f8c1e79fc9451
BLAKE2b-256 d44a1f03e0fa4083d66b0619c7505ba75b5b9000afd685ffb6350a5ace0f6a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86b1d9a84f26b4814eece456a94bd86179ce99c46835df946969369b87683e44
MD5 7e6a0f7c8b3fff71ca17d09e820b8f67
BLAKE2b-256 f205905a3e59406f065971a1597b96861d3cb4bccb5ecc319142bd8c713f61c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c068312eb385c3dd55917b7fa0a754950babdf7963bc888e0ba426a5c8db9330
MD5 85af2c23eb87033163c21df186fd98c4
BLAKE2b-256 9f0602c158201c23c4dbab6afe54d021d63abf1230f9619d0f091f37dbd6768d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 78c6c6e915906ca03a353ce1ac2575dba017e1fb7cf4cabe47be823dc2f4103c
MD5 a19410085b2418bceb85bc5f566caf34
BLAKE2b-256 747245939a0a41f45a3696aa3feafd2513b98b86d64336e8530f1c50739e9fef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fcecodec-1.11-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 134.5 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.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c53d614ba62d1e482c2308002e6dd7a1a35a87669f0913efa41a4f8e39eacfda
MD5 874ba67bbd3e1e52ac995f18f00a22cc
BLAKE2b-256 03e57afd265e4d176f2adfa973c1d1e5113ee43ad848225101089bfb50770715

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fcecodec-1.11-cp312-cp312-win32.whl
  • Upload date:
  • Size: 118.6 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.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 761b84f6b650c208c96212e010313c778cdbf5372181055c9530a4ca8ea70ed5
MD5 ea2c38c587fef85ce516feb252998712
BLAKE2b-256 ed714cfcb57500bfbc9220208bec9b791c505d1698cc413f01fca3a8abeeddb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72def0368ea8f6319e4ad82f5a9094623e9adb81ff57956fd4d4909a924e3014
MD5 ff39c86e556d2efc4205fe998b9a423b
BLAKE2b-256 49953558ded7b0c72b9fa890b5cf373642a02fde08531b76193391454d55b642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d0fc6af1be36929acd8c8f23ad4dbc9388cd1614a6e33b0c24715e4c3cd4be9
MD5 674e17409b040dd83bc2c1be513e392f
BLAKE2b-256 31b782bcc5879ed80e1e69422cd696185b8aacfdae0250923673fb5f8c2f8f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e470ce7df48c12ff43821a7905d9868da99b16471fb3b1c17e76fb379a18ec0
MD5 579d315ecb6f9aab8ead82521ba03b4c
BLAKE2b-256 89b4dc049082843fbdf79b3241f8474363c072d327edbd777a58d97bed2c5ad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f73bc6b55bc8d6d69e90d703d079dd0a316dda3b48c5639b52febe7e6cf5bdae
MD5 3938d8cca79dc02527f7579560a1f115
BLAKE2b-256 3b0e3ee47095c74e4c9696441f37fd6b7e9c9341e4d1a3a07fc8cf9bf23156d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79682e646faf3e4f291c240d13da219abbc89df192830acdf096db9806830d89
MD5 c45cbca56dcb38168f1dd0a6f249eab5
BLAKE2b-256 1b2cb29b3984af5a2a4ae749212317f57f06862910b972b37c7a2b9b782b3c21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d52522af394ddaea006849769db036205d9d26cc490f582f80785720db93bac3
MD5 393c67446c8b3086862489bec1714384
BLAKE2b-256 503ac515d4f31c8a4139552a004e561310869afbfddefa077ff5cd08fdb6f6e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fcecodec-1.11-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 134.1 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.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 89527600a90ab6e97c97cc0e42e54edf6d9a4d98ee588ea103b4bfde46d5e375
MD5 4cef72406133a9b6df011cb0b48edf1f
BLAKE2b-256 89dd968b5ec26aadf4dfa56be562e5d1d474493ece7528d8d76c763d855646a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fcecodec-1.11-cp311-cp311-win32.whl
  • Upload date:
  • Size: 118.5 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.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0ef907cb2bed8a9e8911485db206ee269e035cd5c7b721751758cd34e7990970
MD5 c9c1e00bb6b8c927cff92c3b6456ddea
BLAKE2b-256 7e7d85b7babbc181eb6ca3e36766572864d9dc7c4a82a8766d081e14a814cc4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0323412bd5b5dd2a0b2bb9dd1c6e0f279bc5af314bcbb09e6862676d1c65cbeb
MD5 689eb7cae23ea6049087b5c014a36416
BLAKE2b-256 58303ec5ec26d75dc0f0ebf1efc76eb7f2304120052befdd86b18c967e26aa01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 702868ccb2ab540c4435bae8d0b872cc4be73ce749d42409a704aa21cc9e2822
MD5 8a87cd69cfbf583dcf269cba5a2f7eef
BLAKE2b-256 19facad3ef4299553b94f943d49a7b17e8fc74b89a425923b2188221fb8ae0e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56b0d619ba613d34e9a7d5352747dd431efa6522758a578135f8f5f9ffe90f44
MD5 d41bfa6f3ba60ae0f8efe4cca15473d2
BLAKE2b-256 4968161c8b9cc96792d3558ba58eff49ff47e910047201753468635b285fea52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 062c46ea1ca9c5d8f582479a10143b394a4cc183a6498cf77ee8bb0c7cb6e862
MD5 656cad1aa930c249e1cdad4c1b60ad51
BLAKE2b-256 525fc25eac6d2d0aaee3a01817b4c80217f4b1dd82843387e7c726f31cb47d5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9146509c20e2923dc7358aff688664ef03fa3b8804e566fa80789a944a05d953
MD5 fb2e4a39ed259fba26f5b4064b927b13
BLAKE2b-256 5e7c8e871f995cda60c4af04e120a5e9d733d31bfdec3d3a459c1ccf920e6fca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0955a2183e4235da316f396d7257db0d118d2294bb1ae1a560d6287e3e796fae
MD5 55c7213504301c0101a93f5248747377
BLAKE2b-256 712e20ea217259f0b77800740a4de2d7e4012ab491030a2e496ea2698ef2a6ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fcecodec-1.11-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 133.0 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.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 432c64621fe482e4e1d2f547afe2c448a1c8bf343d67d0a05d625726b7d74318
MD5 1c10e44aab7353c72cbf4bdfdddc0674
BLAKE2b-256 fbc565fd54a7d1531e84290652ff51ed2769d38347cb7ad30bcb2eef94c2a33b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fcecodec-1.11-cp310-cp310-win32.whl
  • Upload date:
  • Size: 117.6 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.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2886897946ea2575d98b38fe3d509fc72a010dd4794b9d0d4d84c544f3502dae
MD5 10207baf7ccd8d648a74e50601ea3d21
BLAKE2b-256 4f3e47c2ec437addf495a7cf2a1a91c88a840f75972c6590ef10cf2f428817e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a85f075752e505d7dd5d2fb82ffb300df01b7b6110f6167346556342e54764f
MD5 6b9776c97d2a252357437a0c9c33dfed
BLAKE2b-256 6434a61fea4ba67f22c954d35a6c97f488e9a306137bd0f8df42d784ee45d4c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52d5fdec0a8d88fe9ba4e301b155b4a3c77c3374f8fc7cc932c7aa3521eef013
MD5 d5e337c920f6ee71a2b682a46fcb98dd
BLAKE2b-256 fcae28d746170878862f6620d398bf80f1900201cfb35737b231b14075f2f151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89b7c67fd71bf438af1725e10bfd93e49fb6906b61f6adfae38b416934be54da
MD5 09bfb0c8a6d165d0848104459ba94be0
BLAKE2b-256 ff4c543647aa9736da3d3f26240c06356d8ab503f99c82b91b3dd2380803e64d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a85c545d83d29ab92fa9c52fe31e37302601359c9e34d53be04825414a5e55bf
MD5 46c0a51a0691a5a208d0235c9d6795f2
BLAKE2b-256 20c31291f5a2a29a9e995aa192b58ab5f0a1c2fb53a655ffd94d56cc207e9425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8402f5c2a93059abfb9bc8693bf851cbfe93a3610bcf53af53e3e3cedbc2ab1
MD5 f437ca8f01d2dcb58dc7262537a8d8d3
BLAKE2b-256 4b3ddc56b13d7054209bcc7a72444d70b3192828d60ca5879ce777242f8a8cb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fcecodec-1.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5acbe5e3b43938c86d06ba78a552a81512d71f1ed856d80b3abada6c9c817e7
MD5 b09c46581a6731b6207bd0ac347b853b
BLAKE2b-256 673b9ac982a3f3eab18c0a0879f6526f3fc12f7e5308ad06abd922d531e59dff

See more details on using hashes here.

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