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.17rc4-cp311-none-win_amd64.whl (318.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

semsimian-0.1.17rc4-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.17rc4-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

semsimian-0.1.17rc4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

semsimian-0.1.17rc4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

semsimian-0.1.17rc4-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (962.6 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.17rc4-cp311-cp311-macosx_10_7_x86_64.whl (489.0 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

semsimian-0.1.17rc4-cp310-none-win_amd64.whl (318.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

semsimian-0.1.17rc4-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.17rc4-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

semsimian-0.1.17rc4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

semsimian-0.1.17rc4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

semsimian-0.1.17rc4-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (962.7 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.17rc4-cp310-cp310-macosx_10_7_x86_64.whl (489.0 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

semsimian-0.1.17rc4-cp39-none-win_amd64.whl (319.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

semsimian-0.1.17rc4-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.17rc4-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

semsimian-0.1.17rc4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

semsimian-0.1.17rc4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

semsimian-0.1.17rc4-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (963.8 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.17rc4-cp39-cp39-macosx_10_7_x86_64.whl (489.6 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

semsimian-0.1.17rc4-cp38-none-win_amd64.whl (319.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

semsimian-0.1.17rc4-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.17rc4-cp38-cp38-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

semsimian-0.1.17rc4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

semsimian-0.1.17rc4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

semsimian-0.1.17rc4-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (964.7 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.17rc4-cp38-cp38-macosx_10_7_x86_64.whl (490.0 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

semsimian-0.1.17rc4-cp37-none-win_amd64.whl (319.2 kB view details)

Uploaded CPython 3.7 Windows x86-64

semsimian-0.1.17rc4-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.17rc4-cp37-cp37m-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

semsimian-0.1.17rc4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

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

semsimian-0.1.17rc4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

semsimian-0.1.17rc4-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (964.8 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.17rc4-cp37-cp37m-macosx_10_7_x86_64.whl (490.1 kB view details)

Uploaded CPython 3.7m macOS 10.7+ x86-64

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 28c5bed3563e8a2f7ea99e369d5df26c2231192c5e066433fbc7108c356019f6
MD5 5fa80d31ac04bf7970caec6cb8af3f0a
BLAKE2b-256 1bc99d6fd6e4d1b654d7f27cfa4c38ef1f96d8f5e0704b3361a4a9f7e9b4e8ae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe23bf48fc499ed9460929cc8fc7ddae3163aa27eb7b64869bdb3c4c9998c1db
MD5 54952fddd19ae844f5e2848013703339
BLAKE2b-256 5361eeb5ba3526c9ca8938070fa5b7f241425f05e76c2d98e44fb9619cd3d45f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1174d3534581076dcca6cba1397d4dc4a6f66cd99cf12a8485fbaf5937843403
MD5 322247b5392831cdec2efd2d3acd225b
BLAKE2b-256 9ee199b3304efa774a5d5fff8d1b0398fc51d0dfc12990000ae8d2a4ed080a31

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35872bd2acf4a7835bbf4c43f0fc09c4b2f9327c8cc76ca5b1cbc9d07f01efb2
MD5 18379ef5ec7c0e305639d344edcfed66
BLAKE2b-256 1d21f48f9f8999ad1a564a861c3226234a96567a32674d0375aa4bd2a7635a73

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b937683f9a90eba944405ddf6fe7564d80cac7ccc7e8adf0e3b8d919506e8ef8
MD5 02c6cb31ab314f6602ed593fada0e899
BLAKE2b-256 21f4d1909a59792f153c63783059b1379b5632eccbf79fd9c4c10d0415e09f41

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc4-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.17rc4-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 86af85cf33fe3f9fb2c0477903c72b38605b0e045acbd22542bf43476d8888b2
MD5 988b512bc1db04dce8e78fb2805a47e9
BLAKE2b-256 f9644f7aefad932f9d0a1667a119be0beea0dd26ccdd2eddb4d48fa4b6428fa1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6042db192a3c7e0eb412bab74e9bdce92e5e5af22b6072c60c0b698200e0e4b3
MD5 de3de0e36ab1761b79507e8e43773741
BLAKE2b-256 51831499157fcaed71d2f50046f00737301beda97c75a91672d81bd35a1be90a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 653fb53f5f51acf853336a09bb2857c56cdaadb1610f0b06d8d2e63250ff3c24
MD5 3a4db230fb130ae198ef1ca5d16f3002
BLAKE2b-256 19ea69710a0dadd2aafa882f0541724601f19a91e89060439e06c73e61bb3f25

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03ad1a456b24a1c43020b136093d4e80f90af2c71290e271ee7d64cf11682ced
MD5 8dce76ea018f536b34322305237d838d
BLAKE2b-256 e6c083dbc3659c4d5129882a1bce34447bd3c7e9ae7c327c50a52680b3805121

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75eb76eb579860c90acbe787e9a7ab709369428957123ba7fd674b198a2fa478
MD5 2a3e9778271f1473aa7ea529437b63d4
BLAKE2b-256 eee0fd4ed5ddc7bcd6bf3bb921bb5918069548d8bf75f8d4c2d9b72ba73b9d61

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 846998c7cda210e56e2255b0ea11b375930ace16eae4e6dde82631866ec99488
MD5 26c264415af83613437622cbdd6ed472
BLAKE2b-256 bfc56784d6032442ff257292f7543c959eb9a81f1ddf115e8e964d257305c6dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abc147e37386357372f247a61ed724003a7cfaa5513ec7b6995a036ceca1ad3e
MD5 8e8c792a11f1b2576e8f342921f3e254
BLAKE2b-256 8b44b7fc57d66cc64b490aff1e8dd9ece22e8c2d441b3abc89eb254ec03d0a17

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc4-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.17rc4-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ecc879f8494addf3024eac5255c16ec549fce52132f677552b39761619b7b0c3
MD5 12b54a9308cf93547694e8dc84658145
BLAKE2b-256 1521274b82d93cadfe4da47508ba35b322c63a61074ef46a9110be46a85b8575

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a61aa6a763564f32a50b00bcf69bc58fba0486980175861e6189bbbe74ce579a
MD5 fd99f812b76c61f82cd0c080f2b4c1fc
BLAKE2b-256 889aafa2b641029fc07b644c9d3466c53eee6b70143446670cd2aab14c4dee04

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 94d1b5f3d15ba9d6abccb55f74b87d0e63781ad04947308086847381fd03ce8b
MD5 845ede0a29b21b066563c4556acf3715
BLAKE2b-256 e099d1cb826f8644a24977c4368f67e2ffbdf6d46f116b4af985b2e614cce158

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1681a5131a242c43ffa655718fee156e548a82c8e2f0629d4c22c7f9e92718a1
MD5 85c1fdd26526fa3e49892274447097ab
BLAKE2b-256 c9ee0422085e786cd6756fb70ed42ce15e6efd6bfca1b96b41ef8b9ecc1956b8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ec0d307754d29c9f246aa6a839b14c2634598d5e78267f925a23b1589270bd2
MD5 cac8b27b580518a6dd99b6c6f0085c17
BLAKE2b-256 e11d075c1a71b632f3af45b21130434ede82998cfec20cb0c11edca169c2440b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d93e58f4a478679fbce856a5387eb13ed23ad44455d06d3f4d1c898d19dac3a
MD5 ccc30d3f95658add334b3939cf36952f
BLAKE2b-256 383859c94ddefa3915e4b52cf80a3699a7411856a4768a2ca4b160e323d75aae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cd73ae1793232dad5f5aaa9c9f2e11eec325e31fdcb59a400ce59e0b40e491b
MD5 4fe45bef25893ad5eab642ed435dc133
BLAKE2b-256 737b08c7a758efa3473295a97a1b561ddf409d6b257ed71f3993bda7d26d3e9c

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc4-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.17rc4-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d297146bcfd71d0a0aca906d60ea77fe3d487a65423fa0cececdd1013db6ea78
MD5 95948e861cb6c650d468149683b5aa63
BLAKE2b-256 6f1ff08d9d528b06dd5db7d917410c7b16fe8669a785865f6ab113026bb9e10f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8893d4c79c82013063d4df27b5127df1819b9e1a404e95bb38ae5ceb21445108
MD5 388d14ad95e34e2220296e9934b42807
BLAKE2b-256 77672292d9b3edec4a3251982de61fdedfb1f9bacc5a876ed927aa440f557f75

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 bdf04221090c6a7db5dcf048e6ccf8ea83f22a56d42d0bf8f12af929275d3002
MD5 7acd71d7059833beb8a89f0e0b3bbc96
BLAKE2b-256 53ed2ef554a961b92b17721187975ebb4726a81db98f07e3eb17f5a4c490321a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53d344e57be13dfeb3bfe9f828e41249c93370d5324c6b6f8c4ab7ac5a2501e8
MD5 82c807281533b93dd19f258e53fc44a1
BLAKE2b-256 39ee67e58a51e6ddef55d99499c9bae5de24c9a58777c2b345a4dc07780ac9bb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8834e81593d67ee22b844dd0d20ec459284db05c39a93bbf46dbcd009cc7f4c5
MD5 49d6ea04b570c46f0c669c7ee02a0fbf
BLAKE2b-256 b46fa40bbe83af2f08901c5ec6ba9382d1c30a9a938c7d339125b1dfd9c4ab48

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0578a93337408303d8010254af3e543e2d2dc7cd355bc3c75faa50c77ef86254
MD5 385dc35308ecb83d7e8dee05298a29f7
BLAKE2b-256 57c2ffd26e8a6ac38c5c9deee030d58371ff84e8d71ce66dc65c2eb68435e116

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fe953517604eb8a68079dd0069885cc5dff8ef62e8421ada3cf0885ac785da4
MD5 481e63be927d464c56f9f4cd387deadb
BLAKE2b-256 baaa19cb43777316afff2ec9b9fde0b263f9485794f64e2984a3ba67136a787c

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc4-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.17rc4-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c50a3134af6391cf278c2c0735f8971930694e261460d9d35d0e14a031a55b3e
MD5 8d621692e4f58e332dd4f1d32313ec75
BLAKE2b-256 a7839882e55b90d30805d21481c271b49006d7b44d1b5b08d1c78a4d16ad353a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 eb93b00fadea9481e63fe1ae1392d3ae098f6ebd2a4110592277ea20efd61b66
MD5 81d195db71c214c2efd7aabadfc33ced
BLAKE2b-256 aea48930e44f3258ac2e45640415220c085548413839d68c2bd09739d3758f9a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 9c00db5a72c66fd3e29d9d77aab87287f84dc03d51e8fd483c66ca1813d4ca64
MD5 f59e8f7aa0690348f04f4c50b69b210e
BLAKE2b-256 1d22c2d3808ee3e44afcd93c9eb2985da255e942f5db9eacda934dd87f149118

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f0334c5611e96acbbf1476223d32a1df0ff5db0e657d68e0e07ad7f493bced2
MD5 c47a003b05862cd4e870c3e88352cb7b
BLAKE2b-256 4b9cad514362d17f4ca7116a0ecf701e6c0bdcfc575d062f913a2375ce57d967

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71d5e7b4f2dd0a1e80872f678e3fdac4ec1a770f7c747820ee5ac5c3f39594d6
MD5 173a729f9d14192318442c49a5684cc5
BLAKE2b-256 f26f76d31c638e68dc4a620a0befccab06284a983f5aa0f1d25eb125c6aad662

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 279903ae32984fd7824d19b8f49294bb1f6233fa16ac9b5e8df3884b06e74a26
MD5 989c441456123aea5c3e12a4b783a86f
BLAKE2b-256 5f5670e9b46cbd41b33d0b3156fbb5047c9402f405d1bc06881d8e93cda446a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74cf1f922f48a5050f89ecabc6f77c0a7cfb58b6023cd376943c26d32909aedf
MD5 acd9193d0568a3704c2d518cc4bc79ba
BLAKE2b-256 70a49ecac83113a5a6f1b666e31a63da55e65cc08b083a09513075d06b81ebf0

See more details on using hashes here.

Provenance

File details

Details for the file semsimian-0.1.17rc4-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.17rc4-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 adc9514076bab3b25e4db5973cbdb20da007cde7a8d3ad79951ee0d69669918b
MD5 cff577bacf8c6388f6ea7fad456f97e8
BLAKE2b-256 8db665db0ca6488f9a9c996e5e72a595b3a554b5511eeed3a3c2357bb00f0541

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for semsimian-0.1.17rc4-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bd8df4cd1eaaedde249b564dc87bc0164a9506b3dad60bec1bf8b49dd3ad5981
MD5 ec1298986352bd8d9a4d5b0b70d8a07f
BLAKE2b-256 6337699ba0f8a00338b4c219ac83af642af66245f8d92537b12bdb53edced989

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