Skip to main content

Symbolic computations.

Project description

symba

In what follows python is an alias for python3.6 or pypy3.6 or any later version (python3.7, pypy3.7 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-0.7.2.tar.gz (15.9 kB view details)

Uploaded Source

Built Distributions

symba-0.7.2-cp310-cp310-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

symba-0.7.2-cp310-cp310-win32.whl (21.9 kB view details)

Uploaded CPython 3.10 Windows x86

symba-0.7.2-cp310-cp310-musllinux_1_1_x86_64.whl (32.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

symba-0.7.2-cp310-cp310-musllinux_1_1_s390x.whl (32.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

symba-0.7.2-cp310-cp310-musllinux_1_1_ppc64le.whl (33.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

symba-0.7.2-cp310-cp310-musllinux_1_1_i686.whl (33.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

symba-0.7.2-cp310-cp310-musllinux_1_1_aarch64.whl (32.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

symba-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (27.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

symba-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (28.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

symba-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (28.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

symba-0.7.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.6 kB view details)

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

symba-0.7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.3 kB view details)

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

symba-0.7.2-cp310-cp310-macosx_11_0_arm64.whl (18.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

symba-0.7.2-cp310-cp310-macosx_10_9_x86_64.whl (18.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

symba-0.7.2-cp310-cp310-macosx_10_9_universal2.whl (21.1 kB view details)

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

symba-0.7.2-cp39-cp39-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

symba-0.7.2-cp39-cp39-win32.whl (21.9 kB view details)

Uploaded CPython 3.9 Windows x86

symba-0.7.2-cp39-cp39-musllinux_1_1_x86_64.whl (32.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

symba-0.7.2-cp39-cp39-musllinux_1_1_s390x.whl (32.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

symba-0.7.2-cp39-cp39-musllinux_1_1_ppc64le.whl (33.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

symba-0.7.2-cp39-cp39-musllinux_1_1_i686.whl (33.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

symba-0.7.2-cp39-cp39-musllinux_1_1_aarch64.whl (32.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

symba-0.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (27.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

symba-0.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (28.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

symba-0.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (27.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

symba-0.7.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.4 kB view details)

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

symba-0.7.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.2 kB view details)

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

symba-0.7.2-cp39-cp39-macosx_11_0_arm64.whl (18.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

symba-0.7.2-cp39-cp39-macosx_10_9_x86_64.whl (18.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

symba-0.7.2-cp39-cp39-macosx_10_9_universal2.whl (21.1 kB view details)

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

symba-0.7.2-cp38-cp38-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

symba-0.7.2-cp38-cp38-win32.whl (21.9 kB view details)

Uploaded CPython 3.8 Windows x86

symba-0.7.2-cp38-cp38-musllinux_1_1_x86_64.whl (33.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

symba-0.7.2-cp38-cp38-musllinux_1_1_s390x.whl (33.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

symba-0.7.2-cp38-cp38-musllinux_1_1_ppc64le.whl (34.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

symba-0.7.2-cp38-cp38-musllinux_1_1_i686.whl (34.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

symba-0.7.2-cp38-cp38-musllinux_1_1_aarch64.whl (33.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

symba-0.7.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (28.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

symba-0.7.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (29.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

symba-0.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (29.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

symba-0.7.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28.6 kB view details)

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

symba-0.7.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (29.3 kB view details)

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

symba-0.7.2-cp38-cp38-macosx_11_0_arm64.whl (18.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

symba-0.7.2-cp38-cp38-macosx_10_9_x86_64.whl (18.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

symba-0.7.2-cp38-cp38-macosx_10_9_universal2.whl (21.1 kB view details)

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

symba-0.7.2-cp37-cp37m-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

symba-0.7.2-cp37-cp37m-win32.whl (21.9 kB view details)

Uploaded CPython 3.7m Windows x86

symba-0.7.2-cp37-cp37m-musllinux_1_1_x86_64.whl (32.9 kB view details)

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

symba-0.7.2-cp37-cp37m-musllinux_1_1_s390x.whl (32.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

symba-0.7.2-cp37-cp37m-musllinux_1_1_ppc64le.whl (33.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

symba-0.7.2-cp37-cp37m-musllinux_1_1_i686.whl (33.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

symba-0.7.2-cp37-cp37m-musllinux_1_1_aarch64.whl (32.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

symba-0.7.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (27.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

symba-0.7.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (28.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

symba-0.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (28.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

symba-0.7.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.5 kB view details)

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

symba-0.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.1 kB view details)

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

symba-0.7.2-cp37-cp37m-macosx_10_9_x86_64.whl (18.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

symba-0.7.2-cp36-cp36m-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

symba-0.7.2-cp36-cp36m-win32.whl (21.9 kB view details)

Uploaded CPython 3.6m Windows x86

symba-0.7.2-cp36-cp36m-musllinux_1_1_x86_64.whl (31.9 kB view details)

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

symba-0.7.2-cp36-cp36m-musllinux_1_1_s390x.whl (31.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

symba-0.7.2-cp36-cp36m-musllinux_1_1_ppc64le.whl (32.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

symba-0.7.2-cp36-cp36m-musllinux_1_1_i686.whl (32.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

symba-0.7.2-cp36-cp36m-musllinux_1_1_aarch64.whl (31.9 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

symba-0.7.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (27.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

symba-0.7.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (28.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

symba-0.7.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (28.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

symba-0.7.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.5 kB view details)

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

symba-0.7.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (28.1 kB view details)

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

symba-0.7.2-cp36-cp36m-macosx_10_9_x86_64.whl (18.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: symba-0.7.2.tar.gz
  • Upload date:
  • Size: 15.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for symba-0.7.2.tar.gz
Algorithm Hash digest
SHA256 4a6f9610d89c97b3ccdb1d783a615b20ef524dd979cc58dfad6aa36089603882
MD5 c310e1b9c6b67d3ff6bd737b0e06ca2e
BLAKE2b-256 a0c6deb26b69b236cc4305f1358343a93538de0276a66e7ae846c28438bc29ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-0.7.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for symba-0.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f092cf8904f284cee66e01f4bbd7b599d21e90c53e036324b1726715b5632435
MD5 100dcdaf92e67bb8d4d16dfa010c3f08
BLAKE2b-256 cbe7d48c7c0a37c2249139fe0b214a16a01624622d2dda65a8af92120ea2ac5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-0.7.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for symba-0.7.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 917f0be6364122a464311d6ed98884b74211fd066f6d10d4dec7705dc1ae98c9
MD5 3dc5c3244a4fd33dcc462f28614ff437
BLAKE2b-256 512af6466c4b9f83fe10d4ed7877908e60d679e5d7164ffb26f5ebc044bc7de0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3b7771e2f3d5d0f878bc5e23ff1ae13c26d84317234c7731b1fc4eee319e6e8c
MD5 d593145fcb8251009e717f0679c6adb7
BLAKE2b-256 3d2833b66b6af9c3d02ff7039a270f89b3ab50dfb4273a6f7c409deabe48d2d7

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 22230ba5b572c568a1b8400130f2094f39a68643e15c4dbb47c5664993d41723
MD5 781c36bec4c1b6fea19fe0fbc31afc69
BLAKE2b-256 0745b2e92fdeb5f1fdd1499974cae2a4ddacb2005fd12816f28d861dac05b562

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 cb531f72853107a8d12909baf6eede42311db85c20ceb3cd29b7fa8df30a2743
MD5 3c254a9ff5311ea956e17e8c7711b497
BLAKE2b-256 8495e31b85984121f03dbd3a67b6124e8377b05a087c7cd9eef05f3683070b8d

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7096be2e91837255f9174bb486323958238caf0cbd5774e2fbe302ef0003fc5a
MD5 7b21f28b0041d4290deed2cad1ce5855
BLAKE2b-256 256253fbb546f4810d69b8c757ffc952ac5396444ef187e0801244b2af167555

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0a5699f413a477d3a64ef91eac688a6283ee17b93df869567f25e3f18c876f04
MD5 1258ff956048ab87ef60619512b70d1d
BLAKE2b-256 1690eb411849f7783d52757445b47ba348ac35f524857120d0c12c84ef8540f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 382c6fc482f356e0cfaa5cbbaf6f311da7277ed402797ac666c8f31571f311a1
MD5 d6ccbf8d5692147fc4b99ab35959fe99
BLAKE2b-256 b84c5b061c81cbad4192f3befb2adc7d555b4965847808f2679bfa2f070d6acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e5ddc7a0610326cd346a06ced649605561f3f8c998c1d50a74d06d787d7164a
MD5 0dc83ec44634a2819c8530f6de7440fb
BLAKE2b-256 53b7007ba94bacdeff98a102db3091cf169662d8e29c2a83b32d06f20c3d2ae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90a35a5f76fc24694484677fad360e3399b5a970a406ee8dbee9a67a19406615
MD5 3b1cb2564f2438a666e215a330735585
BLAKE2b-256 6f4542a9e3795ae29777498caad4297b4c66a3a4445c61f86983c06673afd15a

See more details on using hashes here.

File details

Details for the file symba-0.7.2-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-0.7.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9201b8befc0bfd2faa792c74c698c32589473628de82619eef5152d88f5523dc
MD5 9998405fbb0e41dd89625ddd74d92679
BLAKE2b-256 3bc807344aed1bb1a07f399a6128f6466481a0e73255f8ac06f6b4a6bf81997a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 63413524d23a23410bf4159a4933fc183464f1875ef405ba0b35d7f631686c0b
MD5 de5da4e997f926fa2249fd656fbe501f
BLAKE2b-256 a691565c6da3ef29a235ce8a6c778f7939342636e429ac33f225b0bf96141c50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 249389d7ae84d17ea430dbc3cf536e9c8d961372b3919893c43aa7478faacb16
MD5 3508f84ba1b3338e7b1616e6906d7564
BLAKE2b-256 844ddf8754f6a84b51175acced371b6852477bc80b519097979357f2f9dcccc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b58b948b8f63cee0d9c651115010fac2166c95443f2aed505b9aa4a30ddef3dd
MD5 3ee029da6d8f0195a17052160d9e17a1
BLAKE2b-256 8d387246fbf45a53a3af7b6ea0d7a45e5d5b9915d656394a2ef6ffe31310fa12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2a485056dfcdedd312bb47bbd7f60e98da17a26e58e10041938a0075e2ddc168
MD5 4582454e85cc7c4680d970177eb3eded
BLAKE2b-256 1b5aeffa77d2f19caee79bbf51ee05bf341ee32d889f7e26be21330cd0d7a046

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-0.7.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for symba-0.7.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dd9accd57cac69d79f43b98171abca9daaf93b33c80a9eeecf7b2d769ae3edc7
MD5 19d83bd0a38ad9f57f4c2e26bfaf3eaa
BLAKE2b-256 7bbeac1c26df4dd530e22a68f3e2bd118db58e76e748a69ebd5244ee1f86ca3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-0.7.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for symba-0.7.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a6798c1fe2995a2f2c111f753d4bc87d5811fb6d65f0e24b50381cb1310e3d09
MD5 11195755b640b8596ef4a301aeb1e356
BLAKE2b-256 7779bbac96cd5997adc8c3fe7894e7c2a7f2dff3a28f3c4f5b10772a7f0fa77d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 53418366c0b3a6b673d4ca20395717df391db819b20715a40cca4d2391edd008
MD5 b55b6b62287e8957dde5ba740890a9a7
BLAKE2b-256 00e9afbfc98c94a125b7232316343c839f4bca43c1e985d817d67c1694f17ae8

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 a4ccee5f544ee57b624fba6e7b632b988ca93a8632c0572dd8f609b89161243e
MD5 9f2d4c80296a7c061091a415c94564c7
BLAKE2b-256 74300796961e1535d9278cc384c2fff3a2401c60a89e3978c0c81c54758637f8

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 fe55781a62faaae1dd42d3c68bd68192066c708109e34176cf40f3a1f3d441a2
MD5 49bc5d1b0f67ba1b90d71465a7d1f90d
BLAKE2b-256 b2807060978a070b4673c9770dec51242615b5414ebe188eb94fba786b939e50

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bc74bfcfdbd02c51ae14f93d15d7a551f8acfdcc41cab99757cef1179c760a29
MD5 fda6b40c83403e6cf3140eb3f34e0936
BLAKE2b-256 a17296d1518d571984109816174871af2065b226ff3bfd3d5f72001a0e65f5c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a5fbaa8fe2f8690ead389ae61f1fbedf8bd5a5006fea91e52a0da2f15f1e3b7b
MD5 980080844d0bbb18d9466aef3af4cc24
BLAKE2b-256 58a7cbddcc4b8b62cdaa21f8d8bc89069f23a58cfa25dbc7e957d3d1b3a262e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f238be0eb458643860df67010c9e7a6b88bcc821d3aa32a53a315f83ccf710d
MD5 c1fda875c7fd827800c84ebeda30ff24
BLAKE2b-256 eb1a0e7e4c4017a5d7bd520d3187da4f5342f124856077f2857d3ea7ceb508c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67de2f5c0e2bfda714aa9f5c91df1a28756a5ca0157294f05b962498e2c5d578
MD5 32caf8c3fd722fdd084c289b28563e36
BLAKE2b-256 e04ed0283ed6a832b6b52489d135eabd6a4c4f5e9185a975f69051d45e92d7c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec340f04293d5e14d57078ca8734490711f619c8d3cf2fe2babda3106221460a
MD5 94f53c89966b5e16b53aabbf063733d9
BLAKE2b-256 e151ed3c6f4bb9ff62870ecd7a1d966a5d632f0fdd6934bb1e1b189b99ca4825

See more details on using hashes here.

File details

Details for the file symba-0.7.2-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-0.7.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d14f17d39bd82f4356a6dc2c36ce72012fcef817c000016956a070328c4a3fa
MD5 3d1f7ceb1b4b763acb61817dec8dff34
BLAKE2b-256 66d9d20fea497e40229a8ebff6366d68a79787aed74abd5af54213fc46c510e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4af8d35e5a6edc2b39df101cb9344590234427dc82e142bf3e0711ade27e44c9
MD5 f7f0411e02755b93b85fce6e3ba8432a
BLAKE2b-256 48adced0cba22f4e116feaff06209117b2647a33509a41522c642a5fa8ec6631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e44e1b98049051f77f668f4def3f0527a429e1e3f63e717d8daaa0a9d3772d6
MD5 e5fda91e81e148be8806bba6606147a0
BLAKE2b-256 ce5debe780976fbad279809524d58ddc1f2455907aa8c1e0067e6d4fb08df5a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 914e8a2abf1a0cf49f21683bd08647dcd45bb36e998d72577a0f6dda01224606
MD5 d1d4893929635277779c61cc3e1bb1cc
BLAKE2b-256 3925d28c31386777d1174422038359add37d4e90f4c20613e4f841bf27473065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fbd4d147fc18204d5b14ffbce4950d7b8d557c0c592b2d127f75802333216156
MD5 35de07aeb6710eea4be89090c7aa3a0c
BLAKE2b-256 c75a9cf88ba2a5386835e7a6e976503222e421ba197cc5ba4a8fa98856bdb4a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-0.7.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for symba-0.7.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b63160e035ad4206b3c86dcae7b0c05c9b0bfe82e67a39531fe826eaeb76d10b
MD5 248d66f763ce473141e56cc6b849a956
BLAKE2b-256 c34b4bbe82bdae0e04dfe2e0443c344003afaa6326227f5f212f5ca7c3f4bce9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-0.7.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for symba-0.7.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d8c102b54ff620054ef7939c33fe44d03441d32e021ba24db9e0726ec7aaf017
MD5 b59a7db5e1afcec9a9715cc5b9cf324b
BLAKE2b-256 7ffca5a1d62d1a4d03233f6d1597cbcd3e903af3b43800537d41889da657582f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ce38162c029dc1655e9fbda45143579738fa5d65ae15a177d498709ea05f8ff0
MD5 f189e59d11a2805b07cfa754813284d9
BLAKE2b-256 28e515c11fb2dd40539cba33935097fc7e4cccc9affd8b6ae4402d45ad256984

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 cca40a721d2ffdd92b8736dfb66dd495dfb0526a693c8016ea96f8c147998553
MD5 011eede9246615c8d41c7a1706b3cc9a
BLAKE2b-256 480af7f196122304fcc84668cb89e240a20ec41794ea33071280fd0f82d46142

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 c3785370ff0eac84f7535d2bc1a497c120bae93faf902ce1c7ad31fa56ba3caa
MD5 669765fa264d24274eb4de1f34e6d546
BLAKE2b-256 986c7f26e35d2bf3053b52e331bd7d07abb55dafc22c7f30ecb0614f3b4e54f9

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 20fd25aab7f48fd7933bd9fea6003975c68affb8fb7bf2a02832acf701bd3fd7
MD5 0412717017eaa9cef8523057648c2632
BLAKE2b-256 7f23158e390746d1e0a072a1f971cf7ae382b327728bd648b1ef122a8ca21d1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6d965a24c61bbc320938d34dd9a0cfc34159d4c0b4f04ee8eb00a37a30c9198f
MD5 523709a6f43d28de6c91d5c7cec214e1
BLAKE2b-256 262bbfcefb853c61b7b768067fd9660d91db102d693fb2fdd76903034da92f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab6fbded8bf59ba85f103e3d9c3587be405d05df207beeedacf8640d2ecd6383
MD5 e1fb08167bc50e3d6d881c334895f991
BLAKE2b-256 db442216d023673ce0492eb476e05ce1bca6aaa482acd1682825df8043a51a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d8e3e989ebaec1d20d45c03956c7da63166449630ea1c2dd4929c359ed79042
MD5 ace05aa5829e4a43e03ec12c8e69f73e
BLAKE2b-256 e15044ae7a7223f44ff2f7062697e9a28b2ccc2907fcef5797ae47daebfc2749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 feb021c5bc73dd10ce74e6c18d7b0a9dd49bdccbb31ac53ad49a2948178fc6e4
MD5 f1f7c963c276676a6c1b1cfaf6d09f6c
BLAKE2b-256 daaf800f3aa75e95aa8aee1649f2ca1cc3755e5e1ad6ef2439eb603290cf0f2e

See more details on using hashes here.

File details

Details for the file symba-0.7.2-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-0.7.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6b4da7df57014e871d9b1babef7359acc9b3d7cc5d458336c52f268d28aa4f7
MD5 ecacddb1f14ca236c89377d0ef5fee73
BLAKE2b-256 a203a84f187c5d796cf1dd748b094f0f7e60968ded1f0d06938b4275aebe48da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 40e951f73c7e6dbeb5efe00b514a5b03ca0a14bdb28daa77b6c0047991e65f7d
MD5 c85ec43dc0384a6a7a862c145c95ac6e
BLAKE2b-256 f2bd083c28b53ce6f213f11d2f343c5d07fa8eea4f3254d02240d569308b6a45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e300fe13f98b6a5b4c7d711456c32a9a16f4a334fba9f75befa43d7d433e3062
MD5 449342c8ac4b1f6bdf255bfd9c85705e
BLAKE2b-256 cd57197456e3d170f05b24d4e64851208f494e8996daa93daaab95be008e92f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f054744b54fbdb00b724a0027ec441474a817042dd4e85edc2d6bcd13f6216f3
MD5 390bb0806df6e7d6a32eb0eaffc14c6b
BLAKE2b-256 f9774ce2f34e59b63b34529ccc006f2b08b44d174c429c6440ff647f36cab53b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9860055d95be19ba78e51e2ef6c27d376457ca5309b042f29f44409bd8d38a5b
MD5 491a82ea99c5dd058c76a5fc38971cff
BLAKE2b-256 117fe83f006aa1e3ceb5a01035ee8eb43cd958e1ebf9aacadd82b3c62c7d4add

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for symba-0.7.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 07c75b70233730bd9cfa20b59c58b4345bf5d38d424e9e41fcac243d53ff0f3e
MD5 77b9e48779f6d3387965fc9fc91a5ae2
BLAKE2b-256 d5bf6737e1e908c7c9a3cc77d3ff65dacdbcb244fd50379c3d82e0cd79c68e8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-0.7.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for symba-0.7.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 faee52d3b25e00a986fca8cce47854c850132d3631d6704f6a993791ad45f317
MD5 6c66e5a0f6e781302e74903951417d8d
BLAKE2b-256 699e19a47ee0f206f29f9d537b4e7fadb868222e7758b27662ae688432c911dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 510bebbc2a5f9d44de2a16a2aa2dc8a092f146d660f142927a559aff6bb0331a
MD5 ad2d099baa92e93caba43ff3b4130fec
BLAKE2b-256 d8f2a06b81f763e047c0264e5c48f9ea33fba35375499a16b9f55a1ef90f26fa

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 f96c4b357de15bf14de00a31236b582943c5cc8ab82d84c21a581906d05978ce
MD5 4ce7d511280932fd47dcc6cfd8f30c1b
BLAKE2b-256 5d1ddb48afe0c7293243afbf85785c4a0aaa8c90c658aaf90ea29acf7c5888a0

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 0e3b82e8bf88f791ff95012dcae4d001da871fa7a300f0d673399a1036430e75
MD5 221e361e76e0c0211e8c2d84ceaa0948
BLAKE2b-256 a2962e67f76cedb3dfd00a6426968a75a10b34f2060139855a46aedc194f40a9

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2f3ac8d4a5c7e4e46d0f34c6e4cc64a75c97ccfc133e64d96e0cdde81f103d68
MD5 9076847c2e56ce96498034a79b6b45d6
BLAKE2b-256 cbc139fbcd70c1d247da531bd9fc1448f6356a8effe4e17c18de7febc53524af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7810ea02caedcc6df9c2cfd652c54c9ea7dde69bd5fa5b4cf0d071cb256b148e
MD5 2ca408329d3d88c3a68e678ae43a4778
BLAKE2b-256 382e3b9694e8344f7e66d6f5d885c981c706d0b5f8445c80d2974e70ebc4b4fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a18ba8a178c0c667463e3f345401268f83e3a14d44b2249bc4727f7e1150b52
MD5 6804d67d6aa0e81d5ebd3cf494765d43
BLAKE2b-256 2cbb2182afa98c5526fdfae2ca4ba1270fc8c96bf375a57859384d40afb698c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36bf6416f02c3e4ff3b9de1e3606beacc0673a0987601ee8f0b84c1a72c4b089
MD5 41c76c9ac8690d6c0d428b48d33fbc91
BLAKE2b-256 2b37a044bb499192bce314d5e26e9b8809f26a0e9c86ce49ed83c4fa1228b84c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85f6ef68e94f85b5f42779597074d885ad3df6de02741152f630867880aba124
MD5 0c142cf018a55648cbfab47e5a16ad4f
BLAKE2b-256 07792d5b2f43c38bab27e58d0e980e8ec87c73f43e260f5c7d7607df67fc4494

See more details on using hashes here.

File details

Details for the file symba-0.7.2-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-0.7.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb648dd3b9b8a336b32169c5f7e4c59dff704ef903687a0190d03b62e6db7e55
MD5 2d03ec282ac1dc7a44e0e9e920724fb5
BLAKE2b-256 7ae94e5572c92c2f49e887f69edd1818222a274a1ef7cbd52f43a97d7a775df0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70a9d9f354a0a49daadda2ca415cf4626ecebfe889453adbf377114746d3db68
MD5 fdd431a7a64c868c6507e9c6714f1e92
BLAKE2b-256 52ff4c26cbb8ff246adfd89f1896a5d42c87ad3118483b704e6da89324c69187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-0.7.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9582848f04014160a3511457e3615bc7bad3dc9d400ac95521cb945c35cb115
MD5 afd275a2bba2167adc0a0bf7d3bb9357
BLAKE2b-256 53cc6f021d3ede18e4796a7c094106456db978743477127520878dbe4e7aaca1

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: symba-0.7.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for symba-0.7.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 64316a895b5675c4a861dbb6ad93093a678d7f9c8d31cf103ff09fd9b3bb55f9
MD5 8ac964207a651d72d3599c6bec058d18
BLAKE2b-256 dd07f9a275c757410d5e5aec37d53fba84f9c8656cac8f042c29a2d4878abe68

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: symba-0.7.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.12

File hashes

Hashes for symba-0.7.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 80c5e9c663fdb07a143b3a39d3e34f42c6af338206ca6cc76966f3152bca23b7
MD5 a03d3fd92cf6b8b395385b9f0ba2af92
BLAKE2b-256 83f2632f0a5b6700c74c87fc22964fa0f7357df20283fd5bac81dad8328af33e

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 788f2a8cd316a24492740e6579197e5de50a022b9695b3ddab5102760958497b
MD5 d0767e28831b1c5fd299bce8e824698a
BLAKE2b-256 85d9be1c0eac56f1f00191f1980456e10c675edf497262839b27d55b2091d26b

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 63766ecbfad3d04f43db4bed900867cd3f65ce9e96d00380af97225dd9b022cd
MD5 f914f43b9de9cddf344f10bb65b994db
BLAKE2b-256 484c6c20edb39f702eb7940848a915d82d96c68bb8e51c60522e0698c2f44950

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b8dc8caad83fbe079a94c509e87ad249830ced32a5a7be39e8d9cc9f4c4e73ed
MD5 074ed4d0275beb5beeeff40c385f03bb
BLAKE2b-256 94ebedc8e7c34cc0243b33dcc657f1ba44bd18c3defb464a84315cbf7bf682af

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0ec1fb7dc68ef1babf2663f78944c366c495ea4745b4237c84f9acda57f29c4f
MD5 0a6ff5b42b6ef6a4d58833ade3e5a27e
BLAKE2b-256 a61ae3c6b5ffd0f4ae2f1eec7f3b56d588793befae05962a408bed99f1ac1147

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3d2060636382da2e63981d2d9560b3d14140e7f39006cdb4fe72aaf90f888457
MD5 c394d539496f43eeb92509c9f588f758
BLAKE2b-256 e2f32b0f86a3e510164b82e9cba26fc0431177fef9b68832ffb1d6f777830eba

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 207851c054878c295a7ed82a5b6a42f5efabc68122a2d4422ca617e38fd1b2c3
MD5 c5bca133ca1805bf37184cf7b8847499
BLAKE2b-256 114b0ec5a2edd5912ab8ceec5f9204d13fc6a104d2e50e7f4c13b8d79a9ba586

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bccae4406d970a48f1beb68afbaec9e94ac552f4bf19f463b83ebdac72bc5e96
MD5 d7d1cf20ecaa7d82bd443eda2a7f2c66
BLAKE2b-256 4a5cb99c33727533a62887c69ebb3dfbed0a5c2d45f01e6167c7cc2169235b5d

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 174b21374aac34658e5f2bb016de3ebb0cbed96a9c7096e44b48659cf1d6b5da
MD5 6abeea0bdc8e8025d229be50a9bf6e53
BLAKE2b-256 e72dc0affa1aa0a478f133271362d14932b7e46582fff76efb468ecf9ef08fa6

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75158df529b7513bf9757fb4940df488a2c3686ad9048b56d689ce3fb6fe3098
MD5 66854cd73e30c0ecec1e3196382d99c5
BLAKE2b-256 556c148859094e64b110609bf85aa5bf49c39a8953cf02a4a7d02ccec396db09

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d44f9d6d12e088ea8aa4115c3f1eede5a362681015f54df1802437bb586e2b77
MD5 1012cd1defb3d411e262d31072feb3b4
BLAKE2b-256 6c2a19b05932a602120fbf339e674387b50176723c5f848a67881982d3ccc07e

See more details on using hashes here.

File details

Details for the file symba-0.7.2-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for symba-0.7.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7fb123a9706cfc33ec300a13d911e5fb96584d3377961fc5c1f9648adc68d4f0
MD5 fd9e6a4c201ca8237a00cb4bc11a6e8c
BLAKE2b-256 0bf62a01c13ce4d78973c7e79d4ab6d37ee1752d27f320a17537f6f9af931d13

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