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

Uploaded Source

Built Distributions

pysequoia-0.1.26-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

pysequoia-0.1.26-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

pysequoia-0.1.26-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.26-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pysequoia-0.1.26-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pysequoia-0.1.26-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pysequoia-0.1.26-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.26-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.26-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pysequoia-0.1.26-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pysequoia-0.1.26-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

pysequoia-0.1.26-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

pysequoia-0.1.26-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.26-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pysequoia-0.1.26-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pysequoia-0.1.26-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pysequoia-0.1.26-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.26-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.26-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pysequoia-0.1.26-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pysequoia-0.1.26-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

pysequoia-0.1.26-pp39-pypy39_pp73-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

pysequoia-0.1.26-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.26-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pysequoia-0.1.26-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pysequoia-0.1.26-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.26-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.26-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pysequoia-0.1.26-cp313-cp313t-musllinux_1_2_x86_64.whl (2.0 MB view details)

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

pysequoia-0.1.26-cp313-cp313t-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ i686

pysequoia-0.1.26-cp313-cp313t-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.26-cp313-cp313t-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13t musllinux: musl 1.2+ ARM64

pysequoia-0.1.26-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ s390x

pysequoia-0.1.26-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.26-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.26-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

pysequoia-0.1.26-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13 Windows x86-64

pysequoia-0.1.26-cp313-cp313-win32.whl (1.5 MB view details)

Uploaded CPython 3.13 Windows x86

pysequoia-0.1.26-cp313-cp313-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pysequoia-0.1.26-cp313-cp313-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

pysequoia-0.1.26-cp313-cp313-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.26-cp313-cp313-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

pysequoia-0.1.26-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pysequoia-0.1.26-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

pysequoia-0.1.26-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.26-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.26-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pysequoia-0.1.26-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

pysequoia-0.1.26-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pysequoia-0.1.26-cp313-cp313-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

pysequoia-0.1.26-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

pysequoia-0.1.26-cp312-cp312-win32.whl (1.5 MB view details)

Uploaded CPython 3.12 Windows x86

pysequoia-0.1.26-cp312-cp312-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pysequoia-0.1.26-cp312-cp312-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pysequoia-0.1.26-cp312-cp312-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.26-cp312-cp312-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pysequoia-0.1.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pysequoia-0.1.26-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pysequoia-0.1.26-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.26-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pysequoia-0.1.26-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

pysequoia-0.1.26-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pysequoia-0.1.26-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pysequoia-0.1.26-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

pysequoia-0.1.26-cp311-cp311-win32.whl (1.5 MB view details)

Uploaded CPython 3.11 Windows x86

pysequoia-0.1.26-cp311-cp311-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pysequoia-0.1.26-cp311-cp311-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pysequoia-0.1.26-cp311-cp311-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.26-cp311-cp311-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pysequoia-0.1.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pysequoia-0.1.26-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pysequoia-0.1.26-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.26-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pysequoia-0.1.26-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

pysequoia-0.1.26-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pysequoia-0.1.26-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

pysequoia-0.1.26-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

pysequoia-0.1.26-cp310-cp310-win32.whl (1.5 MB view details)

Uploaded CPython 3.10 Windows x86

pysequoia-0.1.26-cp310-cp310-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pysequoia-0.1.26-cp310-cp310-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pysequoia-0.1.26-cp310-cp310-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.26-cp310-cp310-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pysequoia-0.1.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pysequoia-0.1.26-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pysequoia-0.1.26-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.26-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pysequoia-0.1.26-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

pysequoia-0.1.26-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

pysequoia-0.1.26-cp39-cp39-win32.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86

pysequoia-0.1.26-cp39-cp39-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pysequoia-0.1.26-cp39-cp39-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

pysequoia-0.1.26-cp39-cp39-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.26-cp39-cp39-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pysequoia-0.1.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pysequoia-0.1.26-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pysequoia-0.1.26-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.26-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pysequoia-0.1.26-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pysequoia-0.1.26-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

pysequoia-0.1.26-cp38-cp38-win32.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86

pysequoia-0.1.26-cp38-cp38-musllinux_1_2_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

pysequoia-0.1.26-cp38-cp38-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

pysequoia-0.1.26-cp38-cp38-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.26-cp38-cp38-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

pysequoia-0.1.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pysequoia-0.1.26-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pysequoia-0.1.26-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.26-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.26-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pysequoia-0.1.26-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pysequoia-0.1.26-cp37-cp37m-musllinux_1_2_x86_64.whl (2.0 MB view details)

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

