Skip to main content

No project description provided

Project description

symba

In what follows python is an alias for python3.7 or pypy3.7 or any later version (python3.8, pypy3.8 and so on).

Installation

Install the latest pip & setuptools packages versions

python -m pip install --upgrade pip setuptools

User

Download and install the latest stable version from PyPI repository

python -m pip install --upgrade symba

Developer

Download the latest version from GitHub repository

git clone https://github.com/lycantropos/symba.git
cd symba

Install dependencies

python -m pip install -r requirements.txt

Install

python setup.py install

Usage

>>> from symba.base import Expression, sqrt
>>> golden_ratio = (1 + sqrt(5)) / 2
>>> isinstance(golden_ratio, Expression)
True
>>> golden_ratio * golden_ratio == golden_ratio + 1
True
>>> 1 / golden_ratio == golden_ratio - 1
True
>>> def fibonacci(index: int) -> Expression:
...     """
...     Based on:
...     https://en.wikipedia.org/wiki/Golden_ratio#Relationship_to_Fibonacci_sequence
...     """
...     golden_ratio_power = golden_ratio ** index
...     return ((golden_ratio_power - (-1) ** index / golden_ratio_power)
...             / sqrt(5))
>>> fibonacci(0) == 0
True
>>> fibonacci(1) == 1
True
>>> fibonacci(100) == 354224848179261915075
True

Development

Bumping version

Preparation

Install bump2version.

Pre-release

Choose which version number category to bump following semver specification.

Test bumping version

bump2version --dry-run --verbose $CATEGORY

where $CATEGORY is the target version number category name, possible values are patch/minor/major.

Bump version

bump2version --verbose $CATEGORY

This will set version to major.minor.patch-alpha.

Release

Test bumping version

bump2version --dry-run --verbose release

Bump version

bump2version --verbose release

This will set version to major.minor.patch.

Running tests

Install dependencies

python -m pip install -r requirements-tests.txt

Plain

pytest

Inside Docker container:

  • with CPython
    docker-compose --file docker-compose.cpython.yml up
    
  • with PyPy
    docker-compose --file docker-compose.pypy.yml up
    

Bash script (e.g. can be used in Git hooks):

  • with CPython

    ./run-tests.sh
    

    or

    ./run-tests.sh cpython
    
  • with PyPy

    ./run-tests.sh pypy
    

PowerShell script (e.g. can be used in Git hooks):

  • with CPython
    .\run-tests.ps1
    
    or
    .\run-tests.ps1 cpython
    
  • with PyPy
    .\run-tests.ps1 pypy
    

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

symba-2.2.1.tar.gz (18.6 kB view details)

Uploaded Source

Built Distributions

