Skip to main content

No project description provided

Project description

semsimian

Installation

  • Set up your virtual environment of choice.
  • cd semsimian (home directory of this project)
  • pip install maturin
  • maturin develop
  • python
Python 3.9.16 (main, Jan 11 2023, 10:02:19) 
[Clang 14.0.6 ] :: Anaconda, Inc. on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from semsimian import Semsimian
>>> s = Semsimian([('banana', 'is_a', 'fruit'), ('cherry', 'is_a', 'fruit')])
>>> s.jaccard_similarity('banana', 'cherry')

This should yield a value of 1.0.

Releases

As of version 0.1.14, the semsimian source is released on GitHub, with a corresponding set of Python wheels released to Pypi.

To trigger a new set of builds, first update the version number in Cargo.toml, then create a new release.

Wheels are prepared for the following environments and architectures:

OS Architectures Python Versions
Linux x86_64, x86_64-unknown-linux-musl, aarch64-unknown-linux-gnu, aarch64-unknown-linux-musl 3.7, 3.8, 3.9, 3.10, 3.11
MacOS x86_64, universal2 3.7, 3.8, 3.9, 3.10, 3.11
Windows x86_64 3.7, 3.8, 3.9, 3.10, 3.11

Troubleshooting

Building for Mac ARM M1 architectures

If a import semsimian results in a ImportError warning about incompatible architecture, try the following:

  • Install conda. This guide may be helpful.
  • Set up a virtual environment with conda so that your Python build is aligned with your processor architecture (in this case, ARM). Try something like:
$ conda create -n myenv python=3.9
...setup happens...
$ conda activate myenv

and then proceed as above.

Code Coverage via Docker

Build a docker image:

docker build -t my-rust-app .

Run your tests inside a Docker container and generate coverage:

docker run -v "$(pwd)":/usr/src/app -t my-rust-app bash -c "CARGO_INCREMENTAL=0 RUSTFLAGS='-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort' cargo test && grcov . -s . --binary-path ./target/debug/ -t html --branch --ignore-not-existing -o ./target/debug/coverage/"

Get Coverage report from:

open ./target/debug/coverage/index.html

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

