Skip to main content

No project description provided

Project description

py_framels

support python

fast

Description

py_framels is a python binding to use framels rust lib in python

For documentation about framels: doc guide

The module only support 3 functions at the time.

Install

pip install py-framels

Usage

Exemple

import py_framels

print(py_framels.py_basic_listing(["toto.0001.tif","toto.0002.tif"]))

Should return

['toto.****.tif@1-2']

Functions

py_basic_listing

The function provide a packing of the frame sequences using framls format.

import py_framels

print(py_framels.py_basic_listing(["toto.0001.tif","toto.0002.tif"]))

Should return

['toto.****.tif@1-2']

py_parse_dir

The function list all the files and folders in specific directory and pack them

import py_framels

py_framels.py_parse_dir("./fls/samples/big")

Return ['RenderPass_Beauty_1_*****.exr@0-96', 'RenderPass_DiffuseKey_1_*****.exr@0-96', 'RenderPass_Diffuse_1_*****.exr@0-96', 'RenderPass_Id_1_*****.exr@0-96', 'RenderPass_IndDiffuse_1_*****.exr@0-96', 'RenderPass_Ncam_1_*****.exr@0-41,43-96', 'RenderPass_Ncam_1_00042.exr.bkp', 'RenderPass_Occlusion_1_*****.exr@0-73,75-96', 'RenderPass_Occlusion_1_***.exr@74', 'RenderPass_Pcam_1_*****.exr@0-96', 'RenderPass_Reflection_1_*****.exr@0-96', 'RenderPass_SpecularRim_1_*****.exr@0-96', 'RenderPass_Specular_1_*****.exr@0-96']

py_recursive_dir

import py_framels

py_framels.py_recursive_dir("./fls/samples")

Return ['RenderPass_Beauty_1_*****.exr@0-96', 'RenderPass_DiffuseKey_1_*****.exr@0-96', 'RenderPass_Diffuse_1_*****.exr@0-96', 'RenderPass_Id_1_*****.exr@0-96', 'RenderPass_IndDiffuse_1_*****.exr@0-96', 'RenderPass_Ncam_1_*****.exr@0-41,43-96', 'RenderPass_Ncam_1_00042.exr.bkp', 'RenderPass_Occlusion_1_*****.exr@0-73,75-96', 'RenderPass_Occlusion_1_***.exr@74', 'RenderPass_Pcam_1_*****.exr@0-96', 'RenderPass_Reflection_1_*****.exr@0-96', 'RenderPass_SpecularRim_1_*****.exr@0-96', 'RenderPass_Specular_1_*****.exr@0-96', 'aaa.***.tif@1-5', 'big', 'foo_bar.exr', 'mega', 'response_1689510067951.json', 'samples', 'small']

Benchmark

This is benchmarks of the python binding py-framels vs pyseq at diffirent level of inputs. Time is always in seconds.

benchmark

paths 1 2 5 10 50
py_framels 0.004966 0.000201 0.000125 0.000203 0.000999 0.001802
pyseq 4.4e-05 0.000172 0.000291 0.000645 0.002817 0.005725

benchmark

paths 100 1000 20000 25000
py_framels 0.002173 0.015975 0.359272 0.420266
pyseq 0.005592 0.060121 2.632283 3.918997

Note: there is an acceleration at the level of 20000 paths, this is due to the fact framels is multi-threaded at a threshold of 100000 paths and the bench simulate 5 aovs ( 5 x 20 000 = 100 000 paths ).

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

py_framels-0.6.0.tar.gz (176.3 kB view details)

Uploaded Source

Built Distributions

py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

py_framels-0.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

py_framels-0.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

py_framels-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

py_framels-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