symba-2.2.1-cp311-cp311-win_amd64.whl (24.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

symba-2.2.1-cp311-cp311-win32.whl (24.1 kB view details)

Uploaded CPython 3.11 Windows x86

symba-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl (35.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

symba-2.2.1-cp311-cp311-musllinux_1_1_aarch64.whl (35.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

symba-2.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (30.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

symba-2.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (30.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

symba-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

symba-2.2.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

symba-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

symba-2.2.1-cp311-cp311-macosx_11_0_arm64.whl (21.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

symba-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl (21.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

symba-2.2.1-cp311-cp311-macosx_10_9_universal2.whl (23.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

symba-2.2.1-cp310-cp310-win_amd64.whl (24.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

symba-2.2.1-cp310-cp310-win32.whl (24.1 kB view details)

Uploaded CPython 3.10 Windows x86

symba-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl (34.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

symba-2.2.1-cp310-cp310-musllinux_1_1_aarch64.whl (34.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

symba-2.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (30.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

symba-2.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (30.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

symba-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

symba-2.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

symba-2.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

symba-2.2.1-cp310-cp310-macosx_11_0_arm64.whl (21.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

symba-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl (21.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

symba-2.2.1-cp310-cp310-macosx_10_9_universal2.whl (23.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

symba-2.2.1-cp39-cp39-win_amd64.whl (24.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

symba-2.2.1-cp39-cp39-win32.whl (24.1 kB view details)

Uploaded CPython 3.9 Windows x86

symba-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl (34.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

symba-2.2.1-cp39-cp39-musllinux_1_1_aarch64.whl (34.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

symba-2.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (29.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

symba-2.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (30.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

symba-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

symba-2.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

symba-2.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

symba-2.2.1-cp39-cp39-macosx_11_0_arm64.whl (21.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

symba-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl (20.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

symba-2.2.1-cp39-cp39-macosx_10_9_universal2.whl (23.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

symba-2.2.1-cp38-cp38-win_amd64.whl (24.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

symba-2.2.1-cp38-cp38-win32.whl (24.1 kB view details)

Uploaded CPython 3.8 Windows x86

symba-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl (35.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

symba-2.2.1-cp38-cp38-musllinux_1_1_aarch64.whl (35.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

symba-2.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (31.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

symba-2.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (31.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

symba-2.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

symba-2.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

symba-2.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (31.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

symba-2.2.1-cp38-cp38-macosx_11_0_arm64.whl (21.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

symba-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl (20.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

symba-2.2.1-cp38-cp38-macosx_10_9_universal2.whl (23.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

symba-2.2.1-cp37-cp37m-win_amd64.whl (24.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

symba-2.2.1-cp37-cp37m-win32.whl (24.1 kB view details)

Uploaded CPython 3.7m Windows x86

symba-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl (35.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

symba-2.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl (35.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

symba-2.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (29.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

symba-2.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (30.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

symba-2.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

symba-2.2.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.8 kB view details)

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

symba-2.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

symba-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl (20.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file symba-2.2.1.tar.gz.

File metadata

  • Download URL: symba-2.2.1.tar.gz
  • Upload date:
  • Size: 18.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for symba-2.2.1.tar.gz
Algorithm Hash digest
SHA256 10dc78f6d4c409dc05a6106b87d26487ff75bcd0404de0d41fc42c969b3669ab
MD5 fafd7d8739ce55546859439ae3624697
BLAKE2b-256 0d1256650f6823fab56168fde366669a1597db77c7a0a3ceccb63a8436d4bfbe

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: symba-2.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for symba-2.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f850e3624aaf87989e91d950a31429b1fafc588dce4310b13d4375bf29f5cdd
MD5 435f850a2520a1a3fa82ea3d23b0d226
BLAKE2b-256 82c99367f77cbd821ff99031405186a50f003cb3161bba0190607eebe7187ee3

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: symba-2.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for symba-2.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b0817c74ac1109c1a22053ca1591b1b3689649310c011f2f055c34b0c32a938b
MD5 937ef9eca81388133714b1d91634e5db
BLAKE2b-256 08553a7b3ead5ea0eccbf1bcb734dd5ee1af077b09ac7da1f08cd4c804135f13

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cfc8c2060375a5451c7221cbc7a5dc69e1d86349ab8279bd52431c9b6daa37b0
MD5 0c885ad8106500d2fb84dc4de3fbb977
BLAKE2b-256 07b9632f1fa8e08a95208e3b0bb29473f10a8985ac04cba8d3b0f34494d7ce42

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 64d356632ea66287298774479019ea28d53dc7c200b7423a3a3e29eeba716654
MD5 0f5096d6c7769ab71f7f5a49df6ced2c
BLAKE2b-256 5012a3791ee12c7f770012de72aeb3aaff4a1325b65db1b15d2c85d356508b09

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96e054eb92297929e6f83bfb003855e076efd36199606a86e6137dc1896e5b24
MD5 56e1d1a256508891eef828de761bd7b9
BLAKE2b-256 f07275e4afdfc2749e17885b239e54158e6f0c1ab711a8bc8003e0a51a294603

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13c60eb8323a0ca8fecd12d4c07e23d37c8d0fbc62b0e0c366674dd2c1012c9c
MD5 f78c96e6c0177cb128ab6d1545d96872
BLAKE2b-256 715d5d2db26a844d4919291e613874a4c6cab9fcf24d323892fca4002680c3f9

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5d9c1fdd1769e9fe473df89db389207662501e51cda19fe4e4e9ff94b478480
MD5 cefc96a6ede2305a2a87bd32be5180ac
BLAKE2b-256 6f23cce91969a5c2f3542b7e07d7d629e8441c494dff82aa1d39b503417069c2

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dd0bbe322c1951bebc0bf2fcd9b1b90825acee664f5f326a8ec3f513f40a1b2
MD5 3ef6c46dabb156eda5a91e7a6dbcc393
BLAKE2b-256 45408a7f3484d78269cbc8af82cf4aae7b0b56e8e1f25b81744b775662e5c390

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad10bb99944637269ee560475a857b2b90e07a4fe037c3350991023ced99fc46
MD5 01d47be277ae21c9fc23002dd0c24fbc
BLAKE2b-256 6207a0b58d1e537630ac9d3f4323aa2d63da56c5e85dd718907fc4ff4366f067

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bda9f9ff5261fa9c75b1f85221346651fea5042787a0a0b2e1a5767d64cba46a
MD5 e29382a5bae71c6f1651dc172726fa28
BLAKE2b-256 108ca370205e45bd0faa4589586c320060280607326cb87479f94ac1fbb89512

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7dbc4433908f54d300e1b22b2bfcc74e8a70fc37fa990a059799f46ea8c754b
MD5 9c1cf90d2ad18a9733bd059c5fd1933f
BLAKE2b-256 71c82bac9a1a266044178258fbdd0f292103bd4b26af0ee2ac5c8120ca608042

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c6fba71a0a35b30b4d7e218b472940cff32aa7ef29e67e7360225e69991e0eca
MD5 3ad3264cbaea0dd8aa76e36b1f3dbd7b
BLAKE2b-256 9e932ca8fe14cf2ea02c95e4f267f482ed1fdae1ef97b728c70967e3a71666ce

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: symba-2.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for symba-2.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7cf8ddfdf3ae3553f9e8d1c8d4a8a66e2ccfd22aa6c820cccbcb939ecabcc659
MD5 dfbb9e60558a19daca6def9cf88cec8d
BLAKE2b-256 47df1f67b55c4266b95308aa42c174b486e4557fff97310c76b11d186f55f511

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: symba-2.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for symba-2.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 58578d9c2ec9d7011f2fc64afc14731ec247019343d1899ee0201886146a9ced
MD5 680cdf94f09f2a76dfc7a44db2f2071a
BLAKE2b-256 5d75639989e8e45e4b2dec09b80a3f6a3c276e2a992cbd33c58b11ff32fcce3f

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 da6c0f8bff4df329214477a7c3f03c542b8e1195e32bf9b158d90cc7c6a72961
MD5 21d4d436774c8e6bbc7d42035a69661c
BLAKE2b-256 4f08dae3112deb9d89eba12c19bcb147cc912ead47821ddc7fc3e7e40496d974

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cb2e061fcdc2a45a27c74b2e563b831159a58a1cdd21d3e28b22a19d4b4e512d
MD5 6d7219d8f5c381eb3dea4f21634f7342
BLAKE2b-256 53141a2ad8d7b7621e8c14b2a6fa4bd7f947bc14489a4aa74a8006994b778aa2

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 111346deeee6dd3e39504e2fcebc3c6b16c47cc6823520c4314d7744965ecf6a
MD5 049918d768557263fa6ff739bed9f72e
BLAKE2b-256 645bf0979971848f923c6b0b5e90243407183e59b001210a37fc3ada7fad67ba

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2b78d0ce9111990a0139e9e6da72137865e5a3702611f150fb1036d6b9a106a
MD5 0654158d23752e4d4eb2413c163ae9a9
BLAKE2b-256 48b23f5739b54eb76f163a63910a24209b7d041888ce77bf1df9f1b1b3a75b72

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7003638e0a3078eb7d25b9f3dceeba7cb7f7aa944fb7170f88efbb1fc79de969
MD5 96acdd846de93cc3114ef998b009d733
BLAKE2b-256 79a9241f3433dbf3d0d54437f3ff4582b4d9480d6412664157d6556e1ad7e030

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d8a57d3362ca3c2e55bbcca84359c7eb3eb27deb0d729d6aed368c9beb18aa7
MD5 a49a9cdc2ba6be7e11b83535cc0e80b4
BLAKE2b-256 0b44c7ee0f513b65defed92820d1ec64e89fa8d7e9bbb3df03c679c38e8501cb

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b0fd5ce8126d6e977f269fc621a06b2892d5f4a11e3b15390893814e79492eaf
MD5 e01c91c138ed83254aa9a6b77f2e335f
BLAKE2b-256 eb17338ff9095b307dd54de3cef43b421579c0e41137b3b2dc5632d3868f6000

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a24aeaef37155c71de523c363b870b59b390cfe2a052516f6a5af2e342a65ae
MD5 e0b4b8545abbb30f34f528d258fe986d
BLAKE2b-256 0af46aa25745a10afcde85818fced5e067c6b02609fd8c7df838c3dc802e9e03

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4761b579711519060f712ffa82b522222e25412d61af1fb247ab519d4becb06
MD5 4d3609f3669e9d2776a6eb8473ff1bb5
BLAKE2b-256 3cbb40933cfecc9bb8137d90c55b9b1869e1019eb4d75aed31dbb3d4ea55452f

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 77f8ae5517d7e7cfa8b962b9be4fa899d443614867ca4116a6579dada7583b34
MD5 95ce1d9fa8d5d7116ce9bec57a4289d7
BLAKE2b-256 ae0b90775154ab38eed1599d95cdd53f84b6a971f5b5918ab253788f9c01959c

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: symba-2.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for symba-2.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c9c4298ecdb718ed415ef6b037545a42cd842a244501bbd6d742ef933012f7d0
MD5 d74658018fc11c233b21b47e901f662a
BLAKE2b-256 e4e1e79586c528678c798e957f10a93ed6ce03a17b40a50b30f24868421444ea

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: symba-2.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for symba-2.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c76f53972e0fea0336c1050d35e9d78edcff042492a74301787305a9327b8247
MD5 4ad30ca8a995b77636b8e589b6ea66e3
BLAKE2b-256 f8c8d201b4cf0d1aea701530c554da9aa9a624bda85c3e334e5c0139da2ac147

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b58b8b1ee321298410e4842ab208af5ab2a245e52f3c5a923a5d3b24fb402ec3
MD5 1b55971c8c02ab12ff1dd95e21b9e7c7
BLAKE2b-256 142c477add2bece4869bb8e0c41b919e9775a6314e4a6bdaf168ff9ef4ebb7dc

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d30e7b000afd9dbd73e76746823f40302651b55e35b361616b5c7da8d4c3d2e9
MD5 b981602e1c2adb778847130cafd9506e
BLAKE2b-256 4c4a020696cb06a7937d8093baec46f0a99528daea668c3cb260bdb730aa492a

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ee6cbee03e3312abf814928f38e43cf5da1b536e4b476e15f4a39ae177e4d87
MD5 a6d6f60bd8f31bee87906751647de456
BLAKE2b-256 977979287d6d4668f42ce300370bef9be2fae26c6fba82db8dd94844642adc25

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f1423fa59a35199a43456d53ebe6f70dd41195adc63c271993fe12cb41bd506
MD5 d2edf415c481b612861a694203caf2e0
BLAKE2b-256 8854e01aa8a6e0ebabf312b570e8bd6edba6d091446b56fafb12264f5c75722d

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61e094078a8f1251835679ea3e9a41a535de52e465a4e59e625a0ef8b216b45e
MD5 b11e4442726913e04ba5c22ab6d00dec
BLAKE2b-256 cef28a748c0b259aa9d3ee1d3738f7ad9ec2f0d617817ac31708f1accd42339b

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0667fa8641b29ffb6e0cdd44b22bf0df59cc64fb84f1e0333c4260e13051f8d
MD5 f0fc1a79251bf924cce174f25e69973a
BLAKE2b-256 54ab3a027c72137f05b93b2ddf4a9c1282e2df95a7e42d49453cc5445b8b1819

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8cab528a4d60cdd9d5c0e215c150cb82fbb2c61ecefe72fd39a91d9000803de
MD5 1ab9f2f2f1afb235e197d95b631ae5c7
BLAKE2b-256 0ff56e5fff8a02610b03f13e846b73a36807d43d846b6203a8c15986d5656953

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6faa7f799b789f60097563ce61d08abf9c8914a102251021d8a070819abfd814
MD5 41a10bbe008171a3107d9ff919533c04
BLAKE2b-256 ad94a78f203add872d265c2ec73ca3059ac59fc6308fe4488b56e759396c980d

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b4670d46a6c6a9551102d46ddf347002c63c39e6def75161153fa9d2ea913dc
MD5 5e9656ee1cca7cc285be0354e01fd4ad
BLAKE2b-256 08a02a06ec7afb04d989d3175d96e1d3adba2c63db8b06cd595920d7e874773e

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5d6ef4ccc067300aa10ada99f614d44c743217dfa73d27a468174750570aacda
MD5 5824c33de4c34e5a360951e23949c4ff
BLAKE2b-256 d94e63aad271d96dd6a8695dc598442cfe970348c609b758cff5ddb39fbf3667

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: symba-2.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for symba-2.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7d09935702115302de1301996812e30c4b214341676267c1b1dbbc8315b4a724
MD5 33ab6cb88937111a1546f1d391a30bf2
BLAKE2b-256 a462c5ba4bbac33bc584e241b08ae9de75d30282e4981d53c47430d38852f336

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: symba-2.2.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for symba-2.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 da36b779b507d8cca275310803def277c7cf09b074d473653d21bbd1c8db4738
MD5 212b2dd89b5db2e9689169d6741f1cab
BLAKE2b-256 13fc8201ae6ebaf4091bd677041c2bba83745b8411459b673c793c6dc982ce9e

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c6f903a1290dc61bfc45ce240e1655cabb68063b5a494269d53104ea499e987a
MD5 b12ba6ee3ee5818f45476b6206a27485
BLAKE2b-256 be0055063d9eaaf3adee006b0582a63aaa4740c0cb3219b7957764e0ab2e0619

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f6fe374b12bf02b5f3ad2757546ef127959eab1c7d19dcfd61c08c1b3e08ca10
MD5 73a959bbc300f2d0b091ebc26e6c1980
BLAKE2b-256 d87ec1497700d5aa8f77816d67d12cafd923907ab67cdec12cc1ff1b4f0668eb

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08a95d2dca6a5a179dea8c001cb22c73df1b980d11ea5be0e7cc8e2aaf9b7dc4
MD5 4c668fb29a61c72b34de5f3b414ef17b
BLAKE2b-256 1e970fb4daa40ca89f8eb620834fe4b7a784c97868500fb123f52698e74eacaa

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ac42f717aac87a270288655cefb2779172e0608da2538f0423b0936364e594c
MD5 f063d10e26d457f4057d21044e266cf0
BLAKE2b-256 902eec10e903569d1c2981188dafac3d8af92107190fffdb1dee895ff97d60f7

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b427810f94daa927e1046a384dcd0e802bb2ee0869088f93ccabbd0ae320e66
MD5 aa244b41fefe3b08f667ff2a5a76fc8f
BLAKE2b-256 d3c7da112cd0698dbea9ef998912cf0726c5f612d000b5e280335f53d624c3c0

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3a0b7c3cbd2bde654a46fde6642beee482997ab2120541df2a793cf1dc579c5
MD5 21ccfba81c9c80a38608ad1fbc4e9bfb
BLAKE2b-256 a67ca6e4a222f1b6d2631fc1c51df45f88b38b3dafa7bca11e2d0b92f0671e66

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 447372848a351e0fbf9c6a635b7cb74b8ff6cbc86a3b8ab61b1fd96f6d1911a3
MD5 b1e700374c47ed5c032296386d95b5b8
BLAKE2b-256 eeb9e30382522042c628aa24dd1470f69339d02bb532daaa6c30331f1711e4e9

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b9891c824c32baeb573628209b9fb0ba0f718a640dff7a26e9a39aa5aa07305
MD5 9558dadbcba8c0457537d8fa528c507f
BLAKE2b-256 a07aae775154b02007aebaa31e3ada82dbe2cafde5d3693dd099b0702c02af72

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d25b8cce3beb89c531518ba3a9caffdf24a4214b2e99e2bf94ab37ac7bf2d2a5
MD5 e2d10609e92eade56f51cb5014cb7ff1
BLAKE2b-256 c8c01824b01ad16acc146f25072d95af49a5590dd31a8f1397be7e5e52111b5d

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 68066791f40e39c7fdb7b6ca329ff0c46448538a7713cd106d332cad6b4d33dd
MD5 0f854a47494aa359187dac40b005179d
BLAKE2b-256 321684ac92f259cc95645c7cec27eec3ab8574a7c1b783b5a6b226cd1cbff8a1

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: symba-2.2.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for symba-2.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3698c8537bb52034e54c2f93e404480708b28bf6457ed987ceb65b0243832e69
MD5 0297b92d152ca8625ac5f56e013afe67
BLAKE2b-256 0e4a8f338d482e6dd4c7634f437b38fa6c072f62016b422cf8cfc2c9c766861b

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: symba-2.2.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for symba-2.2.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c413de06eb09cc5f48b4a5e056ef320d0caf48565b2c359c60c160b9ef0c2932
MD5 b7d46ad097078fb9560e1dd336f7689c
BLAKE2b-256 8f05ce86c171e16bd5aecb94c7efc068345348871d40643b0dea02ee23491008

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 490c08c7f9b76f81ad36b949690841ac758555759072019adcd9388b1ae3212b
MD5 28a148695ea7bd96f56a4c8df2cbee02
BLAKE2b-256 446799d2767725277e1bee0a4ccce27752249f488468bd74e1796f704078c551

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 de75b924d4552f0c9161ea5ab4e18f3e86d6f7abebeac394996cb65015e91045
MD5 72a631a7d5bfb812f6f2bf94d5ed9aac
BLAKE2b-256 8b76dec90af4cd608f617dc848b4df3cf0bc1ae26119b47a0925f408b76490e2

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b077771f40a5a1bfe708a4c82ea4a8c213f2a1d9ddb1e81ae1f7ee1d8f25afc2
MD5 8bb3145f3a093e8c170f0abd365b747d
BLAKE2b-256 74ed8440d1fce7813d556f942cae2911ab1fb8739b70b8782544f23849a8eba9

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6219ad53d475d71e91d7a572bcf37996d94c00edcb5a8f94fd750c09a9b4d09
MD5 895209786d99a9191a093a7e12449e01
BLAKE2b-256 d102e47d6e2e7623efa94641032aaf182bd2637317fd0e0012865c45907af288

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f263c02934cd2d0798777ba08eab4385eb4f9d55ae2c0ab751292f1de423d8dd
MD5 85f29a2ab3eceee75a26d087eac295e7
BLAKE2b-256 c26c302be8bc2297abb56653fd03b0220750125fa956b15e8d609c8461c49731

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db29121f12f1ba2bbd17821f6e5ba3debb05f8650b6e2ec2b4ff49afbab449a6
MD5 50b5c8d004a63c44300929d3288f1966
BLAKE2b-256 dfae631b17a0f5cd07a7509e51635b8550961c083bc2f5870fedc7a2078c7fc7

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 369aa3129c9b1a9adfa6918d81378e1442dde800d0d12a79d375a9ca9b0cf71e
MD5 54af11cad2b5900d19c3428ac32f520b
BLAKE2b-256 24295353fc3a84a251836054f7bea66fbe17e9dc0bc3dc509f3ed496b0f3b85b

See more details on using hashes here.

Provenance

File details

Details for the file symba-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for symba-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a09272fdccd58cfe184316bb6c57cc8fa2ea6732e93fdc4cc93e5f2716fd10df
MD5 d73e48c6b1a29598bcdaf64d2d9558a8
BLAKE2b-256 9838c35516e9c24f22025cf87bc345c34474fa0dbd5786f04c1c9462a560c3cb

See more details on using hashes here.

Provenance

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