Skip to main content

No project description provided

Project description

pyfcomb: Easy frequency combinations

Frequency combinations made easy! pyfcomb allows you to compute possible combinations of frequencies from a given list of frequencies.

Installation

Call

pip install pyfcomb

to install pyfcomb.

Usage

Use

pyfcomb.get_combinations(f_ids,frequencies,amplitudes)

to compute the combinations. You need to provide a list of frequency ids, frequencies and amplitudes all of the same length to compute combinations. You can also use the combo_depth parameter to change the maximum amount of combinations as well as the accuracy parameter to change the minimum precision of combinations.

The function then returns a pandas.DataFrame consisting of all frequencies and their possible combinations. The best combination (in this case the one with highest precision and least complexity) is also used to calculate the residual from the actual frequency to the combination. Lastly, this DataFrame also contains a list of all other possible combinations.

Example

from pyfcomb import get_combinations
from pandas import read_csv

file = read_csv("pyfcomb/tests/testfiles/freq_data.txt",delimiter="\t",header=None,names=['f_num','f','amp','snr'])
f_num = [int(i.replace("F","")) for i in file.f_num]
combinations = get_combinations(f_num,file.f,file.amp)

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

pyfcomb-2.1.2.tar.gz (29.8 kB view details)

Uploaded Source

Built Distributions

pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (384.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (346.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (322.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (384.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (346.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (322.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pyfcomb-2.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (385.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pyfcomb-2.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (346.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyfcomb-2.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pyfcomb-2.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyfcomb-2.1.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (388.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pyfcomb-2.1.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (349.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pyfcomb-2.1.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (321.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pyfcomb-2.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyfcomb-2.1.2-cp313-none-win_amd64.whl (168.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

pyfcomb-2.1.2-cp313-none-win32.whl (161.4 kB view details)

Uploaded CPython 3.13 Windows x86

pyfcomb-2.1.2-cp312-none-win_amd64.whl (168.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyfcomb-2.1.2-cp312-none-win32.whl (161.4 kB view details)

Uploaded CPython 3.12 Windows x86

pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (372.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (344.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (312.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyfcomb-2.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (320.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

pyfcomb-2.1.2-cp312-cp312-macosx_11_0_arm64.whl (268.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyfcomb-2.1.2-cp312-cp312-macosx_10_12_x86_64.whl (273.2 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pyfcomb-2.1.2-cp311-none-win_amd64.whl (167.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyfcomb-2.1.2-cp311-none-win32.whl (161.5 kB view details)

Uploaded CPython 3.11 Windows x86

pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (384.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (346.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyfcomb-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (321.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

pyfcomb-2.1.2-cp311-cp311-macosx_11_0_arm64.whl (269.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyfcomb-2.1.2-cp311-cp311-macosx_10_12_x86_64.whl (274.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

pyfcomb-2.1.2-cp310-none-win_amd64.whl (167.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyfcomb-2.1.2-cp310-none-win32.whl (161.5 kB view details)

Uploaded CPython 3.10 Windows x86

pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (384.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (346.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyfcomb-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (321.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

pyfcomb-2.1.2-cp310-cp310-macosx_11_0_arm64.whl (269.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyfcomb-2.1.2-cp310-cp310-macosx_10_12_x86_64.whl (274.5 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

pyfcomb-2.1.2-cp39-none-win_amd64.whl (167.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyfcomb-2.1.2-cp39-none-win32.whl (161.7 kB view details)

Uploaded CPython 3.9 Windows x86

pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (385.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (346.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyfcomb-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (321.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pyfcomb-2.1.2-cp39-cp39-macosx_11_0_arm64.whl (269.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyfcomb-2.1.2-cp39-cp39-macosx_10_12_x86_64.whl (274.7 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

pyfcomb-2.1.2-cp38-none-win_amd64.whl (167.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyfcomb-2.1.2-cp38-none-win32.whl (162.5 kB view details)

Uploaded CPython 3.8 Windows x86

pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (385.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (346.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyfcomb-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (321.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pyfcomb-2.1.2-cp37-none-win_amd64.whl (167.7 kB view details)

Uploaded CPython 3.7 Windows x86-64

pyfcomb-2.1.2-cp37-none-win32.whl (162.6 kB view details)

Uploaded CPython 3.7 Windows x86

pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.4 kB view details)

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

pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (385.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (346.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (318.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyfcomb-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (321.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

Details for the file pyfcomb-2.1.2.tar.gz.

File metadata

  • Download URL: pyfcomb-2.1.2.tar.gz
  • Upload date:
  • Size: 29.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for pyfcomb-2.1.2.tar.gz
Algorithm Hash digest
SHA256 4d54a62b4a3f669c4a3466255dfef502f4de86fb99d91da4f624dc3c4dba1516
MD5 9d63961b06826af85a9f14e23026f27b
BLAKE2b-256 b93421bf958885ea6558af8b7230e7fd4a66f6f42c982048db09cbeb9b8fd9cd

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 014e5fce2fefa485d3548be0ef7b8da632fd28fda6beec1ea61f113cc308509c
MD5 ee818a905bb4fe51d9637432963eae2e
BLAKE2b-256 8f21403c1b2eca6b36796ab785e9bce057e06c913326a95692c3b439d94e1b26

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b83b6cdb953126d7bc6e00a09c02733c037600668ae0086ac0be3596389b1b58
MD5 cdc78a0a382de9cfd3ee1c50544815d8
BLAKE2b-256 52e08b0ef863a7452183b297c777f9f9c1418279ccaac038263d24bdacfdad24

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19a2c112b82b1e410b04a73ab49dd39a7ece5fa736efeca97651559ce575088a
MD5 c280b5967031a6c40fabf6eec5a12efd
BLAKE2b-256 8376262c4d66e725bfc48fd4dce53dfefc138c5af2c5143b902a54efc173dc8f

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 97e2396b35c0380d2956d44698a2e6083c0a02461fe73470f5b3d361b0747961
MD5 ca915b1c830ea79824de4d667b8d2938
BLAKE2b-256 af8fe3b481e355d6aada8f4b54e90f391f90a406cb49cbee40ff9f87c53e0b8d

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce84a4acf804e2e8c2897641e1daff8b472dfb8b9362f395eee350ae055537e3
MD5 10b907af800826228d44b0412aac62b5
BLAKE2b-256 7318c88640af278e7b57bce747bac85f50d6d944068049289120d5b02fc652d5

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd194855f842513dd4cc1a985a1c3dfb3bf6dddd031fbacab5aeccb2a4b8bdc0
MD5 b8122837134d9f7b21259d54762a7bfe
BLAKE2b-256 0e31236b5ddccc8ddd2c84093034196b42f3e6f09db869563ee9a0ae743bab5c

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44e68027c099e4631df6fe2575698c58b326ba0a2f5396d127d91d5e78e58c8e
MD5 bad01806781213d4443feca0420437c7
BLAKE2b-256 b7e381b739e3986176571ed1dd6d1fbec6b35490347603990651ed0e7b8b7379

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 186f35ee8c6155ef59c213ae5305851c4478599d9a0ca8e9fe4fe5d0c95a499c
MD5 7442740c00e62c42dcf8134db9785bba
BLAKE2b-256 ca625a2e83c20bf3de7183e14bc231cc11f627f4aca34892ff4ce00e1106f9de

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6e11fe9b1197cf0e0390bd2eecba87536bbe69ce6a85f25905403ebd7b3c1ac
MD5 74f19da9aa83cc6bee2cac500f5ecff3
BLAKE2b-256 650d146a1e33baca968af2540c04b969f4714307b6d4694a1ff39e0e49ecc7af

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54ca3bec08b921c2b9f2e87e50990f697e276cf706bc18ab364059567c0e7e72
MD5 b084797e7e30cb1514646270a961202c
BLAKE2b-256 cd54355701049563efada417cdd5809c5ec379616ceadd37ab979ba65af5e7d9

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adc9fc007767e26d4aa81833f1a12c10bf8d93e827206b5abf414829cfe9005d
MD5 f5673bdb55d0a951d7e5981fdbf6c06c
BLAKE2b-256 ebd3687febadc76c0d53f2977061dff953808827456cdddf094346895b5179e6

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 207dbc1f37a8feef876bf2c92e3927751bcb899656359e7178219015715aa24c
MD5 1d0a8a6009ab2900d1062612a6484463
BLAKE2b-256 c1f0af86f19f14b50068be2c06eaf0cba194e9e09e0ec9162ec408a48542570d

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 255b7058ebb8918e6588845eabe1039fc1c08c7e673761c23f78febddec844f4
MD5 86beec2f4da3dcccf0dac9a80c955c6d
BLAKE2b-256 cb5c6a18e4467e1f185caffdde87c0558d93192ff2c9e0c6a747f025d4086949

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b850038aec07e9ed9e3afcbcebff770e3c87532d61a7657e9f44d65256f0d02d
MD5 ddfcd2a6178ea7cb9ea53163a359d762
BLAKE2b-256 1850469354e8533e425515eb73408ee23735652c9b88ae3469a96365d3b1f9f7

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9bc90bb6bea56b9d6173dae0e058da464f62dd8e57ca91034b105da0616b07ae
MD5 e670973ebd77459ec783c16202141ec2
BLAKE2b-256 4405fc8290c836ba4f238717170574c49996624d2baed53f82f716f29775e8f0

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 224bbe32dc8e762d62ebcf5cf333d13eaa34c85f324326434a5b6d7580c206a6
MD5 e0d556cf5557354bd14d0ee8ba3729c5
BLAKE2b-256 4168025fd970e4e6f90951c123ee784a0d02fb0fc7d8103a6c69372e3392c515

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae73a8dfa695cbf6fc311abaae8af1ca2eb7e476731be73269ea86e6c864820c
MD5 6f2f67ede27d0a7c126e10d8ae85e566
BLAKE2b-256 8fdef8ee8ee7aa65693bcee6eef47541789edbfabcfef1a464fad6bf6e962f3a

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08f33105cec9a7a68dae53a0e9ea684ffbea6c4017ecaa91167bc99f16b05009
MD5 65e190e6fe830265408180a783090564
BLAKE2b-256 f5d799001311ca7604734f4a19977894652609bd384fd8f1cb1a3e8dcc4fdb75

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4723ad7c19c7bfa8a8574b2dff2d1d3cf3c6995daa0196c583da6c37ac0ee47d
MD5 6068fa67be41b96daaa04d7fea89361e
BLAKE2b-256 e1cb219d93840032eba86bffdcc159c88658fb85b97faf9501eb96ccb98ae64f

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39b284e1e02303efac224047c568ca95272672093694efe2b1d2ce9822e16c3b
MD5 898f41436258561f934ce05058b5a4a3
BLAKE2b-256 fd05b0172c3b728bea5275f4a2967dcf1641814d068504d0be9883bdbac3f176

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 ec4b7744bf676f0b1115c6174821efc0c93fbe76754e2c3e3e5b8d560d2e78f9
MD5 81563b8655cc7d704ff067c85bb45bc7
BLAKE2b-256 81589a32a5559c911225a7dd2faef76a186b4c8ff4e89d6a19e5647af5f6649d

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp313-none-win32.whl.

File metadata

  • Download URL: pyfcomb-2.1.2-cp313-none-win32.whl
  • Upload date:
  • Size: 161.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for pyfcomb-2.1.2-cp313-none-win32.whl
Algorithm Hash digest
SHA256 f6d561938e756f5743a4332b834031ee54b28a6a149bf219b9efcb52c425e0d1
MD5 926a51788f1d0e06ca8ab4958526bd09
BLAKE2b-256 e4098d92121f51e5a736e3b32fe4db6bd34953663a5961f85d384a7660ba38d8

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d5dd7bcaebfc7066f3aad3db577a22f2194986a56521f9c98f6f60c4e6630796
MD5 49d732dc574bce9c5f8b4126c651e32c
BLAKE2b-256 23967eb4a6118549908b721bd5e290e1b5580358a967f11b803d67c2d93fd17b

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp312-none-win32.whl.

File metadata

  • Download URL: pyfcomb-2.1.2-cp312-none-win32.whl
  • Upload date:
  • Size: 161.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for pyfcomb-2.1.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 8416d6a12c1274876fabc14c1cbd6767b17755bb47234f5fb09e95ab80e26f2e
MD5 b70d01a7a28fd6a8e01b06a22b99b349
BLAKE2b-256 bdd58668b626fc68d4e6542bc5b8e1e752c1411f3f5e96105d7921ff575cb81d

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb82b3ecbe6279f9381fa38109d5083af95e80309f575cde77956592d00b7bdf
MD5 f27fec1cef64787a0b5b5e6155f8f0f9
BLAKE2b-256 a608da019b1826c9bbedcddb43dca310abad773745564eb1d7084fc821638207

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a45e30d29bdc0855e1c15c54a9692c5395e614daeb98e0e01c03c24498920ca1
MD5 1a6e96267d0ddf69b90bc54043e57d75
BLAKE2b-256 051f21f2f00de71867da9b96c38d987dad206dec45a5f93d133dcdb050c2434b

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 76f0ab7c318d1b17b9e0836ea748b7f867d8c5808f018127be45f2d31c299947
MD5 0f5d9501aa7b70201461cad575aa05c4
BLAKE2b-256 0a62e79ff9a8c4e0181c18e26e925f68c5edd6c95051d687c9331cd60b5577e6

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7dc77b3c4bcd99bfd5e7c4189e6de76994387586a250012482d74cd93dcc63e5
MD5 39aa83919f1f783501e302c112cdd287
BLAKE2b-256 a1f7a68e6ebdecb393771526edc4ffb61de7c9307e546a2d1e457125cb0a65c8

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e39658329ab180c909fcc5e4ab1ede6a6903e2239a5a88454f1d462b322ed4c5
MD5 708481d4995c1bb8e07244754f70e0be
BLAKE2b-256 ea830add23891861b21da5321d47ac97932d85c6ce5ad2947905d51861eab0ed

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e70feaf3081cd8ed76df73d066c81c0be3735691731f70090c5e0722ba777859
MD5 b40246821ddf08eb19985de13371dd82
BLAKE2b-256 5def5cb6536644142d92576c02ecd70d95bbf2bf1bb95d6c905be897001d1194

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a898093e81f337f0ae1fcf0cf800cc8c4b513abc96f9c6969b68f7f53bb6beb1
MD5 1e47cd3f9037d865fc2afecaba699ed0
BLAKE2b-256 2e19641ad10c712153db5321788eca8fbbeb56a213f4e281ae192b13ed603c5a

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6428eee23161955c26c66509d2a43cc2f736283c2468f0b003cd1281a0ad457
MD5 b71fe2d2bae2f605036c3f1c3f4b1945
BLAKE2b-256 126f8bfdb3a69d093d95886b6f53f18ef7d49dd1b00e4981dc6b363fed71993a

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 70cb80539dcb9a27827b7c68e1481ed0ca66e3906c33f28c483b58a70c574d54
MD5 b074fb29bebfb33511a5c065d3381826
BLAKE2b-256 7818a6332b62a1383d43a47b1a0655774dba779758232d5844ddfd83b53a5af7

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp311-none-win32.whl.

File metadata

  • Download URL: pyfcomb-2.1.2-cp311-none-win32.whl
  • Upload date:
  • Size: 161.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for pyfcomb-2.1.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 dfe90661b1fc1a770c56e610e9c5eefb8beaa9f10353a1de67cd4578c805e97e
MD5 1166531025809085f6af30a3b3c9a365
BLAKE2b-256 9dbb2e487b6ac622c6ccb6c6fa144552d3916ce11d390b02e5c8381ef027fd66

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff75dd7b25876edd8a16ee397364b6a024b13d341f15d95917a8b1a6d88a2397
MD5 8776a70f55262155eaeb04f53f66aca6
BLAKE2b-256 330818d49f47262dbf7a99ca4dc80227f4092fc92587cc59c96c87ab35c260ea

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d6778f67569afb76a5c0fc7421c83fa695a6ab9d0bb1cbc83498a11afc65ca7
MD5 6fa908e13682ffd8cdae0b29f1d3e6d0
BLAKE2b-256 cf90accbdba90b3157c66978eb5e5872f6d3d87117e6744e1b583fff1d61fa97

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3de921cb98695f493314b389ae74e1aa40f6fa78b8ea07479cec795cc1cf2a9c
MD5 659f43d7a0c0f03550b06aee52baa681
BLAKE2b-256 71504199aa6940415fa5ab40596e1d2e3790f137dd6deb868f314c916d98395a

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9dc1261a1c1720b4fd18440d75129508b0832c15c89b61841778339cfce84241
MD5 a2f0f7c8d40134088ebd8c070bcb10b7
BLAKE2b-256 2d82f60125c2058a438c325ef17a51f57340efb5cd66b87b6469b82f549489ba

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af3ba5e6baeeb91ac5f22958052f7de49e20c8aad33339e93faab9c787f19e6d
MD5 afa8c0a353e58dbed180b38c17989c82
BLAKE2b-256 1f8769211a26ff74c8cd1bb55144d1740428b81da5b96d9ebccf4f9229128b07

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 648cc4aeeef9e19d70271b1697a457cbd015e2191dc04fd89069c2ab86283f5f
MD5 ebc3b8b280d0769a6372df4877cd8ba5
BLAKE2b-256 a6e3043ef32a9c5e197fd6544904fc0dce2cdb3298f5f839141a1fd3e4fcef76

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61c46eb0b76895a7e2be03743880a4db2bd52aa62c42143361f753c4275137f0
MD5 6380dbdf6391494fd18a62d19992c279
BLAKE2b-256 8245c750614ab883689e55cf7217094f1b8e68e4fa3be102cb0ee558ddd8e79c

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dddfd799d282d48d91a4eb80ba2fd5a0b8cee24def5c2a4536f8128662eb7860
MD5 c32e53f2a957c390d34b4f15ba0b537c
BLAKE2b-256 788ecae1d6a92d5e76147b1132ae99e635c495eaf1c3afd394694e99840238a3

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 13fca7b03d9d1e7a89bf95a9d7103c19cf416d47be4f17aa0125ba13093fbc93
MD5 baaf064f419d97f4f88693ec3c2cc459
BLAKE2b-256 fc7801f0c01aac6ef7c4f288bd61f8a3baa2483edaef119c97bff83b76913ee1

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp310-none-win32.whl.

File metadata

  • Download URL: pyfcomb-2.1.2-cp310-none-win32.whl
  • Upload date:
  • Size: 161.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for pyfcomb-2.1.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 fff3c6dbeaf39561001babebe2dd6481c6aec67e046621df4e2b1e2354543339
MD5 acdc89422b1db4837ee64d2b3d09c3c0
BLAKE2b-256 aac87f56dbac2f5f445c5d3e8719c2638dfb2da4eaa35a1b14d2d39f37363411

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04de10a652e3e5c31faa9aa250c4d46bb865683c088a6b3ac6d5fe47bf99e652
MD5 d30e8c6060ba99675637fe3f5ab2c08d
BLAKE2b-256 517a4225c6846c057e5cc0bb25e6b66aadb0c336fca1dc918a4b05da90969937

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9bcb85ab7aaf99892ac1f16fcbd8f52abf9602f780a823e82a18b22b1d96ee6
MD5 37b1b48c1e9e36b553d3e7d64f8902e4
BLAKE2b-256 a060b9aeeca243e18e8ea6ae96c3e8d31b709f9b91babea3721ed3e1b8bf34d7

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7421531492b498eb749ea6b564426e4a957f1bb3d3a7fe316e57b25eedb09d27
MD5 48c0b46a88681642bff474e6748f38bb
BLAKE2b-256 c990f8f7d631676c3806f6bf9e6ca835509efc3b9c1d4356b5e1cf1c68e35a03

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b809e471d03d33ebe522e377ea0cc9d43a8c51a3ef6f30f5547873a501e3cb21
MD5 7501957e6ac77ffe0cd1923bb73eee04
BLAKE2b-256 4998d89bb55ee4c7227a87ba65e6d3d90a7250e45824d62ce4c8b24796768f50

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 311d7fe540864862a9126636b37f6bd5aebbf0f9c7f94f1df286997f253fde75
MD5 186631fb0418778c36277ab1f298c40f
BLAKE2b-256 fd2e97c38ab9772421950f60037c107bbb0a027e1383e51c1462ad0a11597d32

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f07873f5bf18d28fb7988b3419d42a33eb2480cdfedd16947bea58f8c07387c4
MD5 14a12e8c32b8d62d64c24da58af0a611
BLAKE2b-256 436cc5c4ae1d99663383b94bb04e831d03baa938aaf5b2627579fa763c315e49

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64203e8f8616ccdb407f256de7cc1eb3271ee58ea266df35faba2d2edf887af5
MD5 668318c1afed67074d2c8b8a531b70e5
BLAKE2b-256 067d0c80120dafa7f38e082f12639ddd7d42fa9578499f78816e58a8207c57dc

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2736ea2a503792328fc2cf0508931cd6e7ef909d0fecf850544dfc511e166940
MD5 315c2ccc3c9586ae21da9d8b7385bcc5
BLAKE2b-256 4cffbd21497ab83e7a47656db8f6f5c7d8c5ac06736c1da2788705ef97719397

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7f66786b1230a4e09387f48f73256f40d3fc6a7f12ffdb71680b00e5a86098f3
MD5 060f0e4c984a26fe488a2cfcef7bcc02
BLAKE2b-256 380c1912f94ec624f5372c6033372bb76033deb25dcdd3fad6131ae45dcdfe88

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp39-none-win32.whl.

File metadata

  • Download URL: pyfcomb-2.1.2-cp39-none-win32.whl
  • Upload date:
  • Size: 161.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for pyfcomb-2.1.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 94a0d09d27321e522178843c0488a9489c1282f7ed2386ae3feb374fce175316
MD5 3f621736c4a27429f6a24625f12f2934
BLAKE2b-256 dd5d5e82985d7b0bb1c40ade7e23a81e4ed1ab407930b68f5e189779585b03ef

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9238be997c55b446e7f4f07e3fd6951ecdc2b1a5174f97ed645114ac72b74781
MD5 3f2c0108fae86689b8ba0dc58616ba47
BLAKE2b-256 6cea364a0612074cd455ede016969cf494759fb161e5974c23a7846de9af0083

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56fbfc6d6c72e0dfa5f63b2784848b14d931f578e575be56e6127fdd67952879
MD5 b2ca533718aaa4a1c2f487c42f05ef16
BLAKE2b-256 8379bfc309f0cbb35270b375eaca7fe2b69c41b4476caaaf54ef898eac8a97e5

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c266cc9b4186155d76c9c97e4588b021ed89bb7006ec61550db16dc949664ac
MD5 81d6991a91317c4eac62566405f27371
BLAKE2b-256 460d2ee5ba160d045ba1ce660e0c1fc41a3ed5dfcc2558793e4f329b2d6f5dbf

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7dfdc159ac0d007359278e0bc606747d94c06d86e69d7a5d90d634e61aa55f26
MD5 b3f4a86bdec1a029526ae1ae1660ae57
BLAKE2b-256 7e5ea828f5cd4874f2f2844d3de50edeb231fd4037bcfc046f874b1988f36883

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea9f3e4eaca33e3725c6bcd97aa5a1d757c0d7f058610a95294f3d367f30bd6e
MD5 14ad2c1a73651f419325593b68234bde
BLAKE2b-256 b943d501ee2e4428b2821e90d4274defce1b0717d3c52e1ea5d4695867394962

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6b79744543dab9b1ca27a1bee1aed169ef4ca091303bfe73d09a4392868932bd
MD5 229026f195ebdd902c03ef7e5177ff82
BLAKE2b-256 09b55eb3a8bd48f69ed67f28080a4f6c243f3255a5cd7d6a556ce2634e4ce919

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c709faf9fc5bab04cbdb560c66d6764f9395a31ac162e37407db247742d4357e
MD5 3ada939cabc42df5bb7056709a3218ec
BLAKE2b-256 d0d1111a321e6bccace94d64a81ef4e4792333b9e0e56da92e27c488e07e09bf

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b11009910e9dd677b82ef57ee69a7e8fd83391705d5b898b547fe5c3bd6b9a52
MD5 b6aecc917c7e2209224cc17275b1dfb0
BLAKE2b-256 a41fe23151f1ae2fdb85772194eb4eb52795994ba0fcdd1d98a8500d760146cb

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 542b732821113c7168986e9650b88b8fb3e31ab85b205813f8d27ec02baa85a4
MD5 a16e48cf8bc6f9ca528969489f356839
BLAKE2b-256 66b3930786be1f025936bbbee41baaeaf3883c0ab8fa8570f8a1967be88055ee

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp38-none-win32.whl.

File metadata

  • Download URL: pyfcomb-2.1.2-cp38-none-win32.whl
  • Upload date:
  • Size: 162.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for pyfcomb-2.1.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 ef3f2e54e99a239cdba0b34ddc4bcedc6dbc9a03769e29c25e5b1ccf6cb9835a
MD5 a86b4663711d710942f1b570a35244d2
BLAKE2b-256 5355c175ba38c4f75bb6d500d009cbddfb2a66f286dad27b37495eb6f6ea0295

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72a9b8d537fa4bb6865f723dc66d9537890da7033f237065d0f8a37e3b7c6b8d
MD5 621d050d34fb27ce828f8f1af80c6cb9
BLAKE2b-256 a5f55d26ba4abb16fe504299526216007e16975c2a3684e5c9cc6ccd9564f474

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9bcdfda1bdc2a5a06aa93ee1d33d83988c11d1552c2bfbfdb4e995863ffb3e7a
MD5 fc11a18f3e828bbfc6091a24dc125643
BLAKE2b-256 9383ce7465a66b2b12f0490a0df2d7b598194a33518a5281418e9d0757d1eb48

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f16795a02010c731735cce031dcad5fc99847124a414053dd4f73e7aed40a86
MD5 cd9cbb73259a9b791234f1409f829076
BLAKE2b-256 98dcc011b43500f3b1ad7d1fff73e3a028e63aad7028d6b4096352a9bbb5ca21

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3538beae434088938e6ee6ce512ebb86cd28c0d4916ea369b86c6323d9a94288
MD5 289dbc851a698d8fa57211865f3355f3
BLAKE2b-256 21ab4cd5e9264a295255e983a544b79c94e3901ad8fffe47294800db59489d0b

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73d47583cee4dc08bf94ea67a3c7d370dcb498a5dc1fec8ced7544d43833a777
MD5 177cc5d2d49d2e5f7f12132e68554cf8
BLAKE2b-256 9bfab54a9389eae7243e3d117646c91bb5c92d7646f0ce847ed212da39606355

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 14121f42e9f26014cffa7396681a4263dddac0db2b5ed641a875ab318b12fa82
MD5 b18245231f35620f6447a8ae34e59578
BLAKE2b-256 c08956f46bc5de1df68e1adcaf8dc1eb6722fc044856a914f6745473dfc1f2ea

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 b739ef64acb84bcd0d16e25bcb362fe150d99a7e57fcd4c68bb21bc2c3998647
MD5 b55ba59f81a27a21f323e27a91592254
BLAKE2b-256 a50b17331df84f3a48322d9c15f11afd74e7e59450ffa1e2871150cadce664f1

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp37-none-win32.whl.

File metadata

  • Download URL: pyfcomb-2.1.2-cp37-none-win32.whl
  • Upload date:
  • Size: 162.6 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for pyfcomb-2.1.2-cp37-none-win32.whl
Algorithm Hash digest
SHA256 afe7855a6211f0cdbc5cdf5cc8720ad2810680f60d211f8372159ea819a5bae6
MD5 d85bcdd27486d54ed771f9cc751b6c2f
BLAKE2b-256 a3b2e37698830dc4583f4022488889d79b944b432b09222a6717917fc05cc3c1

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc9664d5518ca1768165af0488fae4a3f077796b448bb30b03d3246cd44f0379
MD5 46ed603faf1aaa74e2ab96d211d7ae53
BLAKE2b-256 bf21ee0cdc9339e90f6a0ec67ec2d335ad52a5fd24fedf50a94fe438b9fdd836

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d582d143b49009d860b9ebacdab3e6e3fae3ce3878d555ce17d72b54ebe9550
MD5 a0d22f05c3515661d20573ec0f083a62
BLAKE2b-256 2253086990c00dc744440a46869ba8dc226afeab337c47649dc9ee2abb1cb414

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b5b18690da8e2eedc3f1a7d687aebf9a1a95ab866b9daf34d60fe65adbfb09d8
MD5 d6b1f4df398ac6a405d02e74b6f9e795
BLAKE2b-256 d605ec818195d96f6ea39c863d91c19210cdc937c4f27593a16ec63d84d22eda

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae53de8baec78c9c82c3cc2ec9f482f1fa1c1617dfda7e726ba4dd095c9cf942
MD5 a7a3f770f3a101b449295361c5519245
BLAKE2b-256 95574b08a090d8c08fa97e08f6687a42cb9b176c4247624b231aab7290a1cd09

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe44250b01172574f561171d06014d3c471cf573b340826dfabd4c1256441fbb
MD5 9bf91147e2a47c735df7b9b7df32ef64
BLAKE2b-256 4e66fc368e331c5533a122ddc54fd2dbaa92d61b7a9efea798a497e32ecea2e8

See more details on using hashes here.

File details

Details for the file pyfcomb-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyfcomb-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a67b413e83984a69fa3cb98dbe89181772b271d67fd7c710d6e9f777c131fab4
MD5 fd52c421c1aa94a7851c34aadad5b731
BLAKE2b-256 9b5c4e18e897e528c6670eeff47ef649a556cf773c209039800806f72caabc95

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