Skip to main content

Provides OpenPGP facilities using Sequoia-PGP library

Project description

PySequoia

PyPI version PyPI Downloads CI

This library provides OpenPGP facilities in Python through the Sequoia PGP library. If you need to work with encryption and digital signatures using an IETF standardized protocol, this package is for you!

Note: This is a work in progress. The API is not stable!

Building

set -euxo pipefail
python -m venv .env
source .env/bin/activate
pip install maturin
maturin develop

Installing

PySequoia can be installed through pip:

pip install pysequoia

Note that since pysequoia is implemented largely in Rust, a Rust toolchain is necessary for the installation to succeed.

Testing

This entire document is used for end-to-end integration tests that exercise the package's API surface.

The tests assume that these keys exist:

# generate a key with password
gpg --batch --pinentry-mode loopback --passphrase hunter22 --quick-gen-key passwd@example.com
gpg --batch --pinentry-mode loopback --passphrase hunter22 --export-secret-key passwd@example.com > passwd.pgp

# generate a key without password
gpg --batch --pinentry-mode loopback --passphrase '' --quick-gen-key no-passwd@example.com future-default
gpg --batch --pinentry-mode loopback --passphrase '' --export-secret-key no-passwd@example.com > no-passwd.pgp

Functions

All examples assume that these basic classes have been imported:

from pysequoia import Cert

sign

Signs data and returns armored output:

from pysequoia import sign, SignatureMode

s = Cert.from_file("signing-key.asc")
signed = sign(s.secrets.signer(), "data to be signed".encode("utf8"))
print(f"Signed data: {signed}")
assert "PGP MESSAGE" in str(signed)

detached = sign(s.secrets.signer(), "data to be signed".encode("utf8"), mode=SignatureMode.DETACHED)
print(f"Detached signature: {detached}")
assert "PGP SIGNATURE" in str(detached)

clear = sign(s.secrets.signer(), "data to be signed".encode("utf8"), mode=SignatureMode.CLEAR)
print(f"Clear signed: {clear}")
assert "PGP SIGNED MESSAGE" in str(clear)

verify

Verifies signed data and returns verified data:

from pysequoia import verify

# sign some data
signing_key = Cert.from_file("signing-key.asc")
signed = sign(s.secrets.signer(), "data to be signed".encode("utf8"))

def get_certs(key_ids):
  # key_ids is an array of required signing keys
  print(f"For verification, we need these keys: {key_ids}")
  return [signing_key]

# verify the data
result = verify(signed, get_certs)
assert result.bytes.decode("utf8") == "data to be signed"

# let's check the valid signature's certificate and signing subkey fingerprints
assert result.valid_sigs[0].certificate == "afcf5405e8f49dbcd5dc548a86375b854b86acf9"
assert result.valid_sigs[0].signing_key == "afcf5405e8f49dbcd5dc548a86375b854b86acf9"

The function that returns certificates (here get_certs) may return more certificates than necessary.

verify succeeds if at least one correct signature has been made by any of the certificates supplied. If you need more advanced policies they can be implemented by inspecting the valid_sigs property.

encrypt

Signs and encrypts a string to one or more recipients:

from pysequoia import encrypt

s = Cert.from_file("passwd.pgp")
r = Cert.from_bytes(open("wiktor.asc", "rb").read())
bytes = "content to encrypt".encode("utf8")
encrypted = encrypt(signer = s.secrets.signer("hunter22"), recipients = [r], bytes = bytes).decode("utf8")
print(f"Encrypted data: {encrypted}")

The signer argument is optional and when omitted the function will return an unsigned (but encrypted) message.

decrypt

Decrypts plain data:

from pysequoia import decrypt

sender = Cert.from_file("no-passwd.pgp")
receiver = Cert.from_file("passwd.pgp")

content = "Red Green Blue"

encrypted = encrypt(recipients = [receiver], bytes = content.encode("utf8"))

decrypted = decrypt(decryptor = receiver.secrets.decryptor("hunter22"), bytes = encrypted)

assert content == decrypted.bytes.decode("utf8");

# this message did not contain any valid signatures
assert len(decrypted.valid_sigs) == 0

Decrypt can also verify signatures while decrypting:

from pysequoia import decrypt

sender = Cert.from_file("no-passwd.pgp")
receiver = Cert.from_file("passwd.pgp")

content = "Red Green Blue"

encrypted = encrypt(signer = sender.secrets.signer(), recipients = [receiver], bytes = content.encode("utf8"))

def get_certs(key_ids):
  print(f"For verification after decryption, we need these keys: {key_ids}")
  return [sender]

decrypted = decrypt(decryptor = receiver.secrets.decryptor("hunter22"), bytes = encrypted, store = get_certs)

assert content == decrypted.bytes.decode("utf8");

# let's check the valid signature's certificate and signing subkey fingerprints
assert decrypted.valid_sigs[0].certificate == sender.fingerprint
assert decrypted.valid_sigs[0].signing_key == sender.fingerprint

Here, the same remarks as to verify also apply.

Certificates

The Cert class represents one OpenPGP certificate (commonly called a "public key").

This package additionally verifies the certificate using Sequoia PGP's StandardPolicy. This means that certificates using weak cryptography can fail to load, or present a different view than in other OpenPGP software (e.g. if a User ID uses SHA-1 in its back-signature, it may be missing from the list of User IDs returned by this package).

Certificates have two forms, one is ASCII armored and one is raw bytes:

cert = Cert.generate("Test <test@example.com>")

print(f"Armored cert: {cert}")
print(f"Bytes of the cert: {cert.bytes()}")

Parsing

Certificates can be parsed from files (Cert.from_file) or bytes in memory (Cert.from_bytes).

cert1 = Cert.generate("Test <test@example.com>")
buffer = cert1.bytes()

parsed_cert = Cert.from_bytes(buffer)
assert str(parsed_cert.user_ids[0]) == "Test <test@example.com>"

They can also be picked from "keyring" files (Cert.split_file) or bytes in memory (Cert.split_bytes) which are collections of binary certificates.

cert1 = Cert.generate("Test 1 <test-1@example.com>")
cert2 = Cert.generate("Test 2 <test-2@example.com>")
cert3 = Cert.generate("Test 3 <test-3@example.com>")

buffer = cert1.bytes() + cert2.bytes() + cert3.bytes()
certs = Cert.split_bytes(buffer)
assert len(certs) == 3

generate

Creates a new general purpose key with a given User ID:

alice = Cert.generate("Alice <alice@example.com>")
fpr = alice.fingerprint
print(f"Generated cert with fingerprint {fpr}:\n{alice}")

Multiple User IDs can be passed as a list to the generate function:

cert = Cert.generate(user_ids = ["First", "Second", "Third"])
assert len(cert.user_ids) == 3

Newly generated certificates are usable in both encryption and signing contexts:

