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

Uploaded Source

Built Distributions

symba-2.2.0-cp311-cp311-win_amd64.whl (24.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

symba-2.2.0-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.0-cp311-cp311-musllinux_1_1_aarch64.whl (35.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

symba-2.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (29.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

symba-2.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (30.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

symba-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

symba-2.2.0-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.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.6 kB view details)

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

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

symba-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl (20.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

symba-2.2.0-cp311-cp311-macosx_10_9_universal2.whl (23.3 kB view details)

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

symba-2.2.0-cp310-cp310-win_amd64.whl (24.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

symba-2.2.0-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.0-cp310-cp310-musllinux_1_1_aarch64.whl (34.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

symba-2.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (29.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

symba-2.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (30.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

symba-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (30.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

symba-2.2.0-cp310-cp310-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.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

symba-2.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.6 kB view details)

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

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

symba-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl (20.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

symba-2.2.0-cp310-cp310-macosx_10_9_universal2.whl (23.3 kB view details)

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

symba-2.2.0-cp39-cp39-win_amd64.whl (24.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

symba-2.2.0-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.0-cp39-cp39-musllinux_1_1_aarch64.whl (34.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

symba-2.2.0-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.0-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.0-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.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.7 kB view details)

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

symba-2.2.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (21.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

symba-2.2.0-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.0-cp39-cp39-macosx_10_9_universal2.whl (23.3 kB view details)

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

symba-2.2.0-cp38-cp38-win_amd64.whl (24.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

symba-2.2.0-cp38-cp38-musllinux_1_1_x86_64.whl (35.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

symba-2.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (30.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

symba-2.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (31.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

symba-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (31.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

symba-2.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.9 kB view details)

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

symba-2.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (31.6 kB view details)

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

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

symba-2.2.0-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.0-cp38-cp38-macosx_10_9_universal2.whl (23.3 kB view details)

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

symba-2.2.0-cp37-cp37m-win_amd64.whl (24.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

symba-2.2.0-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.0-cp37-cp37m-musllinux_1_1_aarch64.whl (35.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

symba-2.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (29.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

symba-2.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (30.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

symba-2.2.0-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.0-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.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.4 kB view details)

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

symba-2.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (20.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: symba-2.2.0.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.0.tar.gz
Algorithm Hash digest
SHA256 e3bb1f7b9f4018b5ce9fdf31c3979b142009c2b28e0e36bd91e3fb949a9c1778
MD5 0fcd60c01a895805af17e13769f09802
BLAKE2b-256 1247b0ab50ff62a934705469d456f8611466a08f205593ad659c1e9514dbce7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-2.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 24.3 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f19ab0b56a5043ad7a2854f473122aacd9de46e5e98bb66e2dddb96f5a271725
MD5 5b62fde28f217edc9f56948405ed1feb
BLAKE2b-256 04b80e569ce2190ce2ccd9cb918f664a57984f05c9c32d51031a0bd642a4e2d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-2.2.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a07a9bce88160601ee7ca3687b877ae31f35afbd61dcebd8bb5a10a19941a820
MD5 04bd2b9a7b9ba2a4d82a1226ff1bb93e
BLAKE2b-256 e0a27a6ac271791b417de6a44afa245f1574d0996443a55f6b2842a97d5ed7f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f5035347594e7747671e607c02284bbf05fa5f2274d8af2ca378a0e4a966138e
MD5 ff856c91765dba1abdcb56175837a2e7
BLAKE2b-256 0fd49f43ddfdeb182ea7dd49d670bf3400a3fe3a7d4e2763e61b055aa3778a20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c40e524e8310e2b9418b431bbb1d0f8fd7aa845f34effe0d4593c4f02c72850f
MD5 8d7bfd1ff17a1d3a064ba0c95ffab997
BLAKE2b-256 2e95befe482346dcfd982be637ee806cb8de3b0145fdde01a4b86248dfd333be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 672b3c778679c5c4b78b1294e7e04baff808024772e1142fbfe1025d8bdec0e4
MD5 295f7e11d1a8392ee267386392d7bb09
BLAKE2b-256 bf180b722b623f54c8eee9f6dfc73fd179b6f61f554fb0b2e5b4c77bbadc8e0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4dae7944b3794a262ebd3b7209b6ec2dc64108cfd873f479907db5065cc0ae1e
MD5 de0253d0b602d7963de41727f1487531
BLAKE2b-256 9ce8f085958210151af31a21f32ef982578bc79a548f1abe7cd9a1770ff1cd4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8960c0c69e037ac74894ad3f6eb13bdea5af788370a00250609d62cb96551d9a
MD5 5bb49ec132c08e34d9e5e6e95d3e0e03
BLAKE2b-256 9c5603bfcf6645069b8f40a06194c6abaf2863f94dc7668aaa6bc00d764466d6

See more details on using hashes here.

File details

Details for the file symba-2.2.0-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.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fd08b79b32d6a2cdbd3777af8a78d944d68bebd42d38ced63b6c9f58e4b2e9d
MD5 4cee9782f33b4b4fee6173a85e5cbbc5
BLAKE2b-256 eb42cc59669fdd8f0c35df7fba3aec1cb8f9b40bb33e7932c7f672b2973065fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36782242e7b041e0e66e19141aa9a81863253a183989b7d046b5ca9da981064c
MD5 aae299a582d01accc18e4308aa4ad7b7
BLAKE2b-256 88b6b7da0639aa76976dbaf6bd01be431f1170576d4e706bbc98c4088d96d78a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3461a41154007576f6f94fea272bdfd0ca7f31ac569933039c444c2f56b4e53b
MD5 59a5a3cad4f9f4c1933c467a36e434f4
BLAKE2b-256 cc083a7e535dd5f3d2ceb9844d51bee9ca3e904769817544b89aba070b8bc7de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9c78b6cf99bfda310e1f24bf469c60a77ffecd3112d3a170e7605d03955afbb
MD5 1855f90574bb296e2b742e531dabdcb7
BLAKE2b-256 61115d482076cdc570a3616c678ca1a9071ffd8869362c5bb34b1bf223857331

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bb831cd35fe64e5631b5efa5b22f12adbe8025d6fc22aba41aa511fb31ab6af4
MD5 5bc89f54f9ad750405339d41cb9e6aa8
BLAKE2b-256 0e9eadc5397d161a28a9b6408e9d0513527462e6d60587d29f79e0541e1d0155

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-2.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 24.3 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 709d3836c8a03ca7b346f07d62f8ee20144bf8280702b2fc34fb4d73861cf95e
MD5 60f306a7ce07a82d7c8b2d70776c5d1f
BLAKE2b-256 d968de12734fa2d01aeb68d18ce74169d5d783a006cd8f977dd5e7d2c2039a86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-2.2.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1472ee0ae675910baaa36b66c168172ce29fe78ac54b4e6d757bf7300310e726
MD5 7b20ec25dbd5132ba5c75580c70af81b
BLAKE2b-256 363b35b63dd983997fe38eba223fe36b51e5350ffb5f1f4393b3f8c1915cb0b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1c7cfef2dda3d3a6234655cc0fcfb0879b32ac9d21059035effa33be071ddb51
MD5 39cb2960061321e03d51524addf2fbf5
BLAKE2b-256 43d26e509aa4a3af1c832a1671606100aa7a29e9d0a777722c6f3d18506c3586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bd4cd49a7ad4b94964291742d3bad45f0e82c813e050a41a4ba4102e4e830b1d
MD5 feaba64789fd5b9f4ad4fa0178397edc
BLAKE2b-256 928ba46450d5031d25806be530eda7e754fe8fffa582580641761bc00e88fa84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 36afae7ce83d47344c10c331b87a4bfcc98ffde7b7b47b661160f26643701035
MD5 6e85ab0e62dcbf3e0bebf9ab4ceaefd1
BLAKE2b-256 e7e0d1a642f5f2420060149ffa6467c8d82a8669666e6ec36088f79f7ad520e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2f89885237a565ae5c50d1904e116ba7d7a66b3a3c4e4f122cfdacb6a96cf20
MD5 10ce3b4af37e4ba90ea2354e4fd5cfc5
BLAKE2b-256 927f9d0a0a81ff1658ccf9861ed2886e2c8007e6d558127e6cc1b55e2e6bc9b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51d6720c474c91bac8c8f7595019d8aff2224e7813fe200114db5bc14d980df3
MD5 d6f849e23fdf854010db9decee166bdf
BLAKE2b-256 abea8fc6e2ecfbf100935a7d140237f2da18793fb2c74dd5ab30ebbef12e41ec

See more details on using hashes here.

File details

Details for the file symba-2.2.0-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.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 132221cd37feb47e227140016e3ce2a728d9f58da2e84e7f76abc759d7e769fd
MD5 87f53e95c8a56220d88e2ff3c830426d
BLAKE2b-256 be095d58032af19c0e205f1c53835d13a0c9780c41a00e4fac866a944137502b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 34c654737b74442552aa61300d8e73567bcbbcdd8e47cada1da88c80c09ecd44
MD5 f5b64614fecb9786788c4ebc0189148f
BLAKE2b-256 beed9bbb50f357a34fb13ad55c29ad36fea485c1d49537ee98d200a05edd4984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46826c40c87fe6add1cef4a1ff013cfa78c79e39692fe5b9cb9789bb28f4e476
MD5 382499c54c5cb8db772df77b63583a23
BLAKE2b-256 3becce11a4969ad2dec0b5038207024d0f850bfc122bb61d84f1af59f0931726

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62d827c673dd71b3f7f19883e7e5fafadc3724b85f45221cd2c9f977c038c805
MD5 3b8d1f3ac5b42aa893f0ce41dcebcdfa
BLAKE2b-256 e72829ac86023d3d0324d4e91858531fde272fe44b9259f16897fd1a0f00553d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 eefcb067b5c141d37a811c6f0122cc27a038b0d307626935e025fc00a5525244
MD5 da77552870206f07cfd2ca0c401023f5
BLAKE2b-256 995db3e3962368dadd4388b1198dd014ccdd438257309bc928d2942218f47f48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-2.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 24.3 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6ef73c8118ca394181c4a6bb11c16807b715a6129d0d26f986412fe17ab6575d
MD5 f015e0cbfc5a5855de1f13854bd8f44a
BLAKE2b-256 5ad2aeb3b3dbf3a54c6afe54d8c4e0ede664cf404d5225841c80ab7e72f8387c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-2.2.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7584eb2565169b5567588dd7d627a9a9ddb2668737f9f1a738d24abb4373bf34
MD5 464764d881464dae793c237a97a3e96c
BLAKE2b-256 380286b566150d30bf3ffdb405b71445ab5042be1ba001e756441b34db406f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7443846b2a7804dee2cd10743f88e19e2145cb852f0f3979a4b41bd126ee4db3
MD5 8625275f7095d3fee2591bc62b3b4138
BLAKE2b-256 bb8e25c0d866fccbc560c52453756cce460272cc4805cd2aa83ee85773dd5dca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9232c096bad4115225b1066cf0be9ce40a1e099ca04ab046195449a3db8b54e7
MD5 d2b760f0a185715ca3e3b76685cd1efa
BLAKE2b-256 a441b7bb7b51775e65d293cd8a9700796480d6c96064ddcde68abbc86bb42763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6cd1b25955779bbfba4c751f70d7ab7097b344428a487bffab261d20c81b6b38
MD5 542072940be6ca1cb22e880eeb154930
BLAKE2b-256 0ffe72dc2471d29a7fc28f4aa0e532bed2f2acc019d91a06c8196156e1a73545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c9c9d237e9c914efdd89e4773e4f4e174843726a10ec7913e4f0fd86128b428
MD5 469d98d8f7d816292af06ac91b56116f
BLAKE2b-256 8d2a0fe002c791fb70c3dcda2ace9be0dd0c018fa606eaf8c5faefa6ebf40314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0919ab84d631a76cfa1972dd53dbbbb6b3180b703e54bd9f8f546d0e36f17b95
MD5 7b8eb5c7fbe138850095aaf70571879f
BLAKE2b-256 8496d3af82607d7f03b6ab65d7a6b4f893ba64a97dc70a8556bea6c5142a4312

See more details on using hashes here.

File details

Details for the file symba-2.2.0-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.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fabcf388def693f91e68bf320505824bf84d05e2fcc5e60fdffbe95341f86bf3
MD5 e52e2fc23c1b967056b5ea5d39cac7fe
BLAKE2b-256 e3445ecafeecec1523e8b9451a23bb56687c86fff0710a1ee3457f699fc8c1c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b374b888cc90c876f5b899155d8734532570673a4918561dec4634d802567a75
MD5 a385b3336f512a30bf0f42094605233f
BLAKE2b-256 33852e7b04ec6decac3438304200a58cadd6b8f2023f1a409144b73c3e9ad255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 694c0e9d6b27ae4de3a9faaf2479c8ff15c20d1c5ebb5f59d966c667620a3c53
MD5 966cadead82e119c069878dfa0d4b05d
BLAKE2b-256 cbb529579c48e74719ac842277470ff40c3c1a756cfc962edb813b6f6f087f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e48bf61a0bdea1d2b9ae721570a883bc2b332040ecb8995fa4662d6998b78cb8
MD5 06259b6b1bb2a798d472e14a9fdb4b63
BLAKE2b-256 04436bd188c20d5f844f54553563c15d11efb8e88fb4f128ecdc236d15f32256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bceb1fd4c958c29cd94662cc14d4f3a6d7a2eb2bf05e7042661fff4d7abf0537
MD5 0d546dea841a3ff471bc158b3fd4ee77
BLAKE2b-256 f301c67bcba914f018ae83d0b6604455dac252ee142d3d3a9cce1ca9a3cc5b2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-2.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 24.3 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6dff3ca7375951fab4311e704392b971699cc4503a98af7418cb6489f45a6e84
MD5 dca9a9aa29b918e5016d50484d9b867f
BLAKE2b-256 722ef1e688064e3b199bb2e80b12f9259bdb26bf4df4cc96ae6f5b0dc6e3735f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-2.2.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d374398fd1285a4e30432096bf4c9118a4420aab683217702d3e43dc8939a506
MD5 04753a8797c32fbef723efb4e67c9bbd
BLAKE2b-256 eadd568bdba0ae7638c814b626ab989cbad298bc5be66efdf7d196874ee7dbfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dcbea09bbe5f03c82aa85a50097dd5e00085fb91c58bd48de28d05ecaf8dfc6c
MD5 e3e462dba541f81660121d0a592cfef9
BLAKE2b-256 dc32454c09de5c2d6945ea1f8341c128f2ec5a4d66c5682b7758b9e706c71e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7e3540e09cc9f48e0b5d631af4d881857c180706a806a6d5d930a6f777f48444
MD5 00113db878e172bb62cdb771ee43e17b
BLAKE2b-256 6f60c04c87ce1bdb8ea7e87a0de110c8a7a5bbdd0b6ed027320cc993df800b52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 41f016acf5b20d97dfe843505ff9dfbeb2f834c0123e06c595619b99b57cb727
MD5 70edd56f9368ac9edd092f74d9724ebb
BLAKE2b-256 3e1472921330563aa64db84d18d36a47546150a79d5a2279dc03a10041adf887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f04809e7c1951c8d84f5ffa25435445db5bebbc9be78ed4bb19bcb8223c8151
MD5 9e2a1aec1f3b608fa5e2d7633c24d609
BLAKE2b-256 63c8520de169797d2303962352be25907502044138cb97aa9301d5ce8cbeb129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4db9a8436a1dbe036c971fadb14718aa2e1e246f592a86f8146bb6bf30296821
MD5 a0cfe9d7e91b5ee1b65d4fab000a9380
BLAKE2b-256 cf877076e86012b32229757a7f4f46ed39a09766a35aa89e340820aaa87ce072

See more details on using hashes here.

File details

Details for the file symba-2.2.0-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.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8debd77a9616a0bc4bd4c5bd074fdd3ef0c335149b775f34685a94d19340f809
MD5 947a9e343a0b97f19dfe36d096a3b0b2
BLAKE2b-256 70c188c1b03f2d5fb68b4f714112fe53f5e9f22a5f522cc9dc120293a688658d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e58bb6b1072d314abd07e63fdac1760edbb9522866b9b651f994c3d10d505a2
MD5 fa24bb752e306b9d5f7a910a699724ad
BLAKE2b-256 44a9cb10672ca48bb8470daf158cbb5303cf276f93f7a8a22e57f01d5021741f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3958472c1067e4cd9fa6836e9cb7e6bdc19e98eb0f164063eea6c12814c77969
MD5 544930091e8c3ee144c3a4f93ceb15ca
BLAKE2b-256 9b23ec8dea025116ae9569a314a9c5f64bf58550e6eeb7afa23b3c5aa10d1da5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2059b94cfc79177661c431b32c3360f43d557225e913bb794d34421b06d44f37
MD5 8291a6a6a9c64c6edd254cd5c5a2a137
BLAKE2b-256 36f5ec1bf9d51a494ba544ae7b682b0e8a067bcd1fcd861861e8519915f9303e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4900d0dd27346b8fa8e9679ed1b6e156d475bf9c06eff1d2cb4a2f6125cd9ea6
MD5 e07984ea9914f1b050ee0f0c200ee795
BLAKE2b-256 fa0e5cb088a1a6164e101e0b12bc3e96e22b5d9da8e20875af7f8607fd7b1220

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-2.2.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 24.3 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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 54c3f2d87d4bdcba441bef2b5b041d1d4853220e12fd82dcca5c11633bff883c
MD5 b6900dfa65f5ba666c3a48c3eabc469d
BLAKE2b-256 24fa2d14adc8e6a7ec2e137e9ab8aaa0f5563662f73456be64d1dc572d70eeaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-2.2.0-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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 335964063acb2d1871886182d8c8d970eb4d9e71da05480df4083691d4778581
MD5 78bcd3b95676247bf2d2fcb378da599b
BLAKE2b-256 f98878595fc44b9812b7679858974cf2efd3aab98239ec9f861030bda11fac70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ca0abc05ede4c8828cb90fa3c59b1aa1bdcaed9793e875702f1c7d2c3e97b75d
MD5 fce30edf3341e0cbe8f3df8a9351362a
BLAKE2b-256 be18e478d4cd88a0631106fcced3b9555c0fc0515623a6fda4c283c79c184d5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2ca61769fe0a841c89bef9572e89840d25b93b77ea1c7422b5bfa49d0028a5d6
MD5 ea51e6e7b7f95efbcf8c52db44d6d4b6
BLAKE2b-256 f7617ec128d2da541088a37a9e391abac7806a67aebfc2cf511035c4cfeeb49b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d637f9180ab512d03257f5929c288d0da37ca259fa4ac6d132cb887e75387761
MD5 5cb31aebfb46f4e2873a907ceffc0b4a
BLAKE2b-256 e928b9f1ba545c96a824f252ce2314465e8642800d499c34a338c8951c701f07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ff57809761b33620d0e90ffc571eedd071dc797e3a253ba170193ae827e66f2
MD5 bebb8e0740648258f1ee16d9981b9e4b
BLAKE2b-256 8c753f66a4041feaf47efedb9b5c2d498152cb231ba0ca7c42cc3e691db92012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7da906ed2338cac65c9626e00bf24e57d882807232be745605550a0b8acfeb1
MD5 3f8e4f5be728ab454d86e13bb3a4d408
BLAKE2b-256 981289544f9cf0542135b06610dee8e96dcdfab328a2ba26b6c29fb2d3d0022d

See more details on using hashes here.

File details

Details for the file symba-2.2.0-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.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ac41bb6ff2baad78ca09005f8f4f59d95e2e85d3f641b296acb9596a2a85415
MD5 9c92b468dd8afd691128b6220b7db01e
BLAKE2b-256 6ab4dc3855d028e303d7569463b7f105cd00f735fb5d0e494275efecf95d61b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a1772b0ad58e38b4d9aece575f3388ba563210d968939211751c15bbac91099
MD5 0cdd7de278f581d15a989ef354430b1e
BLAKE2b-256 e44afa82db6e67fef7ebff95a577a65b33815c6de598f5e5468e0e4328b349c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-2.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9eea86241e0266a0bd2e50f57dc14821c38de9954e52495739cb16ebc2c0d7b
MD5 b23c7bbc1a71a55b5826c2cca8f58fb9
BLAKE2b-256 344bf189c5343892191db46ea5e963f33a1ac192f3c237bdefb6aa71ab5f4c24

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