semsimian-0.1.17rc2-cp311-none-win_amd64.whl (296.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

semsimian-0.1.17rc2-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

semsimian-0.1.17rc2-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

semsimian-0.1.17rc2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

semsimian-0.1.17rc2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

semsimian-0.1.17rc2-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (898.5 kB view details)

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

semsimian-0.1.17rc2-cp311-cp311-macosx_10_7_x86_64.whl (458.8 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

semsimian-0.1.17rc2-cp310-none-win_amd64.whl (296.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

semsimian-0.1.17rc2-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

semsimian-0.1.17rc2-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

semsimian-0.1.17rc2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

semsimian-0.1.17rc2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

semsimian-0.1.17rc2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (898.5 kB view details)

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

semsimian-0.1.17rc2-cp310-cp310-macosx_10_7_x86_64.whl (458.8 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

semsimian-0.1.17rc2-cp39-none-win_amd64.whl (296.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

semsimian-0.1.17rc2-cp39-cp39-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

semsimian-0.1.17rc2-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

semsimian-0.1.17rc2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

semsimian-0.1.17rc2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

semsimian-0.1.17rc2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (899.4 kB view details)

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

semsimian-0.1.17rc2-cp39-cp39-macosx_10_7_x86_64.whl (459.2 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

semsimian-0.1.17rc2-cp38-none-win_amd64.whl (296.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

semsimian-0.1.17rc2-cp38-cp38-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

semsimian-0.1.17rc2-cp38-cp38-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

semsimian-0.1.17rc2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

semsimian-0.1.17rc2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

semsimian-0.1.17rc2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (899.4 kB view details)

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

semsimian-0.1.17rc2-cp38-cp38-macosx_10_7_x86_64.whl (459.5 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

semsimian-0.1.17rc2-cp37-none-win_amd64.whl (296.1 kB view details)

Uploaded CPython 3.7 Windows x86-64

semsimian-0.1.17rc2-cp37-cp37m-musllinux_1_2_x86_64.whl (1.5 MB view details)

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

semsimian-0.1.17rc2-cp37-cp37m-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

semsimian-0.1.17rc2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

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

semsimian-0.1.17rc2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

semsimian-0.1.17rc2-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (899.6 kB view details)

Uploaded CPython 3.7m macOS 10.9+ universal2 (ARM64, x86-64) macOS 10.9+ x86-64 macOS 11.0+ ARM64

semsimian-0.1.17rc2-cp37-cp37m-macosx_10_7_x86_64.whl (459.6 kB view details)

Uploaded CPython 3.7m macOS 10.7+ x86-64

File details

Details for the file semsimian-0.1.17rc2-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 7e2584dcf89a6e60445ffe7004ec1a9ddd332f5d5ae174488809eb3b61e9c03a
MD5 90faeccb7e296f58dca0535886f64ad3
BLAKE2b-256 3d881ae4e9374988879955fdc3d75d60ced34439daa59e0433ce250b90b0ecb6

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5bdd81a7c5145f3e42390cf9e5ace23e817a6b2afb7e250809c8141a030d120
MD5 77d096eea867cce0c6ca3e2e7cd9468a
BLAKE2b-256 15141451912df0ab571834df67f36b7e6b1e9e716514c6042366c55f9e1396d4

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3183d6c5203d5f8e2891efc7df9b715821c561c2fac26ad42fa12452eb54079e
MD5 dd1fe77c906eae15fa73507f7891088f
BLAKE2b-256 db96fd36a42a27c52c6c886eee61fe720863bd523558cab64c82a73c3653e751

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fa8c8b9eb95a3392ff15c3eab1113911d176d1a2fbca69ea69639d705a39771
MD5 25add6157ec7cddea4d914162bf0e192
BLAKE2b-256 144b0ef81db8fd26b4e5e53a62d108c213d6f6095de87c00187fbe18f029d2df

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9da257a614fabc3dcd6b7f5e20a3e5c794dc94c248926f089fe980bf0a61352
MD5 8c79fd3e0a4f6874897cfbee8b9cb5f4
BLAKE2b-256 fa048472872800d21af8c9368d41837e4f167b5aa58bfcf259462965a0e73f96

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0131920366d60517ed9607c1d1064671b7127a6e3d434185dfe5149cc97ca7a8
MD5 afe75993e10073fa60bf481e3c6589ae
BLAKE2b-256 5950f6ecdf7929aa53b186bded9135b963e96cf239b50dc846339e4c7d086ab1

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d6c9e35daa5881959be71b030b9495e0cd3b1b393c483d1b411bd039416c7893
MD5 f3002224d8ffb5fd9d6286531aea4605
BLAKE2b-256 9fc19b84273c125998d1a5416aa0dda6368b120697dd9ebca17fc25f8c77dba5

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1d6aefe0c911d4750545df5e307ac6bf2e4ab90a354bfd1b36815f1f70bf3bb7
MD5 0fc17a09d0fc96efe9e0cdbe289df788
BLAKE2b-256 d3579580dc6cf1595e6d32f4c926b5039403171b4e7c051fad35de3b282affab

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55e4534e8a3f427e4eba6d4269c5d62055408c7a5718782058a9bb548cb8b6fb
MD5 add3e014affb2d089d75e9d5d5f16ada
BLAKE2b-256 c37e806bfbbd8f3e534d6ad72e984d359b131bfc8dc78874a69d114c314caf1e

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d4810857eff7517f60f66fddda2f68af6f99a249415fa548270a86a7d102cc5
MD5 4df173d27da9210c3839aa868daec170
BLAKE2b-256 cf3d4a3bead00d71683096554173f9988e512b33c1ee953d633c540546bf68b2

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14f3a61e6ad544634ba0031dd23eca31946053c4dd34973edcf67a13554e4cdd
MD5 3f164bf43f1459d2f75d0ddb3f97e413
BLAKE2b-256 97610bb29e4e7b22767c40620ef196c25317bff75b2bd33d2affa72280a8a138

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44ea53911a3e6aa5554297b89524b92bbb131d343fc7e77d343dc53145eb8e96
MD5 70ce02aa688b809c42759c3699aec3c8
BLAKE2b-256 f30af41ebb59b54b880f7eccb29dae6a6b4e46ecb3d6f6d382f722e2f69f05ef

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 81491ef39ed88fec242e2b7f928d3490aaca3d115e71983aa52561ecbc9d4be2
MD5 0b91050f343e4afba435eacc475f20c3
BLAKE2b-256 002483caaf3995e0cb27f4e90b7675c77cb5a4fbdf63c2fbfa9445bc72a591fd

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6c309781f69607f9956fcef8195b7250323eb7db65c479e392b5679b0ea7b78e
MD5 74aa933a4458366709b03ff13f2afc4b
BLAKE2b-256 eec405270e97d7f672440c8abdd49ed4a1f3bd45a9ebc357de0a104b9c50e23e

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 ceb74d17265f9497b8b985865e9b10df6b1aa7c5bd519351b4306c388bb4c1b8
MD5 79c84a632da215f0dab06eadae0fa0af
BLAKE2b-256 342e9699d7bf3fac8d22155608fe75b0a1910b467d031a3bb235f238036e54e6

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d2978aa7a4ec01a18f8a69f2f6f0eac8943cc6ea0d8d765090aa7e986cece68
MD5 689ac3fa5ac39e0f295244aa43c1838e
BLAKE2b-256 37a81fa41da2da00ba8dcc096a0236a97ccd0744ae3ca5767a9b66a0e500103f

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efdf3ff450d03075a8bdff759f9b75dbf4933f6e6f60749c5f3a7260e5b79bb7
MD5 823e9e8b2fa86c5ca41dbfa6a768d16f
BLAKE2b-256 0ca13c00126abef97db2a007fae43d32a859ce967847504cf3b2b20fcc0010f9

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05d0fe5b2eea813e6ad6802003d31648e374a3a6cfe07373b035f2e4b8a4c778
MD5 49c54d441544bc0c3e601c5e7c54c448
BLAKE2b-256 1c1e3507dea206f140b1487c9a96e3d058bd0ba4a815db5aebb3667be67df440

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee19bc16514c2f032539665e1c296b1f6442bc357146371c3aae3b3ff9c1cdd1
MD5 d59c83a006e63c210adbfdc0aef32b43
BLAKE2b-256 f52e210a83dcd3c0cbea36324efe908d7abde098530d6b3ff84fc3d453613802

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 02fbfbd0fe0e3530d4329039797abcd9ab1a14eccfbc4503e06f1f382aa62a3a
MD5 ba8de3ff01f8f89e517c1ad0ee69c388
BLAKE2b-256 3e2fecc21df93bff2bd1e44f5de54de3fcde47b70bd429137b74e2cbec4dd2d0

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 eedf94f9d6133ee966e44dc2b5f0b018cb71f581f92019ba6a6ddd8b00f819db
MD5 738d7933c301971d0e2a9a34dfef4433
BLAKE2b-256 8793796541cd5da4bb689ab3a69164fddd23cdff7ffd2afb3c8099538be2783b

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 b66205089d18307ec9f787a5ab7c9ed716acb0ba91d2eccdb76309be3b679070
MD5 4c6da180eb172987edd756e5eb7d717e
BLAKE2b-256 6ad2ef7074c2b6a0f8c471c68cf9ac9cbd607b4b842be38bf78f5f2178121cbe

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6ca33d2f7bc4d9e9e4a31d237aa7895651c3aad0cdd5baff50388bc5443af53
MD5 be042379d64630fd68bf5b1c8dfe4c81
BLAKE2b-256 f05492ec3cfc74e59b85c1ed091b7fc1ecd7324b2a5b46af5a51403907595308

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b1fb226d1983e3bc9d561161a1e9495bfffd0b070806fd72ce11c9db8649739
MD5 f89accf6178b568cfe0c08ec639370e0
BLAKE2b-256 059234076abd18aef799d4dec56a9dd55fa0ee713bc33e406975d21ef2a17565

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d43399403159773ea9c9e16181ba5e291b143cec4e547daf5baa2e673f2af00
MD5 cfa7966bb6150e16c632000c3d91c11e
BLAKE2b-256 1a0d44be02ca5e980da6356bc6939eb3ab0e4d988383f14024ed91356fdab69f

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3567e01a0aa975e651fcbd7f8a8f4e864114a129222875fbc4cc5004d20a41c
MD5 8709426f0d7d0f95167fcc5de696024f
BLAKE2b-256 89462e4127af6f312cef34893b29194638c9bb22bd7d3033ac9d648a49d69dbb

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 63209ef5fc4f9cbddedf9a07cb49fc7ee23fe4397b6647c1f217f1ca96ec4aa8
MD5 8d569126791d47251ff137eb8828483d
BLAKE2b-256 0cd7e8e81d603ebc725c4dc55c37295fee2eb6a0febd7d80d74885931c3e4932

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1b9c1970ca3c4ee4f435494983d5b46ff7365f0f7c8c81a3ac66168ca7d5793c
MD5 9bcb58a3952a597771497e1fff6058ab
BLAKE2b-256 999b541e0a7ef3db509f11bf8c41f6635210a7eb1cc9d072460e4ab6bea16ab8

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 68b286c15265b03d11ca96aec6a9cf2c738ccbcabf6a89a77767469deb0daa4a
MD5 53d4b09fd1fc857cdeca4916faa488f2
BLAKE2b-256 2e6627ac0bea9bf1017f35c80b3a4bc9ea1c83d5c65f3ce241ffd7122002e550

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb497897123e12344336c89e155527e9cd755640a91e52a139bd34743d7df74d
MD5 8a4a888b4d037bf722f101f14a32fbbb
BLAKE2b-256 4d6a1b75d0f9f68c5f00b205af1d9eb1624721779db5d3b31236a69ab2a6dc34

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c5e1eb323068be8420d69cdcbb8d58552a1003a64af669dfb9a94e8d8910a84
MD5 6599dc399502dcd3271747ec3419a046
BLAKE2b-256 9900101e450d6fddcf6a7c54da9ab01ffd416d671d20439f5d368effec2496b7

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d85a453cb0e1648ab10eef96b7b7f286464d51b971e4f9fd2f681cbad42bb44c
MD5 51e86ee40d234ae7da2d47a09029a9b7
BLAKE2b-256 7af5a0d0bbf8f2d4b8a3208a92d5f1dd46e993e5fc72b638d4f2bf25ce2fd517

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b20217650deae42219e59978bffd097a78971be1bdf5db65dd01850aa905a20c
MD5 4d25a5b924a102896d05e747a54494af
BLAKE2b-256 e6f04d67656b9f0ea6e5430e2f747b30cda0290a34cdcd38d2345ed3354af91c

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d6875285935a3cea6642b940d21a8573d1fe656115ac9b68e15aa3c70e7b87f0
MD5 e6ab0e400d70b0635651a54500af08e9
BLAKE2b-256 2074c0788a56d2bf2597af79a5e5f34a5a7aa8949cbc2a1548a50bbb912e975a

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc2-cp37-cp37m-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for semsimian-0.1.17rc2-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cb78ea09db7158dc41ecabb6b432749c0e4af52a804b4415d86fe0a06f328c09
MD5 9c4be564bb0b3941491a631c45d990ca
BLAKE2b-256 46eb180233d9f175166845f36f7c8a4c9592da3dee164514dd97ea7c8cff4870

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page