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

Uploaded Source

Built Distributions

symba-1.2.0-cp310-cp310-win_amd64.whl (22.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

symba-1.2.0-cp310-cp310-win32.whl (21.7 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

symba-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (27.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

symba-1.2.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.2.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.2.0-cp39-cp39-win_amd64.whl (22.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

symba-1.2.0-cp39-cp39-win32.whl (21.7 kB view details)

Uploaded CPython 3.9 Windows x86

symba-1.2.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.2.0-cp39-cp39-musllinux_1_1_aarch64.whl (32.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

symba-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl (18.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

symba-1.2.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.2.0-cp38-cp38-win_amd64.whl (22.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

symba-1.2.0-cp38-cp38-win32.whl (21.7 kB view details)

Uploaded CPython 3.8 Windows x86

symba-1.2.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.2.0-cp38-cp38-musllinux_1_1_aarch64.whl (33.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

symba-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (28.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

symba-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl (18.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

symba-1.2.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.2.0-cp37-cp37m-win_amd64.whl (21.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

symba-1.2.0-cp37-cp37m-win32.whl (21.7 kB view details)

Uploaded CPython 3.7m Windows x86

symba-1.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl (32.8 kB view details)

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

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

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

symba-1.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (27.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

symba-1.2.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.2.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.2.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.2.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.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (18.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

symba-1.2.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.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl (31.9 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

symba-1.2.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.2.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.2.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.2.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.2.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.2.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.2.0.tar.gz.

File metadata

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

File hashes

Hashes for symba-1.2.0.tar.gz
Algorithm Hash digest
SHA256 d6a38e10b3109c541fe9d76897be6897025d076736a2f74b20936bdf3c79e53b
MD5 21ff9876bad9cca7238f0c22ae27b48c
BLAKE2b-256 4ba0f26c0e02d757976d9e9b93d54fc75dd907b941a3fb4413333f9060ffd8ef

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for symba-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 567a32c759a2813c07cd49db00226ee0a855f45a7bcc455eec8a286dde350abf
MD5 9b5e9b0f8108c2a0b98284679d56a4d1
BLAKE2b-256 e55f04b37c26e121a7b7888ad08b0ad1b392b17ad5741271f59c3504d9837632

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for symba-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1e62cd9992022c2edb2fe741bb27d7586329a957bd8d9e8b1319c8e5451e41bb
MD5 a1aa5486b511a598d6d5ec720e4bedd4
BLAKE2b-256 ef7a7e3b8d249d2f60dd52adcdf8404f3fe37b546ba03fe4c4a5c0e3a8092bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fb2d687f2be2f9467f728ce0532f197a929b099c839c93902d37d3c2ad5f87fb
MD5 df0f95edf71528d7a3137cf6916c625f
BLAKE2b-256 50dc3ff7766227406ada9d091294bffaa8150d1fba82966f499724dd025850a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 402096994a11d77acdf5e330c6e52425090565e4ed6faf1a603042e468f1866b
MD5 d405a836790e3859accb84bb78639f2c
BLAKE2b-256 e3b6c4958f7d499808258b49a731239b2d2c8d55260b40eb7609072d9b328b1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ebf3edc8c897d4b2e6f5638bda7b34704a89c5e29e04dbb2ef214d9849ef8ef
MD5 5952466f65bd3de1f178efcb23a8ee88
BLAKE2b-256 e041712d2ee58f63ef5e1e2c81b6ef19d810af7636181db20099d875773e94bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b72c9a4c23bdafa2a9ce8bcb2a4db088a2e23da2598af6cd7b6dbdb03853a195
MD5 9adb7ea10398a2dace0e5eaa50ad9867
BLAKE2b-256 32b2740cffe260dfabe66d1058cb470fd69482ed8024a90a200f027152d263f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab8e3f8864e0301b6f31859a284981e5656d2f90255d6b0230b5a83d7a6b9872
MD5 58f0f36b6a598e240211b13a98863459
BLAKE2b-256 8d5b015cd020a6f77d1ff754979abbafae1c31c3abfe04c54becfe42d502605b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea369d1b244a2027fd0244bdd279eb7977ded874d849f6775014b9fae916a3a5
MD5 f71a1ecb52fadcce6a0158b1a700fdbf
BLAKE2b-256 6358323c93de91776da0f0bd9611679a5629b74d6a2f976a923fd189afaed7b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea3f5938fba9f1a1a287c1bfd3f9b23ca8ff5d488126a44c7a6ca702307fd19b
MD5 44d5b01125c7b44cf44371731cd42467
BLAKE2b-256 a9099a7cb97f983cf6d753b8ae44b84cb9f4c55f02888768c4e1d8bfe8bb9a76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 148ede35e8426f855d5e1e108e48901cbff9c253e4a3e4b55deb063fa3c2da4e
MD5 b38e2809b24effc022529e524b9326ed
BLAKE2b-256 8c9181e5ee1610b5d9846c58fef33b8492211b2a50f71f419363f3443f0dce3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c6d9e7600c23109684cdad9df0d566b85d16770776b0d7b7bd3e5adb758766b
MD5 f14baf11d5c13be2c30939041588e9fb
BLAKE2b-256 3ef2c5f4c869ffa6881306f9add265272d17775b5949bad0fc002c495129088e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d6bc3cc13cb81707724fd46e9cb51b707bb8446846b66582cf4df7db30d403ce
MD5 932e904da7c79bcdb4b58b7115d41e27
BLAKE2b-256 a887eb3efcd4503938d7460db53305c23df644fe16967f16396ddfa67b0a63e2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for symba-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0d7a9dc2b861662c3042ef7eac7d81df263c509f2de2d2d8f2925c9454a2cd8c
MD5 4a82c7eea068e6319b209dc7c8868971
BLAKE2b-256 9d29d8bda1d9ac389e5823b58410d54859a6d64dd1695a0a80a282b4f08e1a94

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for symba-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b39c22f4659d8993b4830af415bae6346b6b3fd09b041f91183a243a5842acdb
MD5 e9998565592b65a03c62a9d86103a8d1
BLAKE2b-256 0927e6d4bcae35004f71d59352bc50cc132c7903e9ac79f2c74b85278894927f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 780ac58876571d04e323f05a579b33fdcad6a74c912652f68a423acc2bbb4ac3
MD5 d394bdfbaf9e60a97f6ea5a7ddc8650d
BLAKE2b-256 fd4f3c0fca96f058902244d0eb780df7fcd1adf99c243885303280ac3122b231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3b2f37f0222125fba721bd8e3d591cadc56fb7265d92cdf1c874aa40ab3c776c
MD5 2430a23508b729d7fc8bcef478aecfb5
BLAKE2b-256 cd70a8a61f6d24ad506443e4a924ac121f3bf2fcebab512f26a008333aceecbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5588b8a7106171adf2603b208a7c3b20227f83925f4adf008711328b83e21afc
MD5 76bb7de32926c2a38e9dd8c742607d3b
BLAKE2b-256 6c21825219f40838c0ab61aecd7757c57f802246137e42b69f37d05162a43be1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63daf82b32b13c4ad2f092641effad016c4eb8625b25f3547dcf0b79650c8df0
MD5 5e707b57694f2460ea2af95b2a1b32b9
BLAKE2b-256 40a70f62c9c596d64d3016e26b00220e5c0ccc7759ae3f88dd32bbf4bad10149

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f901b212bf8b7f47503ed2299f325e6bc154b5bf4fed01b395db4df924a8daa2
MD5 6450d1e7603de91b6ae6c495a50996c7
BLAKE2b-256 690fef0f5ec30be82f84826c282c0f69605fc951c3a53226c585a8f8d70159dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3eda9b8771dda951b01782be63aa908ad2b5749790f67612077ae0dd79a13791
MD5 36c8797a1f17bfed27867d26a6442bee
BLAKE2b-256 a961f0b65eb22e1ec9bae5e926ffb5c0b75b3eb02bd8e74fc823aa88f89c3696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c990fd7e85b4e6322f514135eddec645e8bc47e9f5a41c47cdcab6592682768e
MD5 c5f8cbf1fa2c6f8cf2e5614e49c75989
BLAKE2b-256 fcbe50fe8fbf1456a82de616553dc620f7d559aa8558f9fccb52a4d6d5163113

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63aa5fb38f3f0fcc10b86da2d12ff5085bb3e6c3cf2b6861c8746679726c184c
MD5 699d012e58c8b4814bcf9a6ae53bf482
BLAKE2b-256 fb195cd757120b63d70e54a2d9aa03ce02d1938478c07875f303c64d8ef74c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b4cf5b87c5676b20dd656a41ab435acf886de21d27b87f499f6e39cc60f6f20
MD5 3599698ab0fb72b304e1251322dd4ef4
BLAKE2b-256 deddf878d74ea325aa9f16b27f2a434a0f71c5cfb4ad7ba6d5b5fade2b109c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 603390cf86c11191f8289329964fff3f022c4096496d1216cf8515c03932a681
MD5 f35dc864d6a1a871d54c900645b30cdd
BLAKE2b-256 b652cefb382228fa9e19e8308f4c084e3b8b63a1901a50a7dc68c89f422a70d6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for symba-1.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bc89f7f998a391821b16d4cdb655fc0a29f3a63ebce9a208d5098fc2f3071603
MD5 bd5a5055408440563cc3edd17fbf8d41
BLAKE2b-256 6b7818133aa3f61d38d3d10c7cdc73095859f775024b2ddd8d39041d80882bbc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for symba-1.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7cdf4a8c1c24382eef1a120c6a0dc46d975d93cb5926e717f09fe63513844506
MD5 bfdbc90edc5cdfaea6add526b372cc80
BLAKE2b-256 2545154cca4791c1bbc48dc4e5277edd680d5b50001f5fa5e63235432c4d18fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 398eaee9f48c15690e2bc83136f52b1872838e23b7bf6a96f22a20a5040d565f
MD5 871997ea73ba4abd003b51c9ec9bb9a7
BLAKE2b-256 8faf319fa12e6b76affe0b2e0e52c25542c78d98317b3c536d73d2b49ec9b551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 80128718dd2fadaef4c7396e1dd9d194d5bbf6a3cc30840b7425acb3ec201770
MD5 15fc54d617f524ff68aa071a006caf31
BLAKE2b-256 5f77a3337774a72b90e25869fad3de2865b19378b744ec9d4fa466c97739fc31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9745b4ed6ae9e75478187595a72cf64b3cf70b75bd5ceb4444762a118c1813f
MD5 78983be5759c46aad40dd77d844d5052
BLAKE2b-256 e64b4518e6585d7f7d437108208cbf039ee5c3809688ed1397d248c1b06547ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad828c6b0e11bb88863d17c50b424d518905c451df0d79e376f68fa9b5086f17
MD5 aed230f416060c7091bf6ac9ffdcd692
BLAKE2b-256 b0033b091dac74c63555e4450c9677b44c9570270047bdb3208459a44655ee4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45de5edb34ccb86056a3439fd230e0164e1f55e0a7979fe277e7d5efa1ff9c35
MD5 412780b133b056e0d371536fd401a50e
BLAKE2b-256 fa8fb5ef0f20da46eb12e236c98cccd08a9f41752afc592c5e837fcd998febc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2261d72af314b986476a6c71c72f576eacce8fda147877d69035b91520c4d58e
MD5 ebf32a5e079d42c517379db102a691a5
BLAKE2b-256 8b5d997de962e88182b0a13f71ec7b8c8972c66b4c53d2def1999924054cf32d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3283dce7556ddc318b0b623bc367d96c5f66d5d6c4c36cb28b6660991100bb60
MD5 fa8400479379c662ca2bbd983b0400bc
BLAKE2b-256 6ba6e56f8df4438bdcf84d5c7baefc143be9c2da1842b2d1cd1912905b1a0240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 316a2ed619814b93728f32122223cb76bc92d6d0a1da36674211a9ca037bf230
MD5 718c201d770708faf201c67ebae5346b
BLAKE2b-256 479a082b8c3612edb6190b6441de1778698a0a34d20372d7345b34eca550094c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8d4600d5edd71dd3fcf8d44e06c89567aaa53d372898f8cf9edd1614cc7fd29b
MD5 03fc29f32614c50d49e6027ed7006b1f
BLAKE2b-256 6a4d194c6869e41db5ec5560bfc9f596de1527b6b71a6282b89d560c401e91fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 44b964c8042b48e8bab05a14662c86dac5298b9eb8ce082ecd04df998bff7144
MD5 ea428a8888dc8e74fd4d5c3f40af524f
BLAKE2b-256 64fd0db62f27622e02d8995b677c3fca9b633118d69fe82a8883e89e1500bc1d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for symba-1.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e2b54b5e3840ffe2711c85adac7a009a3dff143b4eefa416bb99cbd57040f958
MD5 32b770013c2e863f408c77ddddc3ec48
BLAKE2b-256 69c1c97818b72c8d4295593ac5ba09b7245770fc0c4f8362d14bd7a00ebcee8f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for symba-1.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 cb994b6230a4d27a55521c112ef9fc00cc12c243e032fc6a41e74e717a673460
MD5 929ca9e578a7a0fa5057e7eff599d7ea
BLAKE2b-256 c6770cebb97e605af8d7eb7c47c5cf7b1c678541494ce92199eae37af8dcbf04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 57bd3049af4b1cd597a7c92bacffb2fce3ca80fa691ec709cd6506a1286f9558
MD5 f9904c9a51cab75789c532bbee85fbf6
BLAKE2b-256 9fd3c39167dbffb887e93f4e7da56a6c84a006fd82bdbd20fbd8a7989b285544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a26d9cab1817217ef984d24ed826dd00713f7439ad063b076b697758822662a6
MD5 61cf1427c45213b6ab5a3714adadb134
BLAKE2b-256 264ddca52cb3cee02962a977e7f380178fd483378ff345e80ab2961132cf13ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 197587463d1360d0036b34c11bf5d4b94ab783acb20491eab4c520d624236363
MD5 ae40dff63bf793eac7ddcc9e46b6545b
BLAKE2b-256 a968ac747e858740f320160fbd96a82b8cfb6346a5ad0ed7f9b143497ff6c919

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 725cf3ed04ce8594bb41537b851845235c7c70078932f93111c7c204e786e7cb
MD5 7454d1d3f0d5195d24507fa34f1e5dd5
BLAKE2b-256 15c04052e94dd7aff7be5fcd98ebbf660e3025b34ddcd797b5fd1d5839d82f84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45b674fbb04b30b5aa7c9cc0475d84d974d9a184d7d2171c8834867eaac04137
MD5 478ee4580b1656e370ac1b945c08a6ff
BLAKE2b-256 594a2e38e3978fcd0568ace7403781c4e911ccbca91eebadf4fb16abe29d9a6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d01ee15544f1880efd24aeb4c35124d61cf4a45b40504b777c0e04cdd06e8515
MD5 e7336972d8dc1f9ec946126c2ff07e5a
BLAKE2b-256 439899a92c0f09470356cc8ec7d3855e6b9b836757d26d2124953305938a12d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 939563ca747ce4a192d9e6cf7cf3fca4efef20a60a3651bbc4a7486583ede5c9
MD5 ec2f7cda604cf9312fa18c155e86f904
BLAKE2b-256 a3b81b057af405d60be6ec8414ef3dd58e7ecb6f27de4782056c471995abcbf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ecb665ba438fc5daf1032482e8df305389ed35dca082cb8df960883f6667adb0
MD5 2256ba4c627ed1b3a007a55d117fb6ab
BLAKE2b-256 5a041256fbdc3f6a453d0728ab15a42a4fb5e90e9c896a999f980c91abe92d7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-1.2.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.1 CPython/3.9.13

File hashes

Hashes for symba-1.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7431163dafdc70f3a701438f6351b04c0942bebe534e99e8bb7f7ca30ea4892b
MD5 f4da50e43803c619cdf568bbd4a38b0f
BLAKE2b-256 da49373c640b22de6a625e725ea56d702d4bea07079f162fba520f59866f0f83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symba-1.2.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.1 CPython/3.9.13

File hashes

Hashes for symba-1.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5e056d79ebd988f1b932dfa274f63c2c913b31e11970358ab66032fcbba15bac
MD5 81ff943f7d7e022438550e023e74b20f
BLAKE2b-256 9f7c1d07a62a6773d4e2c5bc48de6eebf59cb2f875343d1c70c2a34257ee7209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 495967ab70c4c67179578e0c474a09258b65fe4bcea96c33f63f9df94549da08
MD5 9795a380ca4b715765eabcb714e04ee1
BLAKE2b-256 f985ceacc6f02e4832c70603573db6389204e3838c51c04b5f8223de7450714b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ed5ac85ee034b6280c025621aa243eccea48f4ec78d9738118547fa727f7a2fe
MD5 5159798756ac59153708edd436a4b95c
BLAKE2b-256 9de987a174059e6f0a55b0c983d4edb387b52673fce35e7a382c8c574e64fbe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f1c9ec81f2356947fc8f6194cfd5cc0aa183d90b6299ce36716bff89992f674
MD5 3578c3db0bd09b9bd83c2796239587c1
BLAKE2b-256 76500c8b369f49606d19752d36283dae195e20d78f90bc20cd94a53b87a9de76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22e0add4d245b645d01b385651ffe58fc4bc88c1aec5f22da29d7e76d3dab5df
MD5 48fbe2e28848b2c86be01fc71c07a8ad
BLAKE2b-256 405d577085063b17b96197096990e65e34d751567cb01a198a92f5c9af1879d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1d006fdeea60926050ceefcde34ecde1a958fb700b01cdff5b2b4ac65ba7855
MD5 5e17706bfcdc11bb0c098ec33b8f949e
BLAKE2b-256 0109b2a06c73e8942650343625894f8a2505f2f6f4f885b4d25f47b46f549238

See more details on using hashes here.

File details

Details for the file symba-1.2.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.2.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16006c1eb780de42c1f6b75319ab75417a61e2fc6b9598fd37c0ebdb995aba9b
MD5 5a2db16cf2a6c4c100d0d17213ffa543
BLAKE2b-256 e46a44d14b233aee2e3d3979927bda675ebe97d224079ba18522e6cff5678595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11c80209ef857b5cf3ad102809bd180c63ba63ef602e2dd07433b8c717a7d3ab
MD5 b655c87896ad3ba8171d8749177c44ab
BLAKE2b-256 079de353716f73b9127129a0ffc76523d3287489e55f69c9dbfc53ffca5310d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symba-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24e09fc31e27b58bad8ab2a0aabed12835c5e8d4585211e449387a5576079847
MD5 4db902257b4df2884a406b5cbab78501
BLAKE2b-256 f19fb21c86db412f170112f865c561798a1b1fdffa275a4193d8f190726176f9

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