py_framels-0.6.0-cp312-none-win_amd64.whl (480.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

py_framels-0.6.0-cp312-none-win32.whl (450.9 kB view details)

Uploaded CPython 3.12 Windows x86

py_framels-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

py_framels-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

py_framels-0.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

py_framels-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

py_framels-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

py_framels-0.6.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

py_framels-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (613.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

py_framels-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl (621.3 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

py_framels-0.6.0-cp311-none-win_amd64.whl (480.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

py_framels-0.6.0-cp311-none-win32.whl (450.9 kB view details)

Uploaded CPython 3.11 Windows x86

py_framels-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

py_framels-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

py_framels-0.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

py_framels-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

py_framels-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

py_framels-0.6.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

py_framels-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (613.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

py_framels-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl (622.1 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

py_framels-0.6.0-cp310-none-win_amd64.whl (480.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

py_framels-0.6.0-cp310-none-win32.whl (450.9 kB view details)

Uploaded CPython 3.10 Windows x86

py_framels-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

py_framels-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

py_framels-0.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

py_framels-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

py_framels-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

py_framels-0.6.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

py_framels-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (613.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

py_framels-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl (622.1 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

py_framels-0.6.0-cp39-none-win_amd64.whl (480.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

py_framels-0.6.0-cp39-none-win32.whl (450.9 kB view details)

Uploaded CPython 3.9 Windows x86

py_framels-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

py_framels-0.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

py_framels-0.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

py_framels-0.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

py_framels-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

py_framels-0.6.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

py_framels-0.6.0-cp38-none-win_amd64.whl (479.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

py_framels-0.6.0-cp38-none-win32.whl (450.9 kB view details)

Uploaded CPython 3.8 Windows x86

py_framels-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

py_framels-0.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

py_framels-0.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

py_framels-0.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

py_framels-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

py_framels-0.6.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

py_framels-0.6.0-cp37-none-win_amd64.whl (479.9 kB view details)

Uploaded CPython 3.7 Windows x86-64

py_framels-0.6.0-cp37-none-win32.whl (450.9 kB view details)

Uploaded CPython 3.7 Windows x86

py_framels-0.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

py_framels-0.6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

py_framels-0.6.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

py_framels-0.6.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

py_framels-0.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

py_framels-0.6.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

File details

Details for the file py_framels-0.6.0.tar.gz.

File metadata

  • Download URL: py_framels-0.6.0.tar.gz
  • Upload date:
  • Size: 176.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for py_framels-0.6.0.tar.gz
Algorithm Hash digest
SHA256 aa84a7336be814986f0b97ade1a7dfd594bc5e1062ad889c6213ef84a868d85a
MD5 cb87ef6cfea0c27db6e8811c2df36c75
BLAKE2b-256 0af252c8eb8a80b90092e4e36a794f98caba3a5a6bbf942196fa2202cab91671

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48eebc60716dfeaccfa0c0253cb0d9eb49eb26d4efaa5e58ff650d20bada0e1f
MD5 4f6fd8398ab58b295cf7ab5dd3580903
BLAKE2b-256 b46b8938c934de950ead4df6c3d3a57093bdf91e520d98a1f9a8e75602c4b045

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56fe6cede46fd9469d383f94fa5dd6fba7324afe9076a7b4fb16c94bf311b16d
MD5 e38353f0fcc03636776a89a9e7471bd9
BLAKE2b-256 d04ef8316bc5bf3277c08bfb478acef497c99f447f4dd0e14ab52490a2909efd

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f06a07996959dd13c7212587a268520aa36429b807ff0ff3e15b28e629ae8fb1
MD5 618ff9acdcef888ce9006faa64fb3d36
BLAKE2b-256 a64110b78bf6a5b56164685f8929d00535397713f13979db18ad0d5a5cc16890

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e5f6ab8bc40d2e6d68186d3ddd789327ea216470d71eff028cf0850ec55452ef
MD5 1058fb47e3311350815f7a9a013a0bf1
BLAKE2b-256 dede0395e9ff18d2da6ceef904b4d74fec002abaff6abf6f0eff598ef6cd9def

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b00bae1df062dd57122650ac3cc1b393c8a3a1f1d925d397429f50de055e7098
MD5 bcb5703121812f602bbe658981a2d6e7
BLAKE2b-256 8c5d7c2bed744c913ad2fd3e724c7f54abff5ec13c5caf6f3d4b35f5f72d61dc

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7748fe7859794d8661f6b894a19e521f5d5e443adea30d480dc7fe30b3d8c924
MD5 91f89b354add25827d00df7469889c83
BLAKE2b-256 fd33eda8f0d147ca5f8006f21b6be00623dabaef2920efe378bac9e2f4632e51

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7630df23e57c61bb34352441d9281de0e81249c72c8ec2ebaebbbb9954d7ad22
MD5 00495e41405ce0cd3772d9488e31906c
BLAKE2b-256 fcd2aa45e4701efaa7e6eb509aa6aa20c862ca25416a9ae2f814270cbb57350b

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd1ef33aebc1e03a3b1fb057af1aaa3d793f15e560834561e8131bf5672d7a4c
MD5 4208e2195eb0901b8de427fc1c8787af
BLAKE2b-256 1dbef44c55d944583f0a79bf97f5aa771dfc39d0e752b5981fb6226889a59629

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc12fe4885d19b03d56aa5af28f0c16e64d2a34afad69ed25e03ec4a451c232e
MD5 7e1fc435b6a75d5b432331340d4113e5
BLAKE2b-256 5de4d86a0a0dfb21f4607fa6d7035284ec529bea8375d31c7fe3ee4d106e5fdd

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 37119bea5c1e1f3a9ca36b08e3b822b0ae4383d7c5d7cd0da7280937adb755e4
MD5 11d43708564eed5acf25b78924b37080
BLAKE2b-256 fd64b13bd85af1ebee0ad107524f4c563974ce89836f857686bd54d315084e87

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7ace95f6d9e2c9e137c2410e99534705f1cf459730701d724c8e1cf928f8222
MD5 4c98064003430ba6caa09de88e97a104
BLAKE2b-256 24dc7b905413861ff581b664d8650c213e61de7c8ed9dd2745f5fb6171e5cd03

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2c310096f9db5fa06b8a012d8a565a9e0c55b1a2deaed2cfabefa7bda4134730
MD5 6933ce8abc451b5f3e5838f2f0eba107
BLAKE2b-256 1fcae373459c0048d49084651405948c2ed67d646478b1362e590706e1febbe1

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fb1f04fd82783c136b6f991cbec738463de9800d9af0c6e914656b52b75fb9a
MD5 00f4b68514627e260a6d136cd63d1d68
BLAKE2b-256 e7ac8dab892e44f7004ba8f01ed5674d171d065f6c810c83a95afee315789c67

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fb65143004d83e0504112ac5c7b31721e36f271a103c502511070f067aace319
MD5 fcc26b813418b6c68b1a271474ee42f8
BLAKE2b-256 9ca271e37d120571f4a93267f8e2d00e5a6930ff5f9e87d796ab5772b7409cf5

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 294044d6ffd6ba7e8686461f07df4ae50663d3563d32b3b1b14862858ff39343
MD5 f4f6d3d9769cacc9e14672434f64bfcc
BLAKE2b-256 d2debb27458660519602fffc8d24cee099235fc0735abdae74e7add5b3f0227e

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 64bdb178f3810ca6afb169603524a2cc3b77c5c4d46925021ff0e23ba5f6b125
MD5 39b697d78f509d9739641677fb6a04d0
BLAKE2b-256 0fc8a5bdef4c26b9a39770c89fb41d05cd78d70f216983ba7f5b178a7a81b6ce

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd2764bff11b5003695345fe90141f5611bd67a505e55a588ce36872ea6e1e92
MD5 f585c162250695621399cfca496ced10
BLAKE2b-256 aeff53570c6c9955702b0e6ab787559d8fab95c9d546dd180638b8ef25376641

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6e9b68f3d01e6ccdbadb533ad8c95a901652f44189e056a9389755c48802cc29
MD5 5241d1976a6ace0774a3e822aa897fbf
BLAKE2b-256 c45237dee1d2d4b49d5aaa9e4ae86877ab7d50103d6cc000397b587f77146bbb

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4e1c72f7eee4c07372824a46bc59ae32e6b64b283e7f654bdeffaa1dd79bf86
MD5 d3d26c8690636a80bd733fd02aa9e667
BLAKE2b-256 df5171392366d915fe4888e8db7f4d8b125db15e312dfdc35f490d5ecee6c26a

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc2730f91f1fa06e7a8b4667aa73ed942d85f41bbc496c0197a0eb90e07f3e87
MD5 30efc0f093f69d5817c43779d7250799
BLAKE2b-256 d6ba7970fb6bbc325c1baeb906a2e3ed8f0a132fd508156a8c6a6d5aac44f4af

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 959b9a66444340ee7e47dc496a3cc69a48cb4bddff344b8feaabaf1e5807ee6a
MD5 97fa1c6fb19fce646218e3a7b95da0a0
BLAKE2b-256 fd9b11818e532194917617114392161355f546d29381c3c830bb2288b63003f6

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c3fa973c59eb4fb50cdcdc58b299b251d631bd90a34738a4526181658a57ae8
MD5 0a07c184c4ab840a033a8a370a3f0528
BLAKE2b-256 90bb96e541e3d958a7da197caded4b41b8d99529fa9a405f97e8ba36b081bd84

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7959c5d131a33ec26cea881e73ffcc9a738e52b5d33808785630cb5223102d4c
MD5 c16469ecbb2edc84038ce7e14b7cef7e
BLAKE2b-256 b5c76db5e2dc126335e973542ab3cce937f05747c8acda9a8f88af25c93a7f0b

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 547cffab863e3bd835434cae94c819521db66ac1414b6eee933d7fc152c5f5db
MD5 82944bed0186cd95479b6e7a68e43a00
BLAKE2b-256 a6254ad09d31180f351075ee29a387521d417276e1917803f91c1fcf0f30b740

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a438ff9b5390f46a9da79f4113719b5792019eb098e8c693e8e3031a9b0cd85
MD5 1f1e4c4da7247ecf9e68d3b7afd2b9a8
BLAKE2b-256 44e714bb41c40b78bcdb74da2b6913b0070ae613e39394a3159cdb4c4e9890d4

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0fd2bf8014d994156cfef59abfc6bb3fae571b13c22c5d4408dcf4255e99bf72
MD5 1d552db45f554e8ea7ffb8516ba28145
BLAKE2b-256 28e1b77d732a623bb04921cc90c39b730ead9d37a23ae8e2a91d1a5bd8225df5

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef3a2e573b3e32466323369772a6f3d6cbae4ee9ef88a1ac6b9c69c56dcfe546
MD5 820d9159eb9bac816d93ee5e04f13f98
BLAKE2b-256 2c277ebda62dee7a546569a5adb8f808ff08ae3286c3239441c6304fc6507c2c

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b2b32e4f4c925145cb2f91d3b4c2654f89a9f983a0c7140ba4a156016b14652
MD5 ce730d9e65ab04b1e7587a999da996a7
BLAKE2b-256 2d5714a21660d815002d30bc16f3c01386987954f669dc12b364de1938dd35c8

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 146ee4efde29b1a746f183d7bd38cbfe229b355735c433059351cf88db43fe7d
MD5 d15ce10dc3af90466e5bc2ec115ed25b
BLAKE2b-256 9149b2826ff69298e95a4497ef5b43d634005237534ce7438363d7340030e022

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp312-none-win32.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 696d0d91d9cdb41dea9410315ae0a63dc0e0df10b27dc761d2599856ac972292
MD5 ac07b665b570782bbdc288ebfab178e6
BLAKE2b-256 063fea644ffb1a1283279fb15a17fa4a973d9b2385210005e80f7e6df29cf235

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0e3b5da139838a2c3a8d0a192a5c9a4f9e57f4d823b8edd59e3ceaf473f1f63
MD5 3f72c4f554519e9dbf1d946c8e71172e
BLAKE2b-256 9a3a7dfb1a9a9dfc22a46028a07dbeae7cc0471d639cdbadefe5574751fe9f47

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a1129484673eb89d5af28c13dfc23bd6149ae02c78e2a83410225a446f28281
MD5 dff03f09eeb35b1bfa8e17cd165010fb
BLAKE2b-256 e6b8ea4f488bdd671579bc24b3d86d6b7a8c156e44f8cad39a3769f46645de02

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10d355e299ee7b8f4519b781c7248d33aa8f1b8b445d4429f09d0c45d5a59e60
MD5 ecb9bac2451fed846130da5cc4a516db
BLAKE2b-256 fe3e13c725baa2065b4dda4adcac258e606adaa9202ee25921559ae138d8479e

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0522e626b163b6340fbf35f77af9704c4dfb4d5d622a82a5a3ac4969d3aec90
MD5 68503afe1e635eb6f0a0a3cceb15c0ae
BLAKE2b-256 4cb08eeff640497ed3f78d46f7e37924f4b0003c0221d4aeceaf5161653dc92d

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ebc4938d72811f9e4363173bcf19e7a1438f7c2ca2a801f5ba641773052e360
MD5 048a106005c0efe7fd360d03e9287004
BLAKE2b-256 615937e949894f43e3a09c0932caff4e00879de785cd4611bd3d4b4fa95baf85

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ee7ea20551ef8d92bb0b12731bf1b3084750be4e0646986a39623e4ab5ba47d8
MD5 fb1ff97d50161e0dd5cd269d30152fa4
BLAKE2b-256 fad99824d9d27975f5747f6dd3fdd62933a0392061f615d117597530d11bb84f

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5facdc121682926a5d3d546aecbb0c21acd2a459f7468c71b929e3aac8cef601
MD5 e66f9c8fee253995003fc2a97901ce2e
BLAKE2b-256 3eefcd33ac3574696fb1b323f1cfd2c699437fa4bcd9f73f84bd15a409f8093e

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d573bb7b57559d26201ebb2639ee843a973b43ca0fba62f151761a8c295a0979
MD5 465b88eb3af40f5179ca6653ab468535
BLAKE2b-256 6d9c7eace8ede4ba9e061d5bf4841a31733f01ab0818e9b3102cba04aa6bcc6a

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 36b40119725102d36e6252540e7f6ba3a84cadec9217865cd6c0fa0f35fcdec1
MD5 82bae304dd877d7328200cae267c8377
BLAKE2b-256 4be09d57150455cf71127d65f3922164730583a6bc76815b421d355c9582ad88

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp311-none-win32.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 454904fb52985f1a7337d4e39bc2191044bf13dffe00c900ef3b40086f0d646e
MD5 2e70fb75300f8339c834835cd4df7cd5
BLAKE2b-256 7d7219fbe541ce3e6a597a4d97b2250e491fe029e331dd9618e08ceb2d76a759

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d21a9dffd57ca65305acd26e9829817d92b4d62e721ceef413a6a6772c473b56
MD5 a9a512d751f4130e4064bfb0723fda20
BLAKE2b-256 e0465d5a4a0401c3161f93bba77fe2bce5d691ccc3b520e37ab26c08367224f1

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 984baa234460b6473396c661d87a76e6d91418fce305c2a0331e8509ff6787f1
MD5 b506b11688d035d3ac0b5ce79e2335c6
BLAKE2b-256 aaa88b97b7cb04b4f32e71bd8c46af92f91b734ae0cbe348dd498dd63cef0ddb

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92d6638c7936cdd3ada86ad65bd484da3ea09b305246126c2de687d55647416e
MD5 c36064f51cbb01f8209364b662ebb6cb
BLAKE2b-256 c1c81fa832c4197b6ba5309bab6c3d2a63a0872731a93a4b6e7f596794a17fea

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f694925fd02cefe59ffd8baac306bb94fdb924de221a7af24626b6900559351
MD5 44acbe615a03f6f718cc621cf32c6bab
BLAKE2b-256 0dfeb94b5391b9f7ef21ed0841d5c25d8f32ebf2c734f79b08a213cff818d4f0

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ebc7bc2ee103c167b0a99ea59e2814d3feb1c6aeb8b4e05410f304bb2e5187c
MD5 063c125b8e5e2f09e51a86f74d4abea9
BLAKE2b-256 074f851e1b420fd8d89b67cc9efa1b28e1b84bf5f7e4eda6e293b575e81b4680

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 428fa138d2893111afb26b226fd53a309b38a5a9af3d730ea68a5adbe48f0c9c
MD5 12d457cf357031150140ea842ccd4608
BLAKE2b-256 c9d48e589dba402af5b6f81e729ec48cf98afb4d25ad083a0fc5c44a8b643732

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b64fbf0817127057f0a0d18be295c99a489dddb835086a435b3a9b04f84b4ea
MD5 7981ca22ee4ec883ddd6d0bccbce5cf8
BLAKE2b-256 c48bc39cf7fd547aa01a5e7a4f0d7fefd826617749b49fb74752b093b3d3bdfc

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9dc6bdd1468edf6674d1aee900db733a5d02ab3034ccae4ef48b27e16369cc65
MD5 5124b495a11a8ea8e6b0946d768ae8dd
BLAKE2b-256 edfc449b77a44a44ac9d0155169ea0461a818bce2f58a3576d069fd8fe614b17

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 aaf407b2666a3ab745c3bec7310364c8c0f38783bea7db7bfe392ba70e1378b0
MD5 42bf3f4c701749869e295e1eb7caaeaa
BLAKE2b-256 67431bac33c2c3c66a800549395a5643d83cdba9335cd168609c8d40ae90db91

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp310-none-win32.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 da7052049d8da46d0f843377560cd3e978d73c98cdd16c2ae37fa53185041f34
MD5 c6661946e4d19c02d112d6a9ecfba63b
BLAKE2b-256 86d63fe2a93397636676c73113f2297a83e34c5d6f7edbd8138f9de02715e2ed

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e30007d1c074c8f36d0b32c734b3bf55853970dbf5175aad330794d92427b3b7
MD5 5cd11b0e389c0092f915117206ce81b4
BLAKE2b-256 dd11ab7c312c7e6d9b12747198a740d40662d68a4dc9d6cb854cc722ecf09a79

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f76dcbd9dbcf66581a763f7ba059d2139830c8c7d2e8d63a1a4f12e31954e39
MD5 9d532c216fc002cd5d6913808014c4f6
BLAKE2b-256 a3523962a9ceca48297b13f92562c3853d18de919e1335beb1d7bd9223f3334e

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c4e225befd9c982982aad8e8b18d1fa1098e1aeb35d96bdcb7e970b1809824b
MD5 048edd268f066c644a21a7c66e6b9462
BLAKE2b-256 134a83bac067cef3ea723ee2573387340acdec6b81f1830f391b31baff7cc14f

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b39e3612beb1999d123d372f70373ee605241a7b7479d2ac5cc8fc1a0ed353f9
MD5 7a5116495ae2a13769ca75e859ac3dd3
BLAKE2b-256 6c28d71ad6dd885c29cc00a9c207623ba67cb174f875e5c58af13e78d6b254a1

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1559e4d9eb73f354063d192c8c06f142ac56fce22250ae4303412d8a016f833c
MD5 de7c0f83153f33d0c52a5ed17fc71829
BLAKE2b-256 1e3ecae8090279ab78dcd780d13a87a58250079fd18ce5098e85d651cdd212f1

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2bd1e7da2664da60df0cea7c434f26daad95313adff3d48018ed9d57989a80a7
MD5 a3d645d9879567a610f82da30d8ee7a3
BLAKE2b-256 cc1acb7e533ae9e7f866fefbb9b8d880118a38a1b28555114a23b0c615c4a139

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a9605378b0a38b67ca012495ae06c71042e7fbb49a4b3901c950d306b700713
MD5 018443eb1c2ff5bb0094edddbe7190d3
BLAKE2b-256 ff9361761c40a78ae59f45367e95572b89970c1d11a63e20033e132bb8deec42

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 965026db6481fb6f5aa514676ca3830fe4891f2ce5b7df81c21bbfcd845a958e
MD5 a3d56e467e335bf14eb25c50ec81c53e
BLAKE2b-256 b5d53e21e81de72f0004d306a97e341703d19c176d046688cded5a67b05cc3da

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 46ec7510d142684f1f34c1ec7d25f29b4ae7b0dadb77977f9e87b02f135ec675
MD5 4d57b7b6246cf5f5075ce53061933c21
BLAKE2b-256 0b16b69bbb73f20648ed85aa9772b77a3f165b268a7dfde19ff959d09bdbd930

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp39-none-win32.whl.

File metadata

  • Download URL: py_framels-0.6.0-cp39-none-win32.whl
  • Upload date:
  • Size: 450.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for py_framels-0.6.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ab8e35313abb1a139d56479325998573e6967697e5be2c2c45e8a76a520eacca
MD5 72fb5c008a114299bb54e2449bd969a3
BLAKE2b-256 f6e3345e2854cbdc09e69ccfebd870337b09783717e2c05c0f85bbf1d80e5378

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f64c52f39f57b47ce20b51ef8b373be8f18c27554c634e11bde289e01137bfd2
MD5 4ca3488a5e612563d3ebc04823b4b52a
BLAKE2b-256 aaed8b963324e54345fbb0b13de43f3f4576d952a7af6b89fa08ee4a2f6a8d51

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae6a2d2da38e2d30a58ec33cd0b903c20e4cdc18db09d4f781a6710bbf404adb
MD5 309f36a7841238a836c63f202d950973
BLAKE2b-256 32662b5a48dac2742c03dac6e43ae26eb4f0a670af37679f042b042006cb736a

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be72c73244e29d4389f11bcaeb94b8a89314d37cdef1953b7d5efea176544f36
MD5 85e8ab607b350c7c90c22113b10e2277
BLAKE2b-256 eb91767668ca70096e37eb68bc15a557a7195003beab0f3923797190bf441406

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c674d34ea78ccc38bb9a4794968be07d8ca97fe5db2618f41977af4bb5e48a57
MD5 5f2de8a5ec02729ce228dbaca0220144
BLAKE2b-256 1174e33b72cfeb1c665924d3303facd51617b4ecc6c6c5ef5d327b21b05c6df0

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a2cea708afc5b0fcb4877cae3f6ae71daf22a74d4b4b466d0aeaa110627543c
MD5 2e7e5a15147c88c0ebc4ae0faf206c6d
BLAKE2b-256 fbdc9b3b28893f51d0bc4710beac2f2c28ec934e2925f17b25451cc8ba559e59

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f0a778028c48f83cc2c7aa99356fab40a89efcf2ea25b2bb74a1e2f8f52707c0
MD5 af830334f10a1cadc7c9b1e82a05bc2b
BLAKE2b-256 59c2e1414b3dc1eaef637d35c5bce3d61044c39223e611d776843d58de2a90f8

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 a382482e45c4900140a6a96ab4a64fbd54ccd81af42f606fb286c5584dbef733
MD5 993f3aa6461c9637cd9d3cdb5bdbebcd
BLAKE2b-256 7dd0649483e40eea075fea38cad599725f6a0c42734f893176eb383cba983027

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp38-none-win32.whl.

File metadata

  • Download URL: py_framels-0.6.0-cp38-none-win32.whl
  • Upload date:
  • Size: 450.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for py_framels-0.6.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a8eb401c6e918abe2a48b1de78defd5bf8f7c5350fb02fef4b255f816ddd3f27
MD5 4f0a9ab9a616aef2cb8174a93f3c43b1
BLAKE2b-256 3a2df16c0f74b9181f677de4f36f1990dd19a6edba88689338cd5ee97fa6af09

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2407d48da99a119f4063978bfd2244a8c80fa11aaab7d50f2d088fc783006c1a
MD5 b41e5f681dae80c790f543b26b5878c3
BLAKE2b-256 519f62da0d62e9766c1aedb06c8cc1b228c17854b297824ee63fc85f894c1545

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1f68801d1d734a0785a32e182e63a81022ee0d40ad43bd5ef942ae911cc495e
MD5 b4aa3345e06a5871e587f414d9d51d91
BLAKE2b-256 6f2c0e0a714a912277e5fbcb67774e320fa1149161f916210cac57d995879bb3

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38f5a49425f8e61941dd72c5192a801e53fa740c30be711c139f88fbec05fa70
MD5 065e155fa7f1c8a42dfd00dc3657bd0a
BLAKE2b-256 05ad9abc153ff9125a9b2e0447ccd870469e0fe04cde7dfbe5ff704ef3c5189b

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aff2b6404feff2f1065acdf6ad498ffe937f056b7d9f8941374ac2f6adcc12a6
MD5 562b83800fd72e998c868707c348ae91
BLAKE2b-256 588d9f5861f4dc452dd14239fbf08d2419d3d2e915d97071a1aa5f058eef912b

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad7374289546a951dc7985b1c96ce4570066716ce4b95f50e8190b33517f3f81
MD5 667b4222fb27868755319ccbf5b0201f
BLAKE2b-256 a79c1b3a2a5ffa3b3c577bc814e92b67c175a9742083c62090170fd56d294112

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e63e7c58babddd5292e78fb5c4f649674f0043d9145071cb08ad15598d3c2bbc
MD5 5e67a4ad7f07a70ae90287c690eeae52
BLAKE2b-256 8584b0baae324149d5bb4700e505520a10c27850d5ee510420bda34f5380f22c

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 f94fb8eb53b13f2ce962fea2388a77d03ecab9acd558ee4c735b45b39aad7260
MD5 985e723ea986fbf2d86f4e9fb7568be2
BLAKE2b-256 bcf8d2ce98e41705b8ed86ca9d327cebdfc21c27f69bf5eb93af91a4cb48fa2c

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp37-none-win32.whl.

File metadata

  • Download URL: py_framels-0.6.0-cp37-none-win32.whl
  • Upload date:
  • Size: 450.9 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for py_framels-0.6.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 c2266dc793cb27ae8d90d97d6b441cfb777e59f5f90b5a0b3f23c369cb7c208d
MD5 412c7fc410636f484aa2c81b65576c09
BLAKE2b-256 9fa838336e87f0df556b1192c335bf78d3cae9eb73d0c905296d6768fec85e5e

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72bdf1279a24a8d953cebdfee40bd0ce833ec3294bfa0fc2da7b575ced8f0858
MD5 260a171429746b0003ea068c000975ff
BLAKE2b-256 cb671b7ae5b4ff73b212c09d54a84891d3ba97cd8950ad2fe3aeaff6bca27d4d

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a7ad2a240243a901a931ab529dc74152992a60cd31bd766de8b9d5acff3b2ad
MD5 181c16310770bbc3956b8a3932db89ca
BLAKE2b-256 a5a25d7214bda69551138743742a3c2ba6af81c793f4837cc1c5096c36ac3f3f

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7b9389de5f7b0d00293aebc6363454f8607c72d0f66b42c6e0417d78196505d
MD5 7cc17a4ea97cff9b1ee6f6a14ec33d31
BLAKE2b-256 c62e37b23f47377e1604325023e5e481e127627cb3bc51c461344ac29186572e

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6cd64403c49b12ed842996878a9daec86d967113ddcabb8334807913a52a1998
MD5 0b9afe28d8c47da14c2a59d6adc9f395
BLAKE2b-256 1f690cac623351d5b400693f623a2f7ebbf19b0ce253ff89638da39a9cac45b4

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbf40b8a9cf55797f0f4bd3d11f525cd8e3c82eb2f50e9ecddf01d27e9954688
MD5 4273f0460f7cdf0a8fd22dda9576aaa5
BLAKE2b-256 7e06aca5e374faae91302a092877a226c26d47d5b0463df006570ba4b6497552

See more details on using hashes here.

File details

Details for the file py_framels-0.6.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for py_framels-0.6.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 35d2282fa2e93ee9b062194e9ae9cb9133cf22d1619cc937521dffbfcc504beb
MD5 1ebf4bb35cc4679b7b33cecffd50225b
BLAKE2b-256 2f9c86a12a288f5f9317e8e066b65486634e518332cbec4bbff6377c3cfe4168

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