alice = Cert.generate("Alice <alice@example.com>")
bob = Cert.generate("Bob <bob@example.com>")

bytes = "content to encrypt".encode("utf8")

encrypted = encrypt(signer = alice.secrets.signer(), recipients = [bob], bytes = bytes)
print(f"Encrypted data: {encrypted}")

merge

Merges packets from a new version into an old version of a certificate:

old = Cert.from_file("wiktor.asc")
new = Cert.from_file("wiktor-fresh.asc")
merged = old.merge(new)

User IDs

Listing existing User IDs:

cert = Cert.from_file("wiktor.asc")
user_id = cert.user_ids[0]
assert str(user_id).startswith("Wiktor Kwapisiewicz")

Adding new User IDs:

cert = Cert.generate("Alice <alice@example.com>")
assert len(cert.user_ids) == 1;

cert = cert.add_user_id(value = "Alice <alice@company.invalid>", certifier = cert.secrets.certifier())

assert len(cert.user_ids) == 2;

Revoking User IDs:

cert = Cert.generate("Bob <bob@example.com>")

cert = cert.add_user_id(value = "Bob <bob@company.invalid>", certifier = cert.secrets.certifier())
assert len(cert.user_ids) == 2

# create User ID revocation
revocation = cert.revoke_user_id(user_id = cert.user_ids[1], certifier = cert.secrets.certifier())

# merge the revocation with the cert
cert = Cert.from_bytes(cert.bytes() + revocation.bytes())
assert len(cert.user_ids) == 1

Notations

Notations are small pieces of data that can be attached to signatures (and, indirectly, to User IDs).

The following example reads and displays a Keyoxide proof URI:

cert = Cert.from_file("wiktor.asc")
user_id = cert.user_ids[0]
notation = user_id.notations[0]

assert notation.key == "proof@metacode.biz";
assert notation.value == "dns:metacode.biz?type=TXT";

Notations can also be added:

from pysequoia import Notation

cert = Cert.from_file("signing-key.asc")

# No notations initially
assert len(cert.user_ids[0].notations) == 0;

cert = cert.set_notations(cert.secrets.certifier(), [Notation("proof@metacode.biz", "dns:metacode.biz")])

# Has one notation now
print(str(cert.user_ids[0].notations))
assert len(cert.user_ids[0].notations) == 1;

# Check the notation data
notation = cert.user_ids[0].notations[0]

assert notation.key == "proof@metacode.biz";
assert notation.value == "dns:metacode.biz";

Key expiration

Certs have an expiration getter for retrieving the current key expiry time:

cert = Cert.from_file("signing-key.asc")

# Cert does not have any expiration date:
assert cert.expiration is None

cert = Cert.from_file("wiktor.asc")
# Cert expires on New Year's Eve
assert str(cert.expiration) == "2022-12-31 12:00:02+00:00"

Key expiration can also be adjusted with set_expiration:

from datetime import datetime

cert = Cert.from_file("signing-key.asc")

# Cert does not have any expiration date:
assert cert.expiration is None

# Set the expiration to some specified point in time
expiration = datetime.fromisoformat("2021-11-04T00:05:23+00:00")
cert = cert.set_expiration(expiration = expiration, certifier = cert.secrets.certifier())
assert str(cert.expiration) == "2021-11-04 00:05:23+00:00"

Key revocation

Certs can be revoked. While expiration makes the key unusable temporarily to encourage the user to refresh a copy revocation is irreversible.

cert = Cert.generate("Test Revocation <revoke@example.com>")
revocation = cert.revoke(certifier = cert.secrets.certifier())

# creating revocation signature does not revoke the key
assert not cert.is_revoked

# importing revocation signature marks the key as revoked
revoked_cert = Cert.from_bytes(cert.bytes() + revocation.bytes())
assert revoked_cert.is_revoked

Secret keys

Certificates generated through Cert.generate() contain secret keys and can be used for signing and decryption.

To avoid accidental leakage secret keys are never directly printed when the Cert is written to a string. To enable this behavior use Cert.secrets. secrets returns None on certificates which do not contain any secret key material ("public keys").

c = Cert.generate("Testing key <test@example.com>")
assert c.has_secret_keys

# by default only public parts are exported
public_parts = Cert.from_bytes(f"{c}".encode("utf8"))
assert not public_parts.has_secret_keys
assert public_parts.secrets is None

# to export secret parts use the following:
private_parts = Cert.from_bytes(f"{c.secrets}".encode("utf8"))
assert private_parts.has_secret_keys

Signatures

Detached signatures can be read directly from files (Sig.from_file) or bytes in memory (Sig.from_bytes):

from pysequoia import Sig

sig = Sig.from_file("sig.pgp")

print(f"Parsed signature: {repr(sig)}")

assert sig.issuer_fpr == "e8f23996f23218640cb44cbe75cf5ac418b8e74c"
assert sig.created == datetime.fromisoformat("2023-07-19T18:14:01+00:00")

License

This project is licensed under Apache License, Version 2.0.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the package by you shall be under the terms and conditions of this license, without any additional terms or conditions.

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

pysequoia-0.1.27.tar.gz (272.4 kB view details)

Uploaded Source

Built Distributions

pysequoia-0.1.27-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

pysequoia-0.1.27-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

pysequoia-0.1.27-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.27-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pysequoia-0.1.27-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

pysequoia-0.1.27-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

pysequoia-0.1.27-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.27-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pysequoia-0.1.27-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

pysequoia-0.1.27-pp39-pypy39_pp73-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

pysequoia-0.1.27-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.27-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pysequoia-0.1.27-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pysequoia-0.1.27-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.27-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.27-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pysequoia-0.1.27-cp313-cp313t-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ x86-64

pysequoia-0.1.27-cp313-cp313t-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ i686

pysequoia-0.1.27-cp313-cp313t-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.27-cp313-cp313t-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARM64

pysequoia-0.1.27-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ s390x

pysequoia-0.1.27-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.27-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.27-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

pysequoia-0.1.27-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13 Windows x86-64

pysequoia-0.1.27-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13 Windows x86

pysequoia-0.1.27-cp313-cp313-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pysequoia-0.1.27-cp313-cp313-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

pysequoia-0.1.27-cp313-cp313-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.27-cp313-cp313-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

pysequoia-0.1.27-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pysequoia-0.1.27-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

pysequoia-0.1.27-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.27-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pysequoia-0.1.27-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

pysequoia-0.1.27-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pysequoia-0.1.27-cp313-cp313-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

pysequoia-0.1.27-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12 Windows x86-64

pysequoia-0.1.27-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12 Windows x86

pysequoia-0.1.27-cp312-cp312-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pysequoia-0.1.27-cp312-cp312-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pysequoia-0.1.27-cp312-cp312-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.27-cp312-cp312-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pysequoia-0.1.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pysequoia-0.1.27-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pysequoia-0.1.27-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.27-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pysequoia-0.1.27-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

