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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

symba-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl (32.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

symba-1.0.0-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-1.0.0-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-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (18.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

symba-1.0.0-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-1.0.0-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-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (18.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

symba-1.0.0-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-1.0.0-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-1.0.0-cp38-cp38-macosx_11_0_arm64.whl (18.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

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

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

symba-1.0.0-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-1.0.0-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-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (18.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

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

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

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

symba-1.0.0-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-1.0.0-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-1.0.0-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-1.0.0.tar.gz.

File metadata

  • Download URL: symba-1.0.0.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-1.0.0.tar.gz
Algorithm Hash digest
SHA256 71647e56bebe5929773e31bcc16b41c2f288dd657de7afba71c74a3a2b620d40
MD5 3b1c5efeb97663cfeb0452bc6d7e4cc7
BLAKE2b-256 407bc58dc2804c1bec36345fc02fd6f099d9b20b8e2986f121d6fd75414f23b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-1.0.0-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-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6fc2e5fb1de64bafd7687871e499d127f149ba02008689d9f990b9b0c5b8217
MD5 3dcb0d271935c78776e24321ae8094e1
BLAKE2b-256 d03e2836d2c5867e4a5102d67ade741b3d7b2260b868a06508f2cd0a6d581fef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-1.0.0-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-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dfa53a0d0aa017a3e417ad8f1e3f04bcbf714d89b132f8bf735adb3e57016598
MD5 2ec4ad1e9be52dd6194cf618990f82ae
BLAKE2b-256 8c83a239e5419431866cca7985a618950dd2e9d4cf8d3f785087eaa054435595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d661583dca035cfb31c7a2c12f94c1d392df270777262f62b6b5dc4625a27697
MD5 ac22b5b5f5e2edf5a3b1c895ba766374
BLAKE2b-256 b2e55592440c5d633329ebde59e8b9b5e2f8e920cf90dcd2acda30848ea0b6dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 97cb3206e54ccbca4d160bcf204686b25962b970c2e8abc6a7325662ad10f1dc
MD5 795384e520dacf4f037ef73261497611
BLAKE2b-256 0f3ee85c2f0a8e2ec960b11843c63e8fe53e7e1b940e0370490b108d484ac486

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 59514332a39dd790f08446afaf5054eb11e9c98041d711ab30d8d223780fd694
MD5 21e844c367f73f80f991d5ecc02a00f9
BLAKE2b-256 ed8befea037bd5e8a3b50d8cb02aad918d238cb4f0bf69e8179d87fef63ec83b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fa3529b101c1c9d25f5418439c98cba90b2da0cdca6378584c6c2c2022709a1a
MD5 2b9ac6a5632d2dacce33600c9c51b05f
BLAKE2b-256 25c1af1db8466dad08251a23a7e80b410561e91a8aaf215e54628380939840c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 083089a420f7e42f51974635d32f079a637452bc17756ec5411dcb4f094c71bf
MD5 f8587bc5664c7b944911b01a6fde25c2
BLAKE2b-256 e50cd037e5d982b3b4f91a45ef4a6dc0a1af813976f55171ce9906b1ea52f96a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd0a9237243d84960d9d76d3755a474527bd09d46e19ae0708002e74e8f88728
MD5 55cb0033230d0c425bfd8e4f7fc125a6
BLAKE2b-256 cd49f29061325214f82eb1ec866dca85aade2453ced743d404c9388864da041f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9258585d9deb63537f2d761bcae87d07737d75cc49b8e8c0ee3f11143073ed50
MD5 d76ba3ea4caa5314a3d4abbab6d3d2c0
BLAKE2b-256 20db85b83d90f2f943a434fa0063754ac6c1022118ac0528b3b0bcf8f7b4f7f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfd289f0cbc1e6e6c17b00d09725fd2d758a87df39ce8945656c080db960789b
MD5 b0d521cd03ca0039087de2457cc39396
BLAKE2b-256 c3e3d065d8e0acca067ebb471b9f543bb8afadc35665052b655d24598fac3e67

See more details on using hashes here.

File details

Details for the file symba-1.0.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-1.0.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0015b4cfde826f0337b8c75d4e7e9dcc1c1792a16ec9045199193c102041c10a
MD5 a63b15a5bd816dc0bf48ef24e8ab43ed
BLAKE2b-256 7dfc242dc3e2aeac96f46dd856330aff9936d118ed9171e6072455db72e96457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1a1be3c7d1b46b90bda81d57e2a9c245abbe982172383a9c475dfa8c2177750
MD5 6ba7d2d7a781ab03db6802157f3b1c42
BLAKE2b-256 2ddb048971e2e8740d86e72039e7bdfb0dca27a86d11c54342a198b95108a453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ee430d970ce62d086a0c8fcf65c8376b5dd244b8062cac8b3f9ff28e1ea20b2
MD5 8c36583823e51b03b1de9cbffbac6520
BLAKE2b-256 2da84b36b114c11db3bd9bd899519df1374c739bd0605e21ea66a466525ca2e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1a716dfc2948c4c53afcbff8c8f97a333f3fbbb3790b5280d8d4a5c236ab0c05
MD5 0df5a6769d871881a846bef4069f73ee
BLAKE2b-256 dbffd4fc7496f898f7eeb0fb7415663951f90f5dbfc37bc7181be6647884d24e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7525605c670c8d97ea6529fcb51f60f1b306759171dfff39867b46704bfcf736
MD5 2197023125f1db75462d241b744da390
BLAKE2b-256 aaf8df660aa7673e43faf266e18f5730404c7bd616da5a90603225b531fe52d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-1.0.0-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-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 77d584583673b733bcfb27e60f11a6485d1a0815d5769d52918e58791a2252f1
MD5 299736e4f9a14cfd65688bbae7160feb
BLAKE2b-256 6b881640f124e4c44fc488be8c9f5c989bf4509a5a3a166f698e6409f10cbf7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-1.0.0-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-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fb757d83806beaad2092b88126eb39bc82e5e067f5dc68fdb3313f552caa38b9
MD5 ae7dbb74317a6f2c92a11de53b4f6037
BLAKE2b-256 99e9c305e2559dbd8a4ff528d7cfcb26ce407f8327db9308cbf3ff0a2b207f1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d35dfe5d2b5521bb966a026b6b2a61f8831daa65e946813d634a5774c2451fca
MD5 963844857254590683941cc454021ab3
BLAKE2b-256 611fc3ef5806a2d856034d0c9418c09143257b86bdbfc56f28172914400456c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e7855d42986b2559c07ab0595370e4d55520b04fda719f72b403bfb8cf5c317c
MD5 dd0735ccdd7eac29de877f7e5e530027
BLAKE2b-256 c7534ce0e64fbdec605cbe0c4c13123af2f0e6d3676a03c49195feb922726b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 62684c6aa5320e8f42c4e1379c3c28bc2928999233f56aafe18b2e3a488167b3
MD5 6b32f8467ac48d3f532c254e1c8fafa2
BLAKE2b-256 22652d92c441243b46af560559d6522621351f442ea5ed2c52b35c81d3ff4ba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 039368ae2930f5fb0dd36d42c19374ebe38bf2a72167938ff2aa836b6fc108c8
MD5 668c6afb71710a533aa85ad2a3290bea
BLAKE2b-256 50c245d612c648a6ffa30f817286396795419f1924e0ee6da0f3228731e4e46c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3ee510b64bcf0073128576f537a16a8df7a67dd89201e52835d64baae5dde689
MD5 bfa43b59767942b3db5b21d049c4c45c
BLAKE2b-256 ba63dfe36643c69361e833ede72f2ba263f65dd0e7448ac1981079c98325af90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 12ef00d2325a503473f73d8cb9a21a8f7c5bbd12a3785533b482412100903f5b
MD5 ddf29298bd74475f2ad554cb9b5d8cf9
BLAKE2b-256 49748deea131040e788761a3b29b550c8be8cdeb9098fecb9ee0628bdf89dad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 84f2adf9633060e8276f48067ef1b4ba686a4fefbd4d341b029e29f1cd827002
MD5 01cd42c4e083b495fbba72dd0d59c98a
BLAKE2b-256 c184166601edeab42ef1e0d94873c71b8260c00a2ef74f02c70b007cb5c9b4a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15faa091d7c22f9d7e6da3ca59f3f21a90bd081a237f5457eb935702018af0e8
MD5 944c5d806ff7972da6e485a7453c6372
BLAKE2b-256 98ca5140d3e4816447df9d4f60dbe726a31e49fe150ab5d0d9c97f2c5d48927c

See more details on using hashes here.

File details

Details for the file symba-1.0.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-1.0.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 288478be68e33b91cc1bbe8f30febc7712f7b573fe2ec5882bd21777d6e4991d
MD5 bc581d42edc0e96d6bbb1d539f2a6c37
BLAKE2b-256 212caa1f3488f87557c2c22417404ac2209a2bfce5c4a5b78cdae1e8041d2d1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8fc308287e32a7a2cc6387873195a76f3cfbca848513238b7c3206affb3e937d
MD5 3877cb3a7111e431b1ad35c113cfed7f
BLAKE2b-256 0a77e23388b40db73a8df2ab36f5ffc2e9236da660ebbbf6b25a74d3409fe4e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c832576e1daf0c093361949c6fac36f5bdc073d10527039abc09182da732262b
MD5 bf253a2d323cfe2f99931174ccc06e7e
BLAKE2b-256 cc1f12ca6a7b30625ea37fb98fac0405f44ffb9d9e2475d7048ccf6548d672a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1dc3f95c3310124cc8bf595c5442675f4462bc93c6c906ff7deb6863eddec326
MD5 4458800c96de01149fa51ea36cdf49fd
BLAKE2b-256 57bbd7b9c73b63c4b754ac10bbe80ad30a69cd8aea7afe380b1aa0e7945e2c5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 000d94e86b521be6a6d65ec1ce8506f822cf6d62f2e2060759dfa1b1f6a3d361
MD5 cd11b4e25318e1173f999f2a2142980f
BLAKE2b-256 e2e43a44205cf68fc07da8b88febf6e0305699be9c8a3b93d82a90fb2f59bef3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-1.0.0-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-1.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 68609d72f1dcf19581d1c64456ecfb978f4b37174f675d404fd552580bbf32a3
MD5 4824345ada1346d91d1f9e68128fad6a
BLAKE2b-256 619b8c1fcd8f550484fb158a4ec0d19cecd632e87f80bdd2a7eb74c1e355d533

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-1.0.0-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-1.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a13b40603a8c5ea630a3f4caede263e631e72f11ac416a4681f14f83a8e8ef74
MD5 0f5c0894743b458e58187b4a6ef11ef8
BLAKE2b-256 dd142d93b2e1a1b5492000e05b23d6dac8fa79b144323cf6e4dd650c06e483b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 abf9072e967b5bb0bcec96004491bb9a4d6aa05da43c8fc966eb488732d5587d
MD5 07840377239e45e506fd026c2844243b
BLAKE2b-256 0e0adcb7ed6a310385d261b765166ab0bc8162df05020f030b90faf07e05bc5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 9c69b1204d5dff0442c30166a9760c999edc9eefc59ae4110a5a076fb742d935
MD5 903c612c050420de6ef1bfb9aa060322
BLAKE2b-256 edbfa4359f7b916592cc108a22b7de44f691094414f9e61490774e660d61479e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 d1be168e05f76081a76cc39549ff075842ad073f6e104a00490c2fe0d8cdba89
MD5 1ce29aa9bba0ce760958a47f4d38b358
BLAKE2b-256 e05274d8a32d6af5bfa6878b3d500b78b88f1ae2b85ef40cf339cc402ee0c43d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f277bfe323d27aa5a185195a1a75905012add0b87175f9c8a34a9a786a361518
MD5 58ac1404bbf642def2e2f6fa8aa2e9a2
BLAKE2b-256 fdee3ef43c94c93116a19c591532cbfc7f5d5c7ea0a09a85febd4ef192cfad80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0b477b8de869189f8257b075efba83081e53721dd4a273e72a50e7df049badba
MD5 305ba77f99c6f4d808aacc7c9db91bde
BLAKE2b-256 7da0478d4b213fbfd6ce8266d6e41e52f864950f1835d28b964e496f71b01a1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9c394ddaaaedc45b2ebb052945985a9b192e667631f50ddffaf22d53d953200
MD5 a30294ffcc7d379ffaec763b23db83c6
BLAKE2b-256 587c0f501ba6df34bca4930571a7ba131f0386be81305770d8acc199c1cb6b97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 099e5e08a0837bbc67074a01460f6a90d92dcb712def0f1b70bd11c008622fa1
MD5 1196eb513e4720b7d10b2a2b667ab792
BLAKE2b-256 8a304f4af080bf928bb9db5fad8e981f7828bd11784639faa3cccba0f3acf5d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50b973357e2d5513647650a616e27199bb8cc27df848230defdc3cf52833ea5c
MD5 ef917b69293afb9ae3d47d84bf99d4ab
BLAKE2b-256 08216439b432eb2c4e26f5448b86c21bb8db1ba149c02a67108d7d8e9f199a5e

See more details on using hashes here.

File details

Details for the file symba-1.0.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-1.0.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02303f972e3b37236630bc8e3bb6f733bba07993dc9dfe3d51c60eaada1e8658
MD5 aeba02b8321845369436d77f88927a61
BLAKE2b-256 e97bfc8efff9eff5ae014a66150cc2b45455d3b70212922bbee1d4bfb36783c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e79ff7268afaf7eb61b17f30412a160bab8a53d0a5f885801d541e906f4fc89
MD5 02bb8cc65a58d9374bff09ace9a9e8e5
BLAKE2b-256 5baf9a367d51be25d1ab7be35d01778448bb5ac8a0df444e3a44faeb1fba28e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74b58caf84f416e5354cb80ff88c75a360c0f9ad7a849226f32a8e671e4191d3
MD5 ad98e63f2bd02264e9c38fc0cf3a6726
BLAKE2b-256 8c17c8f43a6c777a224d2373f61e5a8709b576e9c60846d85b71973d8bcef6d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 335926f0b239a4dc0c05e7de6d8db625d476ff054ea87e4b1d16127efa7c1807
MD5 331604f77c846a2a87294633180bbe35
BLAKE2b-256 0247a8192879c417d0ec8d6338dddf485cfade2cd88f8a90849b742e828f868b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a233bc5637bee9a5fb673e4e669153e089e315386db7e88309e3cec56721e1bf
MD5 793f1d2538df8685e34b30800b9872bd
BLAKE2b-256 38948e87379dc937df408168a465a3a0aa2415b57cc26f5776c115935239a7a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-1.0.0-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-1.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3517dc91c50eabef1b99195f8d437612666d5103a4068eb51418f443b539dd08
MD5 28886810c24fcdb68feab29ccd027cbd
BLAKE2b-256 94bc8bae54678eb9b58873ef08224e01587547e5db89ac3e8af1e363d25b07df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-1.0.0-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-1.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fb6b4ef5fc8ad8173aab6862a7aeef5424de5be08f69fe4ae98fa113c92bdf97
MD5 8f1d61088893ed1ce73f05b1e469890c
BLAKE2b-256 0fd118682f293715c6692722d6ecfe047b5619097941739d4229909e92681505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2515d1d34a001f1677115012e09d3ddf467191cf954d35b153ba5d54bc51e96a
MD5 63b4443f14bcbc2496b02a0d1e96e2f9
BLAKE2b-256 0103a8102a97052524d014889ac37169fbb6cb653a2dde298650713aab073c0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 9a067843edc9be41c6e65b16ae8c4209c781e6db88886bd96825071baa8afd30
MD5 cf4fe09a92976dc345eacf872f13dfc6
BLAKE2b-256 b5b72b0586e4cb3d3d20c15279a18d66ffd001c3dd35a9d3efc72a227a25d73c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 c15147ae27c8db49f32b8e32422321e258cd37e80d81dca394f1a25242e044cd
MD5 289918ee3116ec91de111f671f33ed18
BLAKE2b-256 0c861cc26dc50fbb017acc3970e8102defa7238d8a9fc394d4cdf557ce4036c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 35ece16d0db45c39a4a272319cb46674733ff9903259b925f0bfcb0d9dd60491
MD5 639f4056345e51a68131311b6e57ef32
BLAKE2b-256 3f9704e11cc2a04e1871352b170395dc8728e5a81b1ab812faf17642aa36aa1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 09785b5c4f9bbbd4fb67db6da6fb634a2f5bbc871e0e5f2ad18079d094781551
MD5 a34ec0a577a63c0b703783ba02c83374
BLAKE2b-256 df1ba65f1915aa524c6594a5cecb2635bd06f7070763b10829db8baf0bcecf4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a9f20e7fa1503e200e841b17a17b54a4080989b96642b1a0ba8502cca8bdd48
MD5 cf55b3f87350547eee3a648440d48f64
BLAKE2b-256 687590cdce9030df5e6915227b9065465de4b11143f6c1297954b034656f78d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63978d5c088baa84db985398d494358234de84afa20ebc0e11f4575e629fd06c
MD5 8ae5d91f125ea4b69c1af0fde71657c0
BLAKE2b-256 3b7ec43229f64a2a1a66f0a529f0dd4744de0182412797c552d31354277b7cf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40c6b6325daa7427a609a801ca01614289039049d72197acd2c250cb0e6a264f
MD5 2e632a28e655779f181dfce27907b732
BLAKE2b-256 e1c40116389c95d23d32b2b5f4d2bc196ee11d6186a0102c04b030d7dcef66db

See more details on using hashes here.

File details

Details for the file symba-1.0.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-1.0.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 335c56b00a5fb990a2f6cce6fa616556d56f70b94db3a3b715a24adb941edc55
MD5 1710befbcb927759b54d5145ab412b9d
BLAKE2b-256 e21a55cf0f9b7c80a102025cfad85dff4a1516ca6b231cd4296b8b3dfec2b8bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb83bd0d43132049c3cfadbfb11e8f798752ff4cabc8e04d13af1ad1ccf0046d
MD5 e9b63c1d4d2b14c230f53fa4581c8f3a
BLAKE2b-256 b0a6fc408fe5349331fb7ad09fe4627a5dd809e7fc15ee9d06088fe4e7411b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a35a458acf8de80275e998522c849f225cb3f9820618dbb5b90ca1fc034ca0e8
MD5 a52132a1a36f4a92a921415c84e10488
BLAKE2b-256 d433ca2ce0037f6356ef2278cb63f64c58f85d1d11e00f26c3b230bab6cb9ac4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-1.0.0-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-1.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 647fcd05d2a53fb125e4b6baff51fd28d7e5f2de5c233587bb7af6139d7f01f7
MD5 8363f8f796a4de18936fb11ec61c0d88
BLAKE2b-256 8f512dcbdb957bde56e73c5125f6a629de417dad3950420f0a760cfe6beaf06f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-1.0.0-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-1.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 54c99d799624b5f6efa3337bb44a1cfa18b9c843b491dac06379a8e2cdff1e31
MD5 4865d80a7b0f7e82014a053e15ca823f
BLAKE2b-256 54f6916ff3e2f4b920b021c2680d5b3510920be9c062d18dc2ede7c62d20dfb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bfeba3b1ca2f16a2dddbd280dd82150cac5e5ff0920593102c389eb18044408f
MD5 7d53cfe2042b236230f562802b70f9e6
BLAKE2b-256 a1d1f878076bd80d2df92b6369d8e26b058b5e0bf6d159f61318b43177fac57f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 82ab009491d092418cbb47e559fbdd406461367e85fb5023febd189eccc141e2
MD5 3952994e940402ab7df46757f59bc8df
BLAKE2b-256 be9350528aa445142fd0e7bb786316ce6084ca5a0a7bdaeedd7867df3a4253c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 f7b24d953056e4c9dd1b848a7f3230d494e57a2c55e598119f93be5d0373fba4
MD5 646e131501e415f866924bc6e3db366e
BLAKE2b-256 b43868604ab917825c06f4ef52a1d0903499999e9af5ef5c4ff533f007ca14d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 658e2d3b4def6f001ba5b802e272713cfe405195f8498068612de4d77f187baf
MD5 03f2f4bb9a6429a7c171b2ae2067610f
BLAKE2b-256 481b4e13345e510ee1cbca322cd7191299d6865c116f36b34bd81c19cce10b27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 91b41e1f7a5997464c04a48d8718c277d433356cdfce9ba71f7654ed4e67af0b
MD5 d023458b222ad2d048c3d0201e28841f
BLAKE2b-256 3c66d9eb42b260466e3ab20426b4a29a6a08b5a264ad95b4920ad8eddbb23a2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 334c3c4d5bd6e83a5eb93b921202f7cfcfff0a9f8be11736fa0e36f1d1c691da
MD5 e4014b5580e912521eddac1a05f3577f
BLAKE2b-256 3c32c6ad196196bb9875265efd632e2babb94968661c9c56f56b45f3ff77fa7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a71a02c403e26140e39b51e1fcfdebc1942fb43757ad6dc5194c83d58020a02
MD5 84fa9ad4f2bd66b97efef1fd0f9122b1
BLAKE2b-256 395a62c1b1251c59a84ae08f0e393dc85ba697a16b6b787c2860b8eb8ddc51e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2b540aff726fdfca19b831d062bd207e3c678b684b6d6300a767016b474269d
MD5 d24828cd48127d124d500b6ae0fe183e
BLAKE2b-256 0d45b27a15d7b1c5c2b10a31ba976aca921f2ac6261f11fe542479d6729d7ccd

See more details on using hashes here.

File details

Details for the file symba-1.0.0-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-1.0.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3da847b2e71dfbaefce8fa1b24215fe5aa23aa239829a65ecddaa8190f4a5e47
MD5 6c1295fd46e81b8360a99e5bdcd0f7e6
BLAKE2b-256 d19aa62037155558daaf4d97403cad4b957eb8c3b47aef4650bf726264f3d42b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21d1f7fd23ac9a2bf7a7a96607044984e93c134c0c49905d6cb61bca37b04a85
MD5 4d74a0debc46131a56cb7bc68800c544
BLAKE2b-256 734a21ccc499a55ed9e90a5c48007a180e1f9d38c44c89ff5c130efca8c7c3dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a8f73668f778e54cfdc2c48332269487df5036cf40282d903833d2bf0a76383
MD5 50506d262e718266ea87770594e9e5ab
BLAKE2b-256 9decff137bb9ad7a2a50d5c15b3d516ecd788297757d48465ea087afcdf5e5d5

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