pysequoia-0.1.26-cp37-cp37m-musllinux_1_2_i686.whl (2.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

pysequoia-0.1.26-cp37-cp37m-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.26-cp37-cp37m-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

pysequoia-0.1.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

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

pysequoia-0.1.26-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pysequoia-0.1.26-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.26-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.26-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pysequoia-0.1.26-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for pysequoia-0.1.26.tar.gz
Algorithm Hash digest
SHA256 229e32bf9e1ed5cfb3b2112d2d580ae43d95701e35033484247b83e6df1a9172
MD5 607accf450dba1f57e7c5adf0df9540e
BLAKE2b-256 f679696db41721d9667c6f16bcfb1e6e4819976e11aeb59903cb3bded4e98ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54dc777b31f1a069b1f98a0d14ebeb19e4a0a70fa14a8140e53e498b661c5cbc
MD5 05bd02b589822976dcb7926acb100de6
BLAKE2b-256 2bad81082d4c9655d251a54119451a7ff3375daf0497987ef8848db6ce64a55c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e57a341e272e537237c6703c65ee0ad55f8b66f66cabe2ad7504040d87953ddf
MD5 f4c33810d6ee8466d4627a054bd50030
BLAKE2b-256 5a050e6578fed866936f8c92c135e8ed72937f8ec65f0eed2773352fe63d18e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b833c016799309aab8e283169961fca247cd50cd7353f5c0f0facdc55a48ef30
MD5 083fcd49b38cd8e6002e24990dcc7642
BLAKE2b-256 d70f02123c40d25618a5320ceae327e6d915aae7eb2359fafae9da221498130b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb976a72e3bb1156faa01e1f6e11873beca38206d09e91ad04f4624bd5382fe4
MD5 91ccb8f5c66af60e6e3c4769fdc8b9da
BLAKE2b-256 0c3109fef8de1f59e047129eda3a0adf570d7c1fa7fc8213de8d854ca6fc0d8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d770d0d79a8fbfff4ca568ab6a36f4cf20280e2cfe44bb912b1404fdcc290858
MD5 d91bf77d6ab615727fa3d43b396b0fea
BLAKE2b-256 12d161514fb2dbe7bf63a0a3c8b30d78cf28aeafb80c60f3d98886e2b1f69e80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f336b7d34a99e2c2eea4ab912f8c8c5e5b499fc7cd5f8fe9e1fbca798d040c77
MD5 8eba9e62ee37bf3a1d3e8ee3f19fe67d
BLAKE2b-256 dc160346218e56a7a27f6ea030ffd4b0da30c19209833c09c38c8f33c757aa1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e6dd7105bc5269a55923d2f021bb53599c2699730d8f68144fdc6758d5f78b5
MD5 18a9470fdf362636623ca35a9a49536c
BLAKE2b-256 9d04453ad291dd83423de6bcdc50eafd8af277817007a472c73b52ea3217a9e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab06d7c65ee57a1df0c93fca8c5ca78e6fdcb01ade497d820a3a1af253b78cf9
MD5 421abe827d806f9ae790108b58f67563
BLAKE2b-256 cb543a18e28b12d83a41b5f54319e59601ef80de70b8723a5f7caa686c98c0cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba4298c1c0b3b6fc062e7c0ce18d9126268b532d904a21aa623805f1aa0a358b
MD5 c29cff59cff30a903f9eba6556da22c5
BLAKE2b-256 b1490beb488c87a0470cfbe0be9ee4d25d0cfa5d1ef256ab68ab6886797e22b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 146663e2ebc181478d82a5080f8fadd58b4b624d379e674721cb9b254601088c
MD5 493d78d9c7d15beac37898ba81a798a5
BLAKE2b-256 74c2ba87019f152002ec772dfa59095c5ec677af667145324a22d832b66497f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 731eb0786d2391c36bb204ebb525f7ff9223b6c5851392bcd5883d1453f09381
MD5 946f9d163fcd58bac9f578d203068f12
BLAKE2b-256 a9db92ecd5dbb4c3d1de158208fb69681195e020177ab016cb6409fdaf657854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e70f654b79366c47b5ba4681e13ed475af0b8e421d3b3af1795d20875ea4d5f
MD5 6ce1597a8af4571c590076e30a7f67f2
BLAKE2b-256 2893522ac4b129e1c5effa9c3d9386711a9cff637ad2e1ad692460331ec88064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 19579461aa6ae575b1ea333e9844d6d1582a87e0e854c15379fad4c809c67d6d
MD5 54442f23c631ceb2111f725a0647247c
BLAKE2b-256 2a3c31fde1307cc4e21e841882bc7e7bc7a78d979af3e60686915bd3057f7067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8e4c80cb3e4f91e294fb23d81b5960f9d391a562e2b0e1c631411aab724944f
MD5 6faf5e9dd7c0a9d8ac474e1e39e436c5
BLAKE2b-256 54b795c8e6dab4548461ca4d2f2d78cf9ec53fcc67d00db7903428be305bd248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68d9e0f567bfe09452df1bee4c14013b4302a0cf3fdcea547c2aea21c18ba1eb
MD5 cc04fbbbc84027caaf7c636a5d2b6dc6
BLAKE2b-256 db7b5a5eabf609cfd2601a884f881fc06f0c849c3785923fe878b3b03fdc087f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d59ee70a1a07fb3d8e58404def295c566f28b5af3d967761514b8db73025fbe2
MD5 a6a034de10d8877777460d380484588d
BLAKE2b-256 932e1f9ea1f59befe8c3373b9b6f9aade3e050facfcf6e0b474fd1e98a6c99e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da9e9c8188022a9619655f4b7eafa988d749f9489a93aa2a98b4f46caf937aac
MD5 8b4b017c80fa3d866dc614411a698ada
BLAKE2b-256 c9722ebcfcd005bd71eeca9ae91bad933cf91f9c05760e6519e8bfa8e0c0a15e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa765d0be4983d9ab409c193c3da040e94b683ba0459a4db95b5d58a821afe75
MD5 c11c582d48250c8cf91f21b157a44285
BLAKE2b-256 3c6c3abc1158a96a8d4c77ca6c21d2a39369b5ed5bd3fcbcec53f3f52542ede3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe2c35395f5c633d2a5415915cb3e14573094cb910a5c8f132124a2321112bf1
MD5 ef5f5e4617926768b3f7ede6d99f370d
BLAKE2b-256 4bd26daf6785812a0b43ccac7c74939ec26d48dac1ee1589bf84793ea6291ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 506cbc210b118e30fceada1d6aa9514744d9933d09ca54bc35ad5d7035245fb5
MD5 5f6af0185df0d22bb911578c9ab1047a
BLAKE2b-256 b008d36178f82232651bc2c87fc2e168f638fb0652ce9871748bf769f9cdeaf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5b2164161d6737e94781ad80f79fae39d037427b5d7775e65afd35cadb5c9ed
MD5 ce95dd9c7d7b7369cf409f05d35d145e
BLAKE2b-256 49953cb5bd73e2ad5c387cc7323bda6bcf06fa1acef67eeb0ec2441e258698b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d91aa98d7c3bf8d0c2900103ef603745f64012668c30f150b2de819d539650a
MD5 c3ffdd746c7b3935be01dcededc3758a
BLAKE2b-256 f859e970b92a26a7565de11b84ee1e255406dd6af98e6cec8acafa988839e60f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 daf013848c8fdc105d2ab24fd6c785c72746cf51cf302ca8ba815830b47cb732
MD5 b9bd3da650d69f49d6ae003d31a1690f
BLAKE2b-256 c2642447b6729359bc35da45b3dd0e053fb206ac641fed3a9eadfb9f447bb60a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b257010bd4d2677e95709422db365e5669575252a6dc8dc01c50d01956b4f247
MD5 1408d9bfdef2372f901765765cbdf1e1
BLAKE2b-256 0edd80c1b803cb0469e84628e410c68dba5d58ea713fa4656956a7a6cdfa3ebc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bde03f0259e2cf589443769c78fc0acb87b00b9f26b0244dccf9981650719813
MD5 ce38e24d2d39da47804c68ec96e41c40
BLAKE2b-256 c0d42755eafc7f850beb3036dc6ee71c54d296ef727bcc3e9e3150b57766addb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d1896bfb9a2b4cc828caa90c61c87ce5a646637b6008e0f625a31c542f588ab1
MD5 88e0b01f3c6a68cf9f0062f4c39dd26f
BLAKE2b-256 3b97ee60fc2470db8bfca674410e809254a371a0087c798ecebab985ff17ce29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11934016cbf2c4050acb88985dee9a7eda63cb5624e99f982345040ecdad30bd
MD5 2872340b2f17ca44f1fc8a4a92a82c19
BLAKE2b-256 0d55db4ec43559dc2c2acba9eb8b482e1df8d58918271e33aca4a5b78377fd47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ce8c93d086435c420f46a5206f7f5ff9ad55e3deab1d1a9fd3cfc37e5fc911e
MD5 085d644e96457e83734b727a6f7afee1
BLAKE2b-256 bcc9452beb395f62ab213ecde94eaa5dcc1f96dd01a659bb7f85d9fcbf7bfba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07300fd33cab62e9da79d3f9c74cf894bd044ead5297734660b72c43d2d82c98
MD5 dedd209ebe232dd3ed6bdae2fb273b74
BLAKE2b-256 df1dcb9f6713010962c36634e9f0f93537d21e9036de32333022c1d3b99014b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 428c264d1b98c9988ba05c228e210e0e036225b78aece325081008407abe6059
MD5 148288d81b1a0f0778849041e7bce6d0
BLAKE2b-256 52e894c660b17628ed623dd5208137478d00b6443b95b5f799347dc9b6c78c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7b824eef01c6092ccc8c5826c094b046e1bb6fb24661e2f78e713aee2c4df8e
MD5 6ee39f485f318f68c5acdd51d80bdf26
BLAKE2b-256 63959b81e8a1ae5b2d6586e50bde83caf86a26335913476fee0d0af3ac706105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e02837653ac909a3cd83274baa0788111af0ba270d9f169833cb9c74d02073e2
MD5 e23d2f6c0d8a7f3c155b53ff156ed4e0
BLAKE2b-256 dc9f3f79fc97c6a318d5e0e3e43cf94cb711ef55cc53b315d7479e256bf339b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d90204d73e1962663f4ff75c5dc03f3263a45ad513c772161cd6d089c8238561
MD5 0f4b45ac77c23a231268cae1e0ac7a65
BLAKE2b-256 13faf028c343da397d987497079061fdaec078554f646f8f4ac1e0b261850786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 299c196ca3962155fef74b3fbfa22b95430a293ae681f86156d3f0bb4a30f9c9
MD5 87d33781a63059ac4583dc0e4739060b
BLAKE2b-256 e63bff6e739593d43d5b93b32bc5f553f4a5d19272520276b6471d147eb6594e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0a94ae8c023d53ac024d27f52cb74ea7269c7cca2132d4a825649f46d31fadfc
MD5 3f2a7a71e2ecddd0836930805e5c5bcf
BLAKE2b-256 d3f774ed7a81a8c846fb5af745d74261bc004290a9755019d7b1a2c1ad3786f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58909147b5d890695c8d9cc0d17d8d4787ecc9152efec98615fe2a27ecb55e86
MD5 39ae0ea007b75e2f15ce17952ce30dff
BLAKE2b-256 eddefc007859c343b9419b87c24759719a830e68aa10055ebb088ef5b232193c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4ff5b024969c99b28a5284741f4e82b44a862200b33aa67c0dbe5e76c3861c5e
MD5 0f7a8e3f81108ebd5f9621c68ddd6a1c
BLAKE2b-256 abfa0eb7a30e3f13fad7d43ee8fcacacf693d2841dd945c46fd6e26350efe902

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9fcf262f58a75d4ef354f1e0c44785fcc24bc49d0741afd63834e1ae20f67062
MD5 432506a0c68a5ef4efd42dc22e96f260
BLAKE2b-256 d1712d3affde0729d37187087ab33e01fcdfcb1d9b9e2efb7310acd6a0e801b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f93e4b1f676f6a64352ebcfbb1da2beb6b42215ce2614e36d3e5a81d63b2bf3
MD5 e8c162a0318ac0c741184d5564fd5fa1
BLAKE2b-256 bb8bed3a8e91424c8e96ba6d8e5e51c83dd2dbf3149cc33b025aaf48d0e7b0bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c77acf570d1909781afb8edcea1bb245cdfd7cafe8f7b5ddeaee65c41fcf3297
MD5 d955d2ef4c0dc92befeedb8a5b4c6389
BLAKE2b-256 793b5fd1f1ee0dd57d5ba17fb978072664c3597eed739c5850a0ff6320b377ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c30b76d8615d16e8f07764d9c37a440e3d009c01efb9b16da767e89a2208c1ff
MD5 d9fcf4dc59345c10fb01652fa5fae53e
BLAKE2b-256 e81567bfd7902807b9fcd4512e164f2ef96b1f1b470a2a0a6dc675f618630d34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2f9a51035f02b0b7a55423eea6326f3b9cce5e30ac65961081291def545dc74
MD5 c8989d2c451c982a75a7cb390dd99d84
BLAKE2b-256 f992ee0630eeaa41e84fa8ebc7887bf2b7b072ced1b60da8ed52fe9a3b126818

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb3e4c6031d7b0291249b9583f6af36e1d555d930a93fbb5683d48a24c506bf7
MD5 e3fd78062e74f0eb3f9dd1fb0185048e
BLAKE2b-256 485117bf9484e78bc08cfaa528c5c32497cead30dfe4509f9509aef1bdf191c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49e4f47c1d25619fdf21c65b18d182993e0e28b79ad6bae9e73a5f86cf2e15fd
MD5 c2763fe00adda3d6443640d4000655ec
BLAKE2b-256 f761ff82cd2b6b29ff13bef3c07853bcc3fcbc4cab176b2c50a4da6b997dffe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 951263a4ee8422470b7b1332688c6d5f296b87676ed2fab9110e3104da52474d
MD5 33633ee745154b29de7f336017bd08f3
BLAKE2b-256 3b0a9348f4a01524073f6079e25ee5bb2ec2c51253377b483446e8925938f16c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39087b962420ada8467da2f48379ae5db4ac8c2c1b14c69e5b3bbda5eedc2fd3
MD5 9c3bf1450faa7802ebbfd8274802cde6
BLAKE2b-256 552e7b024d3d97b321267f5f1675e2c5f93e70e6b9f921583250d4a927d93043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 679e9515ac37677753391ac70574e43c8eb127c3b5226fd87f207c46e9146532
MD5 80036f76af5faff64d2b8e8435a3d8fa
BLAKE2b-256 45f760f021a55da28dd705567b1eb1bd46c1333b0eb178f64a27b1e5286ede18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c3ba370ed892366dcad236017092de0f541bd4ddf60d30b5eadd0bc7c458005c
MD5 6b21436864ef7f8d100bb83c5c3f2185
BLAKE2b-256 48cd72c07f82828c2636a23b0ccd727827b6f7fd0f056eaf025d692c170d7b10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d08dafa9aed5aa6ed9c7b6487dcf408ff902be0d4250fd4421689c30e07000eb
MD5 923f2d7f9968c733221e4a07d5995b57
BLAKE2b-256 7d1263bd4d665fd2dd96037ae9b92b66b368a8c00e1f571c35dff929700394cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ebac13f7a98260f9be37a9a18ad7f24174ce3348d03a50ef28dcbeac8eed0f4b
MD5 372f6850190bbf5ad0e90672974c84b4
BLAKE2b-256 78e48573f6a7fb98c97222548af9ffea72eb2db9b6ad8888692e7d9a2bf7bb7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8bb0e9995f34fd5cd0f486978c213907ebd455edf30692554ebf0eb4170129f7
MD5 e28608d9fd49ca093dc0c2af5d0fe336
BLAKE2b-256 4c3184604070796cebf92c9b1d91840634db22b880d3f090908a557d92b66cba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b84fa2c09b5f4f73833b94220af41245445e184c3291b80f361ed0bd5e96b66a
MD5 88a146342148e7ae9a693d9499e880a7
BLAKE2b-256 09b0ca3d8193bc62ca2bf4aeeb116453c5951bac882c34d5d7fc9123b591c102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0fdbd76b3c70be251c642a4457b755dbcf7718e1efb389a93e72413cdaaae896
MD5 8ed86100ad228c09ed1c8b8dbd32dd89
BLAKE2b-256 f75806535925372809ac211c254eb1d409e0ea683b7231b20ffff6b3767bf16c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 622e43445e8df0702cdcee880196163b51a726b993cad5f82d12c5ae7097d990
MD5 1f72ab505f5ac736e7aa45f1c60a939d
BLAKE2b-256 07b1694520e556ecde7da0b81efee869ab6133135f870efe8204fd7af3060a0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 787e90abad1fd1bf88b6b383af6feee8c6904bab242161991a3ba4277112f657
MD5 e9a93349f4f62214fda36a59682cae4c
BLAKE2b-256 3f106f749f3015f2674f18d9b4925b8166df6eef19c8afa561d9e125033be8b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8774d5542b30bc5aab136ff2912f9896c84b8078f2a06582da51b34595fd6786
MD5 6b7b5bf904976ae7885128a4239bb51e
BLAKE2b-256 5bb42fb2ef3f6050b6723bb23a393a795505c4017163faf441cc25d84c8e7ee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efbde456edd01d30cc9a7050c2ae59b4b481ba73777a92164a829fef35802647
MD5 37d1b64675753ced06c106db4809ef26
BLAKE2b-256 55691ef1c0b9037e3b7fb279bf50bb5cce32c62a88b860b16b84c119f59471f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 040e8f90a4773f4d60e519f648bb3ab396d9412ab290fb6b0a482dba26aebbd7
MD5 f7e39f063ad34cec76e8ca2a5b5a93ab
BLAKE2b-256 6adfed8e0e5401e1624b169139c2c96ae0c29b756355e5b0c0d11e6b04aa7a0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08dd696885fec3316c4ed54d1d1d733e91928d2dc98a78826156a818474a0ced
MD5 a3c8840e145df61554aba5b80e532bab
BLAKE2b-256 a8394ff378718bad7c741527822e6a48bf6beea2336fe1c39cf248a002f6a518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9997c84e2a45a00c31beeabbda989f5ec2b84b8902c6bbae3246bc4215421713
MD5 8b451472133977ffa05f1904283367ce
BLAKE2b-256 5ac3108edbe20877b58eecdf96befe6a1129b594d8c931ae112254db1d06420e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91b38d2bd1ff4be0edb5f843fd8417300f844b13372fc768bf5592630fb199f5
MD5 d79207e3b24a54f852de962721f8d2d4
BLAKE2b-256 77601e85f7cbaac2729f40eba43b781dc48536f3a57ae3426b947cc9c9c69612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d76cf0b5e3ffec08b16f81aec1bc19e6b3605dc8ba8e1370d2a8d43743cee9e
MD5 94673fbbe401344994ba141b6cc87247
BLAKE2b-256 01f44a6c412118ac31bc5d726d7bbef2e78472e1e919cec9d691369c7f4dd784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1f0e3cfd40f05f5f17896ddcda910e33f7454e515f663b27916b8d6aa6b9a51
MD5 cff6b19ef81f4e6bf58f0b6d0d3d4cf8
BLAKE2b-256 543da848cb4bfaa3ad3756a945106a09cd5201ee39e8f02c3d67e4151670ec6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd9f1c835280d20287f78ba67152fedd11234d940b07fe19c5afacf6f439efce
MD5 2f8a70c4aa3fe64364b3e4602912e340
BLAKE2b-256 3695be1e79e1c2d791d091e22cb42b59099df39f768404062a370f01d2581cba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 90f3832a7f92c01b453020649b44faa6e9d271f9504b3c9a3d18ba7f69218b3f
MD5 a64ef350cd83003577e78084d4b986c0
BLAKE2b-256 b7b8cb842e9e2add4ca64c9b4f83f93240a9728ae096a87d61c86f7fb23e4cfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9134968e1261ad59ec0b5fd98fc63940b815d2c533d10b2b739a3d1197b8adac
MD5 3a8d820c04c81a1116181799ff25f243
BLAKE2b-256 ab597c3f9d19c7cff8b420a16db386c2b1dcfc82b609a2a481bde3d6c0717320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce1b11ca07ad3610859eca34c985be3cb4007c5efa16bd24dc519ad7df6e96fb
MD5 91de8e354d042fb849b5a2f2e94fedcd
BLAKE2b-256 a1e148034d94cb3ec1540ff50111c4386bfd8b67f0c642f58f4e3ac5f29564bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9660ce2fde92ebef8ff93c75f7b2c262c3029305bef313b31fe27b33c209cc17
MD5 d6af2f1a8eb9b7e75f3f4754a2a54a06
BLAKE2b-256 57adaeb810fc1ee476167ddd11b284b1cefdbacee71ce67865719b095c962116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 55b2107e868b8aea7776f4475ad3c36973394976766afa91e860c32d9a246365
MD5 665e652d25428a9f746f0b664246a8dc
BLAKE2b-256 6d9d5011efba163df0545f34bb04f0f811414b42255b47f5474f2a60b117ab92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41bdcfd727342a31c1be310c43d5199554517cea9d895f82a9ce01e87071f99a
MD5 873eff23b438485fee29e69f2efc7d64
BLAKE2b-256 4c171f13477075fe1dc825be71e003d54585d7644f48de790fff178efc1aabf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27255359161c7ab76de848abc23b482e20edc455ea86ea37962e262b101864e2
MD5 a9fc3f27a5bfdab00f79d746bc6f3ea7
BLAKE2b-256 665de00a05d47ab3184b353af0781ed2c5a24eae9fd3cb52820e27c8b681bdf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 049e9ce36e9f7ff198da4deed004bc7ebcb78898e0205f0acaa6623dd4d8909f
MD5 5366ccfb332b6d8d61e2d453e63f4ed3
BLAKE2b-256 8b245185f854e74b93d824d55c564d9fc4668c03e1cc4e9c5fb6ab93b413f083

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac16343c43adbe16c9ab95049bcf00ff9a3169bad211b8edd16019bf6e473193
MD5 1acca156d669b8967db79d44a9fe85a8
BLAKE2b-256 9968178bd686c1b8356dd52db3b13fd411864dfcf4534f954287cf58fd9b5553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2aadc6bea9dc6af415b604bf8099e2071e6e1b1ea1174e42ffcdedd0c86a6045
MD5 acba36d1ac6b23c8e0df8c5e24fe6927
BLAKE2b-256 9f2e1e3f786dd9e5ec9547c1cd740b42640aac51978cac7f9fb6441ecd87a1bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cb85beb0aca735b20b3961681c0493bfd9ca9f422e2d7378e3f8f879975480b
MD5 b4c68fa9b5e40157ccb32b77def9dc32
BLAKE2b-256 e88dc897a1d93575a5794969ed1aadc5a69119b8d282cdd088f366b9beb62519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4af805920c0ef6255ae815fbe5780f431ef0341637be0c5f6c3a372393243046
MD5 e1f54599a3981fd743950a6e51f9e4a9
BLAKE2b-256 d21f619872bffee3ff6eb488b6225f936e6d21691f32532e7ba4b61304f1be97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52406651f3649d9a2d5dead1d923fc1282f235e5141938378a5c683b942f690b
MD5 664a81c7b9470846b911613cdc4f6f77
BLAKE2b-256 74d0dbe7afa94838e37459609d4b0f59c4c977fa3041ad0d4fd5efa0f11237dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce02906f8427bcec4a83fa74e6f0797eccfe515ffaee40d318d0f8476425992f
MD5 8796c473194b66607b60be2ecbd4a07f
BLAKE2b-256 d6b2870c0aa7fc1bcb5790be1b6bafe1527d961241ecf317a5cd025daf159547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e27694a659db2a7c4729468ebddc2e6afaf167c295a8a602a8f18a2bc9cfadad
MD5 15ae2328bd7c56a9dd2e48f49dfab613
BLAKE2b-256 61f76df80ab91e23dfeaefe1ced8a3abc9e054a9076b7cbc8c8df68eca00121a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4dedf0ff6b89422a7b80f811d85f8a3d42cf2dd28cb4ac5bb839a27ec6e4ea26
MD5 96825ddc77ba0dbd3a0a140747fcb936
BLAKE2b-256 f6d55973e85c6236ef4a1829501cfbd0daea73ba33d96e241ca1caa7b3249377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65a8c7b2810901fcf06b79dd87715fb2eee4d04cb9dcaccc383c2448afed30e9
MD5 30ce582899610f599474f03ec7cd63c7
BLAKE2b-256 e803a6910e485b7a88e698d29e0b37e15380c616572b8f59c5d7f571162640d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68333c0ed3ffabd255617c2ad1097b572c960748ac901c034c3a22dc8cbd0a39
MD5 148a2704a872d1ec3aded8e5a6037e36
BLAKE2b-256 21b8b2977a3770c1be66613a3b702c10db1f643e0680bc5e1dd93dfbd67d12b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 54a7bdcb93ef4d1fc95bcccab345768fae6fde43baac03ab9b2c572d1534d3d3
MD5 7381ebbddc8ebd14fc7c9bde9adf612a
BLAKE2b-256 32ab08a372e11d17005388d0ef282ff8ff623fcf3e366fd51a9cb124239b451a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6be8fbdeeb4cbdd2f8e7d97cd1190126bb3973290240a8bc0822ff7fa2f578be
MD5 ac66715b7b6e47905dcfe4063d104ea4
BLAKE2b-256 79560a7bee05dc028f7e081d510b20ee41cfb146218185d16ecd274bbe89fb56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41c5ff5e1855d55b9631614e315a79f9e8a9985a89e62f2ddb3e7a840390b577
MD5 97a9ccdf6e3ca7eca4b8529d1de25a7b
BLAKE2b-256 9737078b7c8b60f800c2751842ff74223e1cce0d1225601a3b0a058e8a18e794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a6d51b9f6e97f82d8c728d0bbe83063856ddf112ea3b3472fee7791f0d70675
MD5 81b40e620d6f925ad1005a8a3ba3f019
BLAKE2b-256 98e184c69155a572cea38a914ddbaa3d19c5592a65e99adf9e9d2c4b7418f94c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 384d819b1293a8d21dc30c8c354905a93abe1238fbe25414f712efe0c41ced7f
MD5 8ab339ad137607d386e20164f5d2a321
BLAKE2b-256 9f1eee50c1f3ecfa6a686ca379924a4257887b9cc6d04d74f3242b1b460079d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ad421be9bcf5048407e4da0b92a3a37906c78a8c4881656ca56fbe1e6a47ab3
MD5 6808ad068caedfedcff65c7c8b872bad
BLAKE2b-256 2b51b2b6cbb218ad8b96e90f1bae9e825ae322cfb128d92fde39f6a63ea7a40f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 470f4f84dbe5a43e1b15890ccb209b7a988c21af2ce896923f525f2e0ac0a8f5
MD5 9c326ba7f5938d2aea9d9c6bdc8fd7a4
BLAKE2b-256 901939e133d395ed8495dc7965bd2512c978303f8eba142578f85a500f923bc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 16a2561f01a994380862d3b8331df7ff7431e490852cafc65579162934f00d52
MD5 203d6b085f7251ce15cb1b9e7b4bb9e3
BLAKE2b-256 e1bf8cd9c3dede9a68bc96df73f58e56ac8e226e11695ca46a7c5dfe49ab8d53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8d337befd1c5f48a9225352311277e7fb02af1449c0a6397a1752453aaa0baed
MD5 259a00acaa6be933601be61e8c02d1f6
BLAKE2b-256 96712585e20a9284aa24232f87e3b7c91e68853cacf0749a2ae4f9fb5920f8ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1cee6ab5017be12b69efcf79cb7ca178eeaf86adc5132b3c43848b7af9a71e5f
MD5 d4afa3120397aacce499420c8dc8c883
BLAKE2b-256 36ab2f49eebea14836450b011edbf1dc7cae5ef7d7c1e2d7bea64cac38930840

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3327a699640c6530667649f9cae914cec5245e78910e520000dde8c36b90c5a
MD5 d1b9cf1eb9e476a89235ba1ee25f9f6d
BLAKE2b-256 fb30e26577c7ca0adc5f7397b2850268fbeafccc2a71c993230b120e8ecc9706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e190dc9df0970e6d0d145c649fd0e9073088ce11bf4a149a3d43a7644a3e716
MD5 e8ccd42ad6108ed9c28bb522fc49e0b0
BLAKE2b-256 4e145a188ec7dbd5e9cbcc75d4c40b3a4e0091ea6ff44478575d32a04211f759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87a41f3805306862aa19dc26a6bfb0139f8ac81e7df286a6eb330e3d442e36e7
MD5 b8608183f6eafe49f67ce9f5ee7ee0ed
BLAKE2b-256 c791c1fa46352fa271d8a2eb8cb61aedcde03d0d199558d583676bd298068a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5b492c3bc6d7e1d2849da968649c5570e75f13078202b82db969fbed26758de
MD5 89acdb77849d989fa78bd41149e3fe74
BLAKE2b-256 794950f170ed075d6b8f2d69be346e056cfbe75f6ed31573a898a552ee215c15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05d1726e99dcbc312ab31dc8db409993f4363a2693cd9ca439b2e4653f298fe0
MD5 77848070f32ee10dd409550d4930bfba
BLAKE2b-256 84b8abe110c5f31055db22fb00194634ddbb3a743628e4b5444a5d58844917fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8afb3ec54dd0d2eb0feb062d78af3725d773da800e49b3a1a042c3bbcc52be99
MD5 5b2541f33c9c97ed92426e8075293543
BLAKE2b-256 d33305aee36f1e9fd56e2e633ca34dc3cbc282bc2613e2f839d6cbf25b86ce01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08787f0b417c24af1bb19235814d9948cc5c050f593efec4b754993c583f4636
MD5 bdf2b3cd9b1ae06457a79ca78f8bcc53
BLAKE2b-256 372194b1d5398017c71995419d85d14d58a0d21abe7b893beb9f28226c42a36d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0212b4ddb3e7f833b3bd991b63988d6917a1b235347f8218ad47728af36aa17b
MD5 4612a549936e0b506d7a093d2e2464ca
BLAKE2b-256 c1754d832f6961989a4185235170bde0bcae5e46022fd077f092655311945010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f9a9112442a17cb3925af107e7b245e755b7babf16acbded530d01bf53d309b
MD5 3d7907e0f01137ec29486076d256ec65
BLAKE2b-256 f20b27cb9920564f6ec7a7d04616ef5be7aecf7e384d1eb5f81496bc68eb4f9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c410c6c56eb3961644be08abc4d0ef2d16844a7493e1c1cb708c884c815c1cad
MD5 ad136756439851619fc09045517bca9d
BLAKE2b-256 f1baa7f452b60aff2065a3953d95acb32011588af8163747f32e49701f3fd582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a637091590f692d23dc4cf5318eb8b7aeb0f5be60c4b444c2f32fd90590cf1ba
MD5 5922a62360b9c58e534ea23b129bfcca
BLAKE2b-256 58dc66c609659aca819629de56b8bab1167c5cbf13ab9c4e81b5b5a6db48861a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 63984109a2a4c5f622266e2b706c272dfd091b5b88658c3ae5c4c9cb1da3fb7b
MD5 eface77abcddf9663dc08e4eb4e50cfa
BLAKE2b-256 9dea73f6930697ca0ec43460587f8c6b10cd0976bfa1333a04bc107cf28227cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8c658b404271cdfa95dee9a4c52f084b4a2053cd1a52e89ed13a63fd20fbe28
MD5 a79ae6e47e0edce352c7a59eeaa5f29d
BLAKE2b-256 91420c00619f5a02dc423382f8b20d028522ea2e8bc850836448e44a6314b86c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9054fd81c1616dc9868820e2ad2239405e26413ad9606cc790ea33e341328cf
MD5 ad8665839a94a164ef09ccba9402b6c8
BLAKE2b-256 937c295fda8326c7d7c52c10589b78ca1bbd3b91322b02f411bc7bd033fbf803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5aee01412d22f4120296ccfb1c1d9b7273966661a24d1cec0a00dfb1fdf323fd
MD5 08aff3e00b54bf26e680f7503e0e43c9
BLAKE2b-256 bfe08ee7257fa2fa0875093020ee222ff9e77d67f5ff61750784f79114b9e37b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2edc4d513d3679b384e4068101d6ff3de6fa5cf2a36f5eff53d69a17bec043ff
MD5 9b70cc89d7d66f4ab1d196b09ba5349a
BLAKE2b-256 17993ce8172d9fb213f74da4fabf58541cfb4f61d0b833356d2e0e7c2ffd9320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c8fecdc2f5ea56d4a2f0fb1b150487f1aa8637796b1fe55b896719a645c0d33
MD5 be52af2f0711366748f44d121c3de21b
BLAKE2b-256 f2f4c71733b9b20a0a97c3b0a23fa06f792e02c240540627386155b9ef016590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3fce0e17e8b15534d887a981d0bf5b217763f93fcf0ff3fdb935e2adde77f5a
MD5 90e379444a5725185f2d3f61a8a90d92
BLAKE2b-256 86c0025288cfa2adca4a97671c265b230a9b8dd9a453e42ebd449654c2aae17c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c75702de438f6ac9abb466c5683a4dbcd6c6e02abe8ad40e803b2d8fe9c6a4b5
MD5 e792960b4be398fb23baebf5db204877
BLAKE2b-256 55655938c9a4f0ae91fe50ab300986441a8062803fccc6a98faad3e0675203b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4bbe4b4106757460793b1acae7037679648d9c6207673bde766251b9081e58e7
MD5 cbfd6a789272f4092dd867734d47110e
BLAKE2b-256 06fb42fcd1b9ef9a8dc8107056c1331a4e96a71ef2f50bdeb68f6d087abb0114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de9cb78b6fda5c02472353199fd5d3f618178f4d818c4ccb20d4f15ae1e6997a
MD5 879ff164c1e4941cc9012d46ce7df7cc
BLAKE2b-256 f42142debbe7814fb01843b0a50e695b99de4eb6244c29e5a38fd18fea6797b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bec020137f64c4e170d36935f30f5dcdb170383996fe943fbc9fd4cd70c03812
MD5 845530cbddbb557df905bc88a8a85385
BLAKE2b-256 c1a00e15593995602979ef509b3086cad73b4196bd180c7669bcaa3503e67fbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20f06589408db8a864a53f0323f2df82eff29077dfdebc695bcae74ea08b9940
MD5 69fd2952bb7888c93375394a60f573ce
BLAKE2b-256 45163ad05d810333870627859e762d54dd0f183e3f55e9c9fb33c11b77e32924

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4bd6479899b844285891c52272af47564a54764ba9f41c88783ec8a30fab7ee3
MD5 608fdeef9cf81de0160fc62b1bb3661d
BLAKE2b-256 6d694d977e0867c2e0ca49bbe60b675e3ee232a3bef4b578ddb84019e2dc6e55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fbbaf618c7f519b942c36d5bc58102fddfe4748cdea441053b5ecf84776fcd41
MD5 ac106a482eb72d761360f755eda17b82
BLAKE2b-256 6c70ab9fcd0cc9b04b7c8d4d880d44dcca5c4160562a26ded3304ed4138db101

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24555816c6d6e3e8b29e1985ee4d6f219f448ac8eb435379a23d88cfa3c86c5f
MD5 7cfb8505487d9760effff07508c29221
BLAKE2b-256 36f77e360400f8ac538ac4bda0f915e470e86274d80caa7b674de55846f4ee0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00d0dab4a8c7701812422cc8f2e4bb31327639c476d84ac0e6c65ba26f0632fe
MD5 4b57ede0282f373f558af0633dbc042f
BLAKE2b-256 99369b919545767b8adec3890808c9be0afeda708895d27b52bb739e8ca44000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 95eb27ae9b2c4880714123f6aa3ca0e022eeea4409555980171b4de9d934a173
MD5 dac7aa8c857817f9f445a76d7df0286d
BLAKE2b-256 2c15112d6e8b212375e4c5102d5c12511cf11db718b81ea6a79fc0465f74fc2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0537973d66769fba6c709aa8dab5969d23c5dce7354fa069ecf5f4b45ec28463
MD5 d1d6034d1d7b90eac863837ac347a790
BLAKE2b-256 15f7216163491053f8a14c1555e96788c32427536a1ad779eae3bcb49de769e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 73dd8aaa99579be0f2bb7ca5684f881094f618d5c64f365e408359df9671947b
MD5 22d2461ff75e47fb06a4462ecc355914
BLAKE2b-256 4f428d5a664ffec41711be1edc2933c0319d3b4cde63d13e6d7ccf584152e034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2037d4efcc57bae0f98748fd41e01965767e9ca0297bf8ae528f0529ac97a3ea
MD5 fcefc6aefb6534d731ece2e19b80504f
BLAKE2b-256 aee4488a2b48445affbc87989843cdc7714a2587495ff2e1a27fe9d023137491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysequoia-0.1.26-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 375f69f3cd10870e3661a45edd4e5579ea0cca9cd64efca8a4afc377744e7483
MD5 8d4420da4215705c816ee2829d49fe3f
BLAKE2b-256 5104ea30bc854cac47ca02d75890a6fc97db26cf9c7e954cd9795b598bc04d31

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