pysequoia-0.1.27-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pysequoia-0.1.27-cp312-cp312-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pysequoia-0.1.27-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11 Windows x86-64

pysequoia-0.1.27-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11 Windows x86

pysequoia-0.1.27-cp311-cp311-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pysequoia-0.1.27-cp311-cp311-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pysequoia-0.1.27-cp311-cp311-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.27-cp311-cp311-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pysequoia-0.1.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pysequoia-0.1.27-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pysequoia-0.1.27-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.27-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pysequoia-0.1.27-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

pysequoia-0.1.27-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pysequoia-0.1.27-cp311-cp311-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

pysequoia-0.1.27-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

pysequoia-0.1.27-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10 Windows x86

pysequoia-0.1.27-cp310-cp310-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pysequoia-0.1.27-cp310-cp310-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pysequoia-0.1.27-cp310-cp310-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.27-cp310-cp310-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pysequoia-0.1.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pysequoia-0.1.27-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pysequoia-0.1.27-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.27-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pysequoia-0.1.27-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

pysequoia-0.1.27-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

pysequoia-0.1.27-cp39-cp39-win32.whl (1.6 MB view details)

Uploaded CPython 3.9 Windows x86

pysequoia-0.1.27-cp39-cp39-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pysequoia-0.1.27-cp39-cp39-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

pysequoia-0.1.27-cp39-cp39-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.27-cp39-cp39-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pysequoia-0.1.27-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pysequoia-0.1.27-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pysequoia-0.1.27-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.27-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pysequoia-0.1.27-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pysequoia-0.1.27-cp38-cp38-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

pysequoia-0.1.27-cp38-cp38-win32.whl (1.6 MB view details)

Uploaded CPython 3.8 Windows x86

pysequoia-0.1.27-cp38-cp38-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

pysequoia-0.1.27-cp38-cp38-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

pysequoia-0.1.27-cp38-cp38-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.27-cp38-cp38-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

pysequoia-0.1.27-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pysequoia-0.1.27-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pysequoia-0.1.27-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.27-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pysequoia-0.1.27-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pysequoia-0.1.27-cp37-cp37m-musllinux_1_2_x86_64.whl (2.2 MB view details)

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

pysequoia-0.1.27-cp37-cp37m-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

pysequoia-0.1.27-cp37-cp37m-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.27-cp37-cp37m-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

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

pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pysequoia-0.1.27-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

Details for the file pysequoia-0.1.27.tar.gz.

File metadata

  • Download URL: pysequoia-0.1.27.tar.gz
  • Upload date:
  • Size: 272.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for pysequoia-0.1.27.tar.gz
Algorithm Hash digest
SHA256 d3887623bcbbbf9245003ad81a1ceff69d597f432fe680f14d84e13711d13456
MD5 da033c7095904e1af258f852e366f1c5
BLAKE2b-256 73de1dac4aed2898a1324f328827ac7c9247dc97ec8073cd6a3fca34db6303e0

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91c3737ceb34610fdc5a9b953b358734881533519a933e33076c2049f0156008
MD5 490dedd4f4c4a2ac13a8dde97e459e53
BLAKE2b-256 1c52b0f3590fc6116e42b9a16ac842f98f2fafd3075903c3830265f3d55ed3eb

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 75965f0dcc09f8a936ae1be668c9f3caf552248fa3afd3a99d2ba68011b988b3
MD5 9e0b8eb702c96201e203e291f0cf9e23
BLAKE2b-256 d5731c37e91cbe9d3580ca87992487a15c0c439704c668a72964b5878030a9eb

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b76fb047a9cd77abbf23541734c012571c92dbd9dd97f59eb274f68522610958
MD5 feb6041d46658ac96f96c9f9a4c181be
BLAKE2b-256 900bbff9de9e37145d3f01599df57fd2e6fcd65b35cf057c23b0b7b277dcbf53

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1009fb6d3612c185e0f6643e368d889c66491e5bdfe8c19f55026d80087b75a
MD5 43be1033302a8a970130686e9270e959
BLAKE2b-256 52d817c2fef63f11570021377b4fe248da4c4179475b408348daf3a5f78008a7

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5a74f269cdadc8d99efac45eb9354ea0f10e0a8d1823e1dff46e82c963eb623
MD5 72fd3757693732168038c7cea9e8a322
BLAKE2b-256 f205d183e0dfbf9e2c9f8c75a6b9b608a73405680e3c9d625e1d4e60c0bc7bb5

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3257bc7b3836f8ed43d71534b46fb41e8246a4f48b87f08b915e3e3b448ee853
MD5 a0a52e62c4d06d81b95da4cf0b740525
BLAKE2b-256 794e7396b028f783ca02eccac5049b4d28087655a4190db6482a992c0ffd78ed

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90fdcabb36dd4b327b083d053a86f44fb8be6c1d5d590f77b5039be98468a942
MD5 2c79cfa0a3ab9905bdb42193990a7ef6
BLAKE2b-256 84935bae153d171d7550680c5b89030830db9011a43e83fb2d3d701179e89a5e

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54547f34fc435471694f44e8d1abf4b4d863cb170c448d58eac4aadadc8d8738
MD5 363ea125660b0063d0d09c9f81b39185
BLAKE2b-256 6eab93ad173dd2cdebb37881d7f40d51ae7ef807e7f53294fc256ba5f3a90b6c

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0fcf8ed7e70912bedb67fee4fbe738ecb2b4a5a9aa409fa40259e23dda8e012
MD5 9777853031ffb9b090d52a2326480dbd
BLAKE2b-256 bdd6ae281fa4d209e9f6eef393a437e949b3f5392b847429bf8341ea81582548

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c709f6ec6d1af05b8ea5589306bce3daa9ba7741d602748f535a2effadd18399
MD5 d2fa354f6df56aa3919f9b927db46a48
BLAKE2b-256 b2ce79caa26278a44df7b85968db0782f56540425609298679d08b3fc7c7eb6e

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13d99f28e04e43ddcf924f278b7d2b775a3ef3f15357c6b7ce793925296c412c
MD5 741a565ede3b237af130fc2fa985bdc3
BLAKE2b-256 bb81382efd74a0db392cc692f8a72032ab70a2871b8678b70bd89b8a17a6fd7b

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71bd9c610e4ea50d3cf47e2dbf64fbe9518c6939829f2d9b55c5ef4b862b535f
MD5 159efa52d05c1e4c1c3f3d92357abaec
BLAKE2b-256 becb825877d0d02b500b0fc0436f577ca75681f510aeb637c69c3b7bd77f7b5b

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 29d14e457bc21d01ae3b94583f3227a6d0918f79d7de851cb31d29c7d244c55a
MD5 47de9a2648264a277d34c02d60791bf4
BLAKE2b-256 a2499b454fe1c740ccd558ed4d8bc51f9a83dde636eab332710f1b84127b219f

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eaedc518bca7bdfc06e0e5c37d03e8d05e840f9cb9fa00b88b93ff7491bc7ccc
MD5 d65ad8fd22e2259cb86276237a9936ad
BLAKE2b-256 9ff21f0411a4e87fdc1e5a6258e478841a3eb89ee5a9bf35640f308209ddc059

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27adaedd5c99c57a292807c6be2e64bc8e2760d55fabf2f4e9a13bc1ad45a14b
MD5 7a3f187324ae513844d8cd188af0e91b
BLAKE2b-256 410aaa7e75714f11bfe00b7f445f91b4d105b0663f40d07bba427880b545907f

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba6a831806135c8196dff8dc4bbe0f2db36fb672a4df26c88a66c92153cf1852
MD5 e3d230ebd54974130542259c12d09133
BLAKE2b-256 894dd11d185affc18c7a52ac414024af10607b8d7a986b1f29d613971542cc2a

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43c85c9db8bd34030b842c4ea87c3a3f6a57b4cd82e0f25cb4de62e7121db628
MD5 bd4543cfba205084d395d26e6ed2ad88
BLAKE2b-256 b803b7bd83019947a3743b5b8c95a724cd852f0b55b1c3b99aca71c6ad9d83f7

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a6d8a4271898054298d98463483c06eeda94b2c8c4e30a83601479cdb839b2d
MD5 801bdffcbf33cd33fda224d2fc15d245
BLAKE2b-256 446be6da0ba94c0cd7c99577c52c2ae3b205bd7e8dd61284643b54d79e594ff0

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f38175f7d045b97b2364be5505f1274e626be44b559b2580a5baaf8de98ae59
MD5 4aac4e8ce2f6c01041741d9c97ac7eec
BLAKE2b-256 f9e484fc3eb12897619cb85cb4708132444e565c253691d0af6830569d80714a

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 addf20766f150554f5fd2439ab03de701d9b23d76bfe6b64002f4571a7262ce2
MD5 0222f936e49de024ce82f16ed3c35b76
BLAKE2b-256 71efc5d7ae8e45ce568735250d4a426a88f49394e01535630ee904ee6abdd671

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc232d157720c68f7ede3d7a9591b72b0d6656377776580ef7cf1608ffa4e604
MD5 caac0927e756894aee7ab66aa3c069cd
BLAKE2b-256 63e4074b958839876e6a5b97b6c2d2d7d92a65c9fe3c24cd70dab09c78643750

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3806f9589e1919560657ed7d8e50d6d976d1f202887012ba2dcc9f53c65d0a9
MD5 fb450a76bcbca1422867f23691efc323
BLAKE2b-256 9e87b69db278122077b36278fb93efe313606a96a858a252cd0baf1a4ffb64ce

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f7b106380c74c34251bdd9a332a9f62dea82f76b12962e3a0e3d8256f82f5689
MD5 b0bd0263913ccd8751ae9463919e3a6f
BLAKE2b-256 00cb9dea067dc74a14fb0cf7c29ee879552961ce477d4edb234fe1fa1540879c

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5c0dcb121263e097b3c516cfedfba971b567aa41df2fd46f744fde41c0ebb8c
MD5 a53e69b52c7f376adb3320eaafb2b16b
BLAKE2b-256 057b1516f94f0afa8375ef379b7a22d8b10c81b7b838402fb0b5bd985dbd5877

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8be707556280f95d08bcb2dcfa6194db0061122d2618e2f26c029b8ed8c0fb0c
MD5 1906bc011ec9d0db02f1c353da57ce81
BLAKE2b-256 cf76cee43d3550facf57cabd1517467a378554db46e4e968b6b9cab5934143cd

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c9c73c2717b12813103179db52f3d0f6476a60f6914348dd78803d469b86bd6
MD5 fdd0c4469c48636bdd7bbb082ae6f0f0
BLAKE2b-256 87966f2d281fab4718c36aded98a361174bdda4d194a9ecc91fccd0b683578cf

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b547619fdb08091f305044a0dc65357e1b5f4ec55694e67a1caab7981e4b199
MD5 e9c3fcb95af9d21916fd1c0a74fd0ea6
BLAKE2b-256 c4660cef0f3562b5cecea6692b864abd2dcfd850522e8d31b380d6f5b2d8b3a8

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5181f4097dcc506c8239ab8c8e6096f8fde9f130989ccd809e00acdf29b81eb1
MD5 571f1b8e2b991cf321fe2ad6acaf44a4
BLAKE2b-256 e121641f54be400f1e1deeebe9f738fa9490c3e1c0a41513379c75eddbb1d103

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33f2a8b5c0d6042d2384968392ae2e6e6599a911631452faf3261c46d77aa027
MD5 090a7360e8cd729f3798fd0146819ab3
BLAKE2b-256 2f92f8a7df86ac951ff7b51cb5252ad5809040c580c811225a2b5a6f8044f31c

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6dad4eb2609cd0d57313e42a77b9ed852fbc18feb89333d722a0d080ba88f5d2
MD5 c85e55f49b0d81de3731253c59e6efae
BLAKE2b-256 06860ed61f7efccf0ef99e250a29d4d54886482c767280a37f72670edfd80922

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 033256682031d357ddbc6b9a0d0d1e3ff3f18ac868d9df2c369ed1bb9ac7e868
MD5 8998c2261cfedc60058b1c6537d78963
BLAKE2b-256 7952a012f5d18762402563546a63f0d03bf06a07b91da9b0f0b4d1a86b3193a1

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a8e06c2f4b81904194cde74356ec121b6f5c7dd5c9b66a8423c271a3344db50
MD5 da08b7c46b3f3cca759434eb4977729d
BLAKE2b-256 e784f25120bce509448ffa111ad6707f795bd12ae15851b1af7e70f1d83bcc5d

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71bdc710fae7caf1f804af51c73e776c3c26be03d7257226fa832a8b88740f38
MD5 2fde3fb5afcdc0708ff0528f684a7e17
BLAKE2b-256 690263caf530ffd6a1389000a5811d5d49d50c51093441fa7d8e21a751064965

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50fa14d1f8c41e8d8d524d72cfd013c36652ea2309a0faf3d47822f2488c6db2
MD5 8fd39bbf5cdb4d9196cb0d39bf2b1ab5
BLAKE2b-256 9025aa484584a0d376b2b8b81bd953914c7e98cddbb3d4702726430f3d3ff26c

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c4f8baf30bdda7c996917836a868e1d31a2fd1a188ff914622d3907b00c0cc62
MD5 3aac42d4cd9ceddac34375e96fb06927
BLAKE2b-256 36f87fdae5e34c789ed686d0c8f771daffa93419bade770378a71df16faf0326

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70ca183bcbbfdd1eda0b471ac208fe17830daceb38c55f08c4ad0fdce00793ff
MD5 6465683e8e539536e02fe747b3d23703
BLAKE2b-256 fba87a1fe25392ccc99e7c376205b48ecad6d9423e7dcb5cc9c1143b6bafd01a

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a88b4b71183fefdc1651dbf4f6968e97cf428f956e57de40fe5222b7c0be599a
MD5 c18a352a543030ff681eb9a49d5cc104
BLAKE2b-256 917533d5a234401b06fa4c3627d44efe835ad4b6e4b211acb255079b4433b84e

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 732c32692788046ecb54baa32be87167163c7dd785fe2c37e73c6dbdcc4f3438
MD5 bd32464c34fa83b9bae5f44fccb1bf7c
BLAKE2b-256 3cb2d5066d706aa5be742f717bb129a6441913e6bef6580ea5a254f99f3df35e

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d309c301ef70838dac4f9ceb597c6d280fdf98be07693a6dbd2c862fc3f936b9
MD5 68963cd38829805537cd38009b0ff0ef
BLAKE2b-256 34b4f81eed88322ebe91612a7f19faaf3efd367709e59467a987842d9a8303f6

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4fcd52e45f61b950ab48899dc4ee333649f103144f311e22fa5cce898830602a
MD5 6ec0e5dafa110c14101510dd6c202712
BLAKE2b-256 42882d098fa4c65d58ab835104d1ff724799623211a755fc2be6e6811a74ccd1

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 094d09f9e248a785223f57ef6081f1f25216128d3284e33fa1b682f7ce3acd22
MD5 f5e2f3c3ee1992dafba106b0b9bd22cc
BLAKE2b-256 7855e8ada9d47d08ec4284cafb0285f5c99f2b09327d94b84f68f47e4b3afd63

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bca031e1f3bdff2be33380aaa717b4418cf6d3c3f84240d3cc6442dd601af3e
MD5 a1fa04822219d0b6d219a7d4456c3020
BLAKE2b-256 a7b818b10dbc25becc10313bc652d0c4729c66876d773d47a8fed9a598988850

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac979d4c6d7ab0f00102391ce802de75f885866f07334a6dcff87f1b695768af
MD5 d1f11c474eb80dfe8950d21a5cfec2da
BLAKE2b-256 da067627d776871cb7082fa5bd8b4a251b3f1f6760e16744f076ba5e723ffe39

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3603e129202da0085c6f75b8969491de50e232c98facb75f31aa2b3c9dd91699
MD5 b3235f3b5ed295a1d53142b390e390fa
BLAKE2b-256 b5d3abf9fab72ef324e2d523f5557ef5a90942869dace2ae7181c32f50deb13a

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e867fc12df842c553f5d93b630d82b767e7e9f054353dd8406e90e862ccdb59
MD5 b968ab2f11c25ee7b2e339542df2dd64
BLAKE2b-256 4f050443497b41e336a0e04276df8556d1e3d3f6f2d140ac7abbe7993cc21681

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f135429d9679c1d9e44442057f48f44a2fcb2e81e2ba1bb21e3b1423756fba7
MD5 9d516e8dbef813c420b1f2cda0a502a2
BLAKE2b-256 5dd2136d4e58dc324d48df35006f97cb0de82e37045e4ef118590c5a689c74fe

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4e81d8adb44556eb957d50d8d51588b4bf04e6de2779be26b03c57d4e24d564
MD5 09d2af5b228027171361e7b13ad10214
BLAKE2b-256 5e1a79a5540d6c809c800e8abe4fa3e9534e52034c40fe995ed1ee1329086307

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 426aa5656742f8fde0438708c5dfb10a080b0f1a40b4e2ea5e033f454e0d7359
MD5 405b76aeadb092517925595a696e31a1
BLAKE2b-256 7d6331c93567f28d515fc974d2891bd6d360909b29bbcaaec93ccca0c37b09e9

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dcde165a07cf72a04cedc98502be525415c00b5a7ab76296596edd9ed0830a1
MD5 6b5a196ebf4d9c6dfc8b83d5d18ca45e
BLAKE2b-256 b36e09e4a956c995b7a423e77ab9b16daf0708499c07ef08f93ddcb92989ce91

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fcf2ee2f7179cb071518cb0c98f689898a6ada74524ec240d21bd5f60286ea7f
MD5 df78e1acdd7e06e0bf8f78a75b99e37b
BLAKE2b-256 6e34db8aa66d551f2f378e6c62fb27e4df338174665d923e50a60f2bb6663601

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 99fdaf4a0e63e90d1c99b36cde2de06e3df552a2547b806656857f6bafcd73db
MD5 2408b4ad7926a5ca1b652b7215dda8ea
BLAKE2b-256 7a06b191d8161d2ca5f04e22ee180757ff5e7554191c9e5cb97c6db9372c35b6

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fb11bc0fe46fa7c03c08245e98f0fc5c5faeb383a9088cd551eaa3c27cf2eb99
MD5 b8475b9720e82fd2837a23242ca282ad
BLAKE2b-256 1a454a0ef7db29263dc3505dc57da7bfef4246da6617b8ee7499e129135a9bd2

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85c325d4c544f05219405dce56a7c66adda8465f12d148e13201ae517bfc7ed9
MD5 a86221e631d829803c707748ee5fa4b8
BLAKE2b-256 5bf1499b432845ed9ea707b627241e35a9ee5c4a81eeefd43c17d545d7a4acf0

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b791dc4a66bab5f8a5d3b274bff0b29fcd0b7472372a072d72c759f5269784f
MD5 b5f0a6c2c58b7a3e876aa7d20fe5cec4
BLAKE2b-256 996a0f09cb1dda09be0288898abacdb6141841c986ac2ea58e6c0de1964312ec

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae80d175e014c14f9a53ed3eb1396dd1752fe3e94e56625096de5dee4cff4184
MD5 983d538a0c22037f0325250744bb6f05
BLAKE2b-256 8a797f453a258a31b124a1e432fd8390a8606250e8f40e82075b6b2be48478f3

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43296c7dafb0ca94b4e29bcc164938156caa86c21270269be1f04ec9c3b30300
MD5 b2912e8c114cc8799a65c03c44ce93eb
BLAKE2b-256 6cc94e13bd7e3e3f67a91a2a5f3b3db5229ca6d49df7d4653b500e842c0bf911

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9dd8b6e5a59b48d68c2169dfdcd0d66152f96c5ccd521884234529d3681fa29b
MD5 7915f39e4e26413a61a6f3aef2cda253
BLAKE2b-256 7edeabcb81da1ed974e1c318f8e1764433327d38f0601268a69ab364d5781d28

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3e5d2db41803747ce3ffa1bb4c14fbb7408094cbbc327c81163fc89ef6a0473
MD5 71c3c00696ab80753b74e56e4ff00600
BLAKE2b-256 8a47956a4371ce8ee9cbf66bd563b39a99bbf4db8b872a6bd097235f0f7c8257

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 210f04d4b43fe2e2e79a53db2071154287ec728a958400e1ce445849907da03d
MD5 d28363c379429b15568a53619d4884b5
BLAKE2b-256 0db216296a8c2eef3ff5c5389f88263a01906ab00ecb90f84114336558bb32b7

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 848879bc3e5c3494ba29e9c435658abfd0dd7f1ac4660f44ccfd5588adf556a2
MD5 2275f626885f2f408da0e747bfc28870
BLAKE2b-256 20804db5fa568a957454d6e75d1f81cd08039ccce92a5a031eb7e1fce7665370

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8069538dd4c4d5d4167bfc5bab6bc4c90bb0072ac0ac9eec19558490e2f8c26d
MD5 8107676412f2c19b7c7a6d3dbe5b1704
BLAKE2b-256 b9fc4c758def5e0cc2c96f6e598357cad7317006b790d73ab237794120f7b6f1

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5be3f0f98079ea09ed71a32460d6976cb078632261aace36571164d34a2ea1db
MD5 98e535c72d889dac95759b5eb7768d6b
BLAKE2b-256 16088c3cc70a8197b3bbe2c2148c9f5d61509120b61b2680729fc61b4f5eb080

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71e2fb3758dfb0af3bb9eee410d4abadb92de790ce2dd686f2599fb92d81af99
MD5 2032d9ed74c6254a83b18ebb79637aa8
BLAKE2b-256 28082ef4781763204f1374e7a0c16d51f8cca5009e65db2bae6d01e156a531ee

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f711a7fbb466af42e866bf31cfb1d8a22853e5570e79ff5c9eaa8b5f4fa53f6c
MD5 60c8065538a6d1ca8251d983ffe81757
BLAKE2b-256 0ad200e2e60023b3dfabd10d3725b4e7062614b64e0e39926a8ecc16ce350440

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 434f77feaf26dbba93c966a704fe19123e38768ecf9bcc62d5f59563dfc4e1f6
MD5 6c7d9a6a3f1d51ee72b25cd78e140475
BLAKE2b-256 1a21c4c3af2e0ad547b0b2334d21894f6a6d74b878967adde29f1bade7986dbc

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2540431bd9d07b532b353c17d69238a2609d8c9a2fef9ed65cb32a0c3a57f8da
MD5 38ad4cda63fb3c4700517cf1c7a8b10b
BLAKE2b-256 8e55f358fb2d1015f2f8738c0fab20bf82190e1524a41117adeeeaec4dab6b4f

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac3671b2f1b4d7d6d860ad6e7589e4e507cc55e0eb1cae77b31dee15bb2da4f4
MD5 c1f464de57e9bad9494a126cc6d582ba
BLAKE2b-256 908e6d86df6a40c33aea824e13c492f2a05a9e27db0a5751c963b11416c319c2

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1995e7a21696a5648cbfd02a84603ca86dc9629d6e4e76f43eb4de9cd3e6f5cd
MD5 0f5b37c39b0e2b4b4f81b0b72d8304ce
BLAKE2b-256 9bd295aeb41ed762973103d681c063c96184b08d17106e0ed675c616f3a713c5

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9babbc0af1ffce5517d1ce423a913c281da2eb329d0cfcf1bfc77e35149dc8b
MD5 fb9c252a577c0791c27de7be74f3c10c
BLAKE2b-256 ead7924289ff63be9efd8b908c9b32e27c17b86eff01cda539ec0aa0824416d9

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4818b2e9128b8e323535636045df7ce19602993645b2758fa7e2ac084132a36b
MD5 acc6adaac6a650879af4458090cb8cf7
BLAKE2b-256 68d7e4fff1d830544ce31fa197a90524d1fcb4e71999f30800b435fb88990d70

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc069f5bcbb1a6a42851c07da94e993eb4c249d5a859aa29e36cf4a8b5e0f2d0
MD5 435cf75b6bcd23b5aba40a06b37bd300
BLAKE2b-256 e334d385721019ba10aa9dc734561e296a83e18d9c2bff8912e9cf6fee2d12a2

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c04471a3079b824b68e3cf764f669be6123601a88d7dce6a2cbf419b4f58285b
MD5 32862392a162ec09cd4bcc2a278a3e09
BLAKE2b-256 f539b9038fa0cbaf553f6c8bde15f50f238ddc611a7f9d57e8c1d30e73e6ebcd

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d085e55d83d4baf60ab1d5b0579cde6963ce2ba94f506aec96c980cae2aa5024
MD5 e873a5e25f34fa24d8debe103cc467dd
BLAKE2b-256 d986af24a0433b7ce626770e5b50b8acc0fd0ffcc51dc31594a40a430a63c2ba

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a7098f04de0cfca82ddc731b98f75f77e786b3fbb82aac28078bd0e2a054db4
MD5 4563d2d778bb87fd1d4b6015776ba3eb
BLAKE2b-256 dd51e7c90efe857012cac1c41174b33156bd1ac5608a0e286c64b0be9fe6b351

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd9c012454f93634a080eeb823c79e27e60c9a5cde64001b7fe52f02aa64a079
MD5 ec5f479b8cd6089a02cd3065d81797ae
BLAKE2b-256 c7ed16447b4ed3a18f3f1fea3d60ce58cd5ea9ebb67fd643f1dbf6123218a468

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cc401b930e827fc28782752c6aa92bc9d4d55e908a234554226b25eece7ee023
MD5 afef45312be4ec9484fdcde6ccca58dd
BLAKE2b-256 9b56755906281e122fd6f329d2314b23d5e79737d131a5e491bccaba5890d844

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8740490e866e761585e34bf0be59f730b87da1cf6a83c00d7c4cbbab514a87e5
MD5 abeabf067f6d9a06b4907aad1a04f81d
BLAKE2b-256 c8c23da89c46589da62449ae342bd0d96ddbc7f6c59fa125236aeb5429f1aef8

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a8a8cf05ad55456dcdc9bdca44d353c3f89ccf636b5d3b4bc4dd9b9b692d77a
MD5 d1208a4052faba298e8f349bd357412a
BLAKE2b-256 4e1b1870b2ba2b2662afbc83b6d87ec124c2875c62d21b302695a22646d8455d

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ea082197fbd8558d15e856330338ab85ef23f5042b6d5fb12342c1b071b25280
MD5 c1f96b119d76cd6062473959820043da
BLAKE2b-256 a6e293d1fc12120c9a42b04b0ac14de9c0909aed2d3222a0ba96e3a224e4f237

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 83986969da332847c94dac387e23ab4b24d74d41e25ba3c2713380874f364b91
MD5 6bd9cf6b8b9e73841352bda7b4626b56
BLAKE2b-256 fcff89c153eb3cd4e5ee0ff2b99105836cb1e1cb01db26403be0e2f30ce4cf77

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82000c3ab67c8e193a9aa62cfc76c28b30cb3f4a42a4c9d946ff80012e687603
MD5 4c281823f8755c9c3dd3dfd59373d721
BLAKE2b-256 268ef66c5e8a12ea842b87d699d902fad53cea14cf94d80294fd08eebd6d0149

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61292d30fc213db0aa465b638ce8798ad9fbf1e4f1fd6b6c7b29812e5e13297d
MD5 ed72958bbae4bce988842994f423a1f6
BLAKE2b-256 6a87d3554cbd526a2394c4b08ad546b189f9d6bf88fc9426ef45f75ff0f534ab

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 13d7cf5171972c1750ba6ddfce573525a04d156c98c94c1cc7b4ff7d6d61d918
MD5 bf252c3e3588a557dea2c7d032b8e721
BLAKE2b-256 4e6a18494892dc038aa9ae9380da586d341fa1d36e22ea8dd3c2d81ef6524ab7

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e7c8b0634120a46af9406ef719a80ecab92189fdfb5a04b3da80f2dca86a0ac
MD5 a73eb7cdfe83b99cce6fb008f2257c18
BLAKE2b-256 9e25b2dec089d167e9b00092dfebeb5f930c536025be4ecfa93459823b8e5e8a

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 983a0a830f3555b1a73bc794f94f95e238241d583fa8a7259dc770e9cb5cbdc3
MD5 5bcbbeaadf5286efa0fd5cbf04c146ac
BLAKE2b-256 7d4e1c49a64f6334371b1fe2a2d82f8af9b201517074685c8453836d6e267065

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3ede2f5fbe470f7f858f56934e84e8161bf7fd86be7f4f70b3c0aaad0dcacf5
MD5 e31ddd7ff2999855caca06626636af91
BLAKE2b-256 9155cea56e6fb1a8708442fbe49d364be52544e7e024abd5c714f6df5d586c6a

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22e759c06d8ff8485d37c144452b9a8f08c1063230dcefc7069b2311dd5eabd9
MD5 7ec589340589a2737701d3e678ec9a1a
BLAKE2b-256 1a3296d1cfdf5f6a483aaecb977778775bdbc7c36b4eca71a75c1d2a9419a69e

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb0494070ccaee3cf7d1359d2dd1d692eb0ce4b97df0521164bdc5f702f07300
MD5 7a6ef58fa67065c884bda753d751a739
BLAKE2b-256 4794c1064c795d8e95a6687eb14769089e17b8ced1b70ebc85e908a3f66f941f

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81eda4d1a3ddb55a7e9ed5f8562c2b3ca9c3c798142b44866edc89f9ec27894e
MD5 46a6a0184830213ce50e97b7e62a23f0
BLAKE2b-256 90fb4ca3b6389150f729c60e50f950d1a1a3394fe571b402218fe53c0bbe8cd3

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 327101b5dab71def0847677a5866816bc0131c00335001fa78733f7eace32fc2
MD5 262bc41e3aba4d7a1d6730ec9fcf688c
BLAKE2b-256 8e7eb366447c64fc2f8a19b0e3e64e55dc78268515797005cbb2f333b7d5d515

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2c044fb68c17b419e8b4b5d6a5d2e2a94e6d5bb7588af11f8228c93e5c13782f
MD5 53ac8271338f564ee7542e9f88e50ec4
BLAKE2b-256 c535e7e0187d79e6573da884c43573662cc7572f51072a2a28c0274665aed7df

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 91fdf9abcb00adfad085c3d71dce86d30ad3f59fd32661f33c744875d53efd66
MD5 beaa91b4dbfd41e2dbcfa21dc1dc89bf
BLAKE2b-256 db5365a16d4a744268982799ce86ee5015a7840a31cb6bca1e17ee3265066d80

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ae5ce5a3ebccf008f6b1b469902d862de65b386198ad5ec712880f66a5534e1
MD5 66cb1d6b15d85f647ed9b769f7d541d0
BLAKE2b-256 3ce90f3d9b225056f81d4260674cdfc3ad53a5a24f92f7640bf8f50487e325d4

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7fd2c8dc71a8628d310dcfe78a049e51e153a7d55a8fafec37e9f7ff791fbdf1
MD5 279d0e21371a93308ec6ef7c543fd3c9
BLAKE2b-256 9a4f3a4c65bae9785adb8875eada9d87269893acfc441e6ebe66897cde9b71fc

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b3ebc5ca09264952782994a65890d277b71c65633c6b7fd50708746770294b7b
MD5 150e23c20d5bdef84669dca4444edff2
BLAKE2b-256 d6c3e03a66609937c6fa70710432e7b440a58bda1569a9aff27b410da8c53a47

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c0056e7dd08fcdb71657f1c4241d287944af301bab885c9f44c15a001828929
MD5 8058bc305c3c3a72cd1524099e20cb54
BLAKE2b-256 4f4bab6b60056b2da83cac76be16ddcc6e05358b8fa89c2a4163b22a1423b671

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9918121ebc16e5c589ac2e6707a7eb8de4cacb2383c8547473c885392dc7110c
MD5 c30cee9a08bd53182704ef8b9457f125
BLAKE2b-256 efd5025e2c5f54c2106a638747be32821cde5a4b9d15ad29c3f185801361e10b

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 61686753a2c9d8bd974314f1e6fc8d7dddf4821c42061e6b81827248d0c4eb41
MD5 787c7fdb9de2354171a846a16ba2769a
BLAKE2b-256 832cb66c981cf79052f5ffce1455cedf8a02a63cc7348d06c3ac89f679990f00

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13043ebac9c05e866eb91e8d41a368a4b22fbf74058e9a32a466cc6178187e10
MD5 a897bead081d570f93048b52164aa2d8
BLAKE2b-256 e6b07929193094568898c1a59993d566c4be8be4f78994003065454a02265122

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2cdbc20bddd2105d3040b626eaff827f1c8dad1d29c9907d22f06eae76273076
MD5 b9d2cb5efa52f4c5cee22630299e32ec
BLAKE2b-256 9575f4f693bea75135a32628800ae689cfbb78cc4d8427e355d33bbadcd4204f

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d511be143b432beef961f1d44479ff266f0b96e846760058e413415b548cefb1
MD5 e01c2b5a93d8be0b43092bfe680afaa3
BLAKE2b-256 ab54fac1f51ed7037b81598a99c548a6c39abc715088b0fe0df9b6dd714d33a6

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 52faa1936129824b36d6cc2e9504e741520e09a7af3369b6cbb43bba5ca8cf79
MD5 f51938e2d662a3d019f2a9b6b131426a
BLAKE2b-256 7c893d1b0e9ac88138b0f724df7b572acbdfbd4efc35955d3a06111d0bd81292

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4dba24b41b1dab7b9301e3631f216f788cf16747c8dc27ca7b85559ada0d3a43
MD5 1bf2f103560c1f393e26126680921506
BLAKE2b-256 e6b390b9a67e64cf53dd21250ebafe79f5ab70725a15fbddb066159854e23203

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4ac9f793ad7c1d37b071ab186ae8f9ade69773c3ab55a13bcec82fd1233c581c
MD5 3546206701c5bc5317fc544b93e46250
BLAKE2b-256 758a288f8156d753e54c463b28cd0fbf3dafc76f8e72256d01712e994a30f763

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77c51e789b9dc7ef1e0596721cacd0e20db0f8af8b1bc313b62873a94ab5b695
MD5 8dd5c2ddd553437abde7c06d630ff265
BLAKE2b-256 2a2a0d76df493aacb6b41bd7eb7ad3bb88e1ba87fd2cd699da15c04efb94bb74

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7fdefb0671d74f5ad074db81882d2a10c92d661e4b3e2a5e6a5119fa60e71839
MD5 76d7d1c2105bf8e436114cb93b277f48
BLAKE2b-256 57e4dd8657d767322b640c1237d44b4fba09955f15e7501047516db693b885de

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16c3b9b4f3d211a3656531ee304da6ea53f835ecac7b70fa8f83f67a204acad7
MD5 8225c988ee0c26872349ef12535a6e73
BLAKE2b-256 b7f00a052aa6fb7f47e433783009a9ded038c751da6b165947e36945b7a04fd3

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e02cff952e6d2ab7b67e3cfd38db9cefc099556263dbb66b88c6c82cea8048ff
MD5 d432844f0f88ccfd0326dddff2a3d4d4
BLAKE2b-256 98894a795b5f8a51502a0919eb84f8c9b09a8c89c583b682ea5002b623c96ce0

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70aa104df3b98623e45f9ea5c4456518c61952f58133a2ad28bbaee1cb6a329b
MD5 b89764c9ee973ddb509131feae7a2f56
BLAKE2b-256 e8113378e5ee60470c04f0002e5a9593e56a973cc86383593b1bf93d439b5ecb

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 813e95822871b83cf13c00c02756c619b840b06d5aa16cea4005868fd2c5af0c
MD5 29d2c536f4f2a602f03bf2bed75992b1
BLAKE2b-256 52b8348037b60b639f159f03d14cd890d9422ed388554b3f5611d796b6e46444

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce87b13ade3e59768ce4bb85fc256916cbfb60ca29cec45fc3940c07d3a00204
MD5 b7adee9393ace4d5eb09ef7bb97598bb
BLAKE2b-256 ff8c51fe4f09571339781750fe2cb7597ec96f1ede319edea56703cedf4f1d83

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 83e9d0cdd91304c03e4f68a9dbf0d62f76cd55c055d3789d0faa2ba0f495b97c
MD5 35c8090d1e08506ba65e37952de6e480
BLAKE2b-256 04c7c90b7dd24d035e922a9e5fe131c76795e85a7da728dbca74699f6db23762

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d1339bdd951425967e1b58b437a21b84d1e5b39a3ef83c92300c9a22aedc4dc
MD5 9d77a6a777965e2a088786e098b1b7ee
BLAKE2b-256 340105bec64391cd81b252c27974a40769712b7825fb18a9385f38c3a3efc571

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2290ababc637dee18d06aba652e2b714f75b263a8a7f7c99d8e3dac72900e9ef
MD5 7aff8044f2f64de0a5676af1a336b26e
BLAKE2b-256 7479918649136ee22d67442cd630b1383aeb02f193ea8b3ee85a21e0c90374b0

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26e188fee855ac3aedd2593f3b7fd0617540f88e3af165e30fdae65d73148461
MD5 7fff4174ab1f505e353a5a4dfd9d10e7
BLAKE2b-256 ed7384437cd7a4f8f494270517c486c4e00059e071b3e78ed223cadcac41033d

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8d43b35a94d552b40f0e864e5bfc764528b7e5831050ab880e4421ad3a6c3d5
MD5 661822c398ddf454bc99317944f78aa5
BLAKE2b-256 73fadbc6a8823618568fff2fdefe2eea5042916385ad162f09dcaf8ee02deee2

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa701afc484eb2dd975766f2f0691ff8a4cb9680b397cecffefe06bfebb817ff
MD5 6d691492ac83801c2e2a0c306787c6a8
BLAKE2b-256 0b777340f0b3c95a6a8b79de471f807214eb78c8e92fe272dd6da1a6b0bf3f01

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0a2412ea3e153ee55b071166c661a6968a6e6b57903605cbc35f697c3c26524
MD5 aec2bd2684ed1c4fb19e42faea5f0dd3
BLAKE2b-256 8c32e9706d9f1a3e04b66f259785cf0ebc18178878e5dce94c62ce6d3edc9e0e

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39e0212bb45f927246d59c8baee7c14457159cbe4e06e086ccded96c57b69841
MD5 b601cbe9d85c4cb94df87aad09dae616
BLAKE2b-256 776f20de5002473e8307dd187522af315dda2dbeb8b8730c674ad902f57df5bf

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4445a996c9a2fea69ef38db4113d4678e7c72c2bf485d62c13eac5cf589ec2be
MD5 d673b4572bd8aee5543da151b9c2d01b
BLAKE2b-256 0e8c08fb8df952d16c24702f5e91145c5b058215e4173bec3487682d351768df

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6eb5701a5b2d2f24a08853219e4b74a8d145d3b101602068f18d8288ecd3924
MD5 b9d52e3422cdf8a45416fa259ff342d5
BLAKE2b-256 50e815d920d097658d38f9877147ca6ed8626c6cec4a61be51395b0f2872feba

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9877a3a89d73769bb58fef1acc600ba899387f9b9815a9926078ce0e656bca75
MD5 d75f1b3b92504b46bdbdef25fa814b32
BLAKE2b-256 1d275fa5d7b5b77cb9ed59b6b21167a25bea6e16dfbd274c37c665613012d118

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9788f0b5ad9990571a8d20e681502846b482c2198042062a8b6bc294e8305ec0
MD5 7ab8c20625b177ffb05563a70c0f43f0
BLAKE2b-256 76ac596866c34af73a71ae8ec93e023c2afedf1558921f55fecb81391f9d8b68

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.27-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pysequoia-0.1.27-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f3a0f00c116f2abf8ae143db071025e3f5d017e5791a20046b7e46b356e4d1e4
MD5 4b4b9544c16f9857618ddd1dc77a5262
BLAKE2b-256 2e970e3982c384487ff81a84a8a7cf20847ad0e63e9a7657abc16565e00f91e7

See more details on using hashes here.

Supported by

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