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

PyPI version of PySequoia includes native wheels for a variety of architectures and OS combinations. If you are using a combination that is not yet provided a Rust toolchain will be 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 rsa sign,encrypt
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 rsa sign,encrypt
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, Sig

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!r}")
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!r}")
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!r}")
assert "PGP SIGNED MESSAGE" in str(clear)

sign_file

Signs data from a file and writes the signed output to another file:

from pysequoia import sign_file, SignatureMode
import tempfile, os

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

# create a file with data to sign
with tempfile.NamedTemporaryFile(delete=False, suffix=".txt") as inp:
  inp.write("data to be signed".encode("utf8"))
  input_path = inp.name

with tempfile.NamedTemporaryFile(delete=False, suffix=".pgp") as out:
  output_path = out.name

sign_file(s.secrets.signer(), input_path, output_path)
signed = open(output_path, "rb").read()
assert b"PGP MESSAGE" in signed

# detached signature to file
with tempfile.NamedTemporaryFile(delete=False, suffix=".sig") as out:
  detached_path = out.name

sign_file(s.secrets.signer(), input_path, detached_path, mode=SignatureMode.DETACHED)
detached = open(detached_path, "rb").read()
assert b"PGP SIGNATURE" in detached

os.unlink(input_path)
os.unlink(output_path)
os.unlink(detached_path)

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_verify(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_verify)
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_verify) may return more certificates than necessary.

Detached signatures can be verified by passing additional parameter with the detached signature:

data = "data to be signed".encode("utf8")
detached = sign(s.secrets.signer(), data, mode=SignatureMode.DETACHED)
signature = Sig.from_bytes(detached)

result = verify(bytes=data, store=get_certs_verify, signature=signature)

# 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"

This function can also work with files directly, which is beneficial if the file to be verified is large:

import tempfile
with tempfile.NamedTemporaryFile(delete=False) as tmp:
  data = "data to be signed".encode("utf8")
  detached = sign(s.secrets.signer(), data, mode=SignatureMode.DETACHED)
  signature = Sig.from_bytes(detached)

  tmp.write(data)
  tmp.close()

  # verify a detached signature against a file name
  result = verify(file=tmp.name, store=get_certs_verify, signature=signature)

  # 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"

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())
content = "content to encrypt"
encrypted = encrypt(signer = s.secrets.signer("hunter22"), recipients = [r], bytes = content.encode("utf8"))
print(f"Encrypted data: {encrypted.decode("utf8")}")

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

Encryption to symmetric keys is available via the passwords optional argument:

from pysequoia import encrypt

content = "content to encrypt"
encrypted = encrypt(passwords = ["sekrit"], bytes = content.encode("utf8"))
print(f"Encrypted data: {encrypted.decode("utf8")}")

encrypt_file

Encrypts data from a file and writes the encrypted output to another file:

from pysequoia import encrypt_file
import tempfile, os

s = Cert.from_file("passwd.pgp")
r = Cert.from_bytes(open("wiktor.asc", "rb").read())

# create a file with content to encrypt
with tempfile.NamedTemporaryFile(delete=False, suffix=".txt") as inp:
  inp.write("content to encrypt".encode("utf8"))
  input_path = inp.name

with tempfile.NamedTemporaryFile(delete=False, suffix=".pgp") as out:
  output_path = out.name

encrypt_file(signer = s.secrets.signer("hunter22"), recipients = [r], input = input_path, output = output_path)
assert b"PGP MESSAGE" in open(output_path, "rb").read()

os.unlink(input_path)
os.unlink(output_path)

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_decrypt(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_decrypt)

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.

Decryption using symmetric keys is available via the passwords optional argument:

from pysequoia import encrypt

content = "content to encrypt"
encrypted = encrypt(passwords = ["sekrit"], bytes = content.encode("utf8"))
print(f"Encrypted data: {encrypted.decode("utf8")}")
decrypted = decrypt(passwords = ["sekrit"], bytes = encrypted)
print(f"Decrypted bytes: {decrypted.bytes!r}")

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

decrypt_file

Decrypts data from a file and writes the decrypted output to another file:

from pysequoia import decrypt_file
import tempfile, os

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"))

# write encrypted data to a file
with tempfile.NamedTemporaryFile(delete=False, suffix=".pgp") as inp:
  inp.write(encrypted)
  input_path = inp.name

with tempfile.NamedTemporaryFile(delete=False, suffix=".txt") as out:
  output_path = out.name

decrypted = decrypt_file(decryptor = receiver.secrets.decryptor("hunter22"), input = input_path, output = output_path)

# content is written to the output file, not returned in memory
assert decrypted.bytes is None

# read decrypted content from the output file
assert open(output_path, "rb").read().decode("utf8") == content

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

os.unlink(input_path)
os.unlink(output_path)

Decrypt file can also verify signatures while decrypting:

from pysequoia import decrypt_file
import tempfile, os

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"))

# write encrypted data to a file
with tempfile.NamedTemporaryFile(delete=False, suffix=".pgp") as inp:
  inp.write(encrypted)
  input_path = inp.name

with tempfile.NamedTemporaryFile(delete=False, suffix=".txt") as out:
  output_path = out.name

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

decrypted = decrypt_file(decryptor = receiver.secrets.decryptor("hunter22"), input = input_path, output = output_path, store = get_certs_decrypt_file)

assert open(output_path, "rb").read().decode("utf8") == content

# 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

os.unlink(input_path)
os.unlink(output_path)

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: {bytes(cert)!r}")

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 = bytes(cert1)

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 = bytes(cert1) + bytes(cert2) + bytes(cert3)
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>")

content = "content to encrypt"

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

The default is to generate keys according to RFC4880. By providing a profile parameter to the generate function, modern PGP keys can also be generated:

from pysequoia import Profile

mary = Cert.generate("Modern Mary <mary@example.com", profile=Profile.RFC9580)
print(f"Generated cert with fingerprint {mary.fingerprint}:\n{mary}")

Note that legacy PGP implementations may not be able to consume these certificates yet.

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(bytes(cert) + bytes(revocation))
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(bytes(cert) + bytes(revocation))
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_fingerprint == "e8f23996f23218640cb44cbe75cf5ac418b8e74c"
assert sig.issuer_key_id == "75cf5ac418b8e74c"
assert sig.created == datetime.fromisoformat("2023-07-19T18:14:01+00:00")
assert sig.expiration == None
assert sig.signers_user_id == None

Packet iteration

The PacketPile class provides low-level access to individual OpenPGP packets in a key block, signed message, or other OpenPGP data. Each packet exposes a tag property identifying the packet type, along with type-specific accessors for extracting fields.

from pysequoia.packet import PacketPile, Tag, SignatureType

cert = Cert.generate("Test <test@example.com>")
pile = PacketPile.from_bytes(bytes(cert))

for packet in pile:
    if packet.tag == Tag.PublicKey or packet.tag == Tag.PublicSubkey:
        print(f"Key: fpr={packet.fingerprint}, algo={packet.key_algorithm}, created={packet.key_created}")

    elif packet.tag == Tag.UserID:
        print(f"User ID: {packet.user_id} (name={packet.user_id_name}, email={packet.user_id_email})")

    elif packet.tag == Tag.Signature:
        print(f"Signature: type={packet.signature_type}, hash={packet.hash_algorithm}, created={packet.signature_created}")
        if packet.issuer_fingerprint is not None:
            print(f"  issuer: {packet.issuer_fingerprint}")
        if packet.signature_validity_period is not None:
            print(f"  expires in: {packet.signature_validity_period}")
        if packet.signature_expiration_time is not None:
            print(f"  expiration time: {packet.signature_expiration_time}")
        if packet.key_flags is not None:
            print(f"  key flags: {packet.key_flags}")
        if packet.signature_type == SignatureType.DirectKey and packet.key_validity_period is not None:
            print(f"  key validity period: {packet.key_validity_period}")

Individual packets also carry their raw body bytes (without the tag and length header), which can be useful for hashing or storing packet data:

from pysequoia.packet import PacketPile, Tag

packet = list(PacketPile.from_bytes(bytes(cert)))[0]
assert packet.tag == Tag.PublicKey
assert len(packet.body) > 0

ASCII armor

The armor function wraps raw binary data in ASCII armor, adding the appropriate header, base64 encoding, and CRC24 checksum:

from pysequoia import armor, ArmorKind

cert = Cert.generate("Test <test@example.com>")
armored = armor(bytes(cert), ArmorKind.PublicKey) # same as: str(cert)
assert "-----BEGIN PGP PUBLIC KEY BLOCK-----" in armored
assert "-----END PGP PUBLIC KEY BLOCK-----" in armored

Other armor kinds are available for different data types:

from pysequoia import armor, ArmorKind

armored_msg = armor(b"dummy data", ArmorKind.Message)
assert "BEGIN PGP MESSAGE" in armored_msg

armored_sig = armor(b"dummy data", ArmorKind.Signature)
assert "BEGIN PGP SIGNATURE" in armored_sig

Note that both Cert and Sig when converted to strings (str(...)) will produce correct ASCII-armored representation.

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pysequoia-0.1.32-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pysequoia-0.1.32-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pysequoia-0.1.32-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pysequoia-0.1.32-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pysequoia-0.1.32-cp314-cp314-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows ARM64

pysequoia-0.1.32-cp314-cp314-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.14Windows x86-64

pysequoia-0.1.32-cp314-cp314-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pysequoia-0.1.32-cp314-cp314-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pysequoia-0.1.32-cp314-cp314-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.32-cp314-cp314-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pysequoia-0.1.32-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pysequoia-0.1.32-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pysequoia-0.1.32-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.32-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.32-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pysequoia-0.1.32-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pysequoia-0.1.32-cp314-cp314-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pysequoia-0.1.32-cp314-cp314-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pysequoia-0.1.32-cp313-cp313t-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pysequoia-0.1.32-cp313-cp313t-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pysequoia-0.1.32-cp313-cp313t-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pysequoia-0.1.32-cp313-cp313t-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pysequoia-0.1.32-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pysequoia-0.1.32-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pysequoia-0.1.32-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.32-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pysequoia-0.1.32-cp313-cp313-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows ARM64

pysequoia-0.1.32-cp313-cp313-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.13Windows x86-64

pysequoia-0.1.32-cp313-cp313-win32.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86

pysequoia-0.1.32-cp313-cp313-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pysequoia-0.1.32-cp313-cp313-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pysequoia-0.1.32-cp313-cp313-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.32-cp313-cp313-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pysequoia-0.1.32-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pysequoia-0.1.32-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pysequoia-0.1.32-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.32-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.32-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pysequoia-0.1.32-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pysequoia-0.1.32-cp313-cp313-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pysequoia-0.1.32-cp313-cp313-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pysequoia-0.1.32-cp312-cp312-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows ARM64

pysequoia-0.1.32-cp312-cp312-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pysequoia-0.1.32-cp312-cp312-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pysequoia-0.1.32-cp312-cp312-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pysequoia-0.1.32-cp312-cp312-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.32-cp312-cp312-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pysequoia-0.1.32-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pysequoia-0.1.32-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pysequoia-0.1.32-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.32-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.32-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pysequoia-0.1.32-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pysequoia-0.1.32-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pysequoia-0.1.32-cp312-cp312-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pysequoia-0.1.32-cp311-cp311-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pysequoia-0.1.32-cp311-cp311-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pysequoia-0.1.32-cp311-cp311-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pysequoia-0.1.32-cp311-cp311-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.32-cp311-cp311-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pysequoia-0.1.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pysequoia-0.1.32-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pysequoia-0.1.32-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.32-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.32-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pysequoia-0.1.32-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pysequoia-0.1.32-cp311-cp311-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pysequoia-0.1.32-cp311-cp311-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pysequoia-0.1.32-cp310-cp310-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pysequoia-0.1.32-cp310-cp310-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pysequoia-0.1.32-cp310-cp310-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pysequoia-0.1.32-cp310-cp310-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.32-cp310-cp310-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pysequoia-0.1.32-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pysequoia-0.1.32-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pysequoia-0.1.32-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.32-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.32-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pysequoia-0.1.32-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pysequoia-0.1.32-cp39-cp39-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pysequoia-0.1.32-cp39-cp39-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pysequoia-0.1.32-cp39-cp39-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.32-cp39-cp39-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pysequoia-0.1.32-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pysequoia-0.1.32-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pysequoia-0.1.32-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.32-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.32-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pysequoia-0.1.32-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pysequoia-0.1.32-cp38-cp38-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pysequoia-0.1.32-cp38-cp38-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pysequoia-0.1.32-cp38-cp38-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.32-cp38-cp38-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pysequoia-0.1.32-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pysequoia-0.1.32-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pysequoia-0.1.32-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.32-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.32-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pysequoia-0.1.32-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (3.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pysequoia-0.1.32-cp37-cp37m-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

pysequoia-0.1.32-cp37-cp37m-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

pysequoia-0.1.32-cp37-cp37m-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

pysequoia-0.1.32-cp37-cp37m-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

pysequoia-0.1.32-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

pysequoia-0.1.32-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

pysequoia-0.1.32-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

pysequoia-0.1.32-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: pysequoia-0.1.32.tar.gz
  • Upload date:
  • Size: 285.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32.tar.gz
Algorithm Hash digest
SHA256 baa5892b3e68dbf4492fcd4b5beb10bdeed8080ca5e8f57725606a824b65753f
MD5 680d399ea457db8b659a0c122c8e4f4b
BLAKE2b-256 b861126fd5e906d9ee8e7b563e404ad03376befddb0c74a452bfbd8213e8351f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02afdf046022600a948abc1e8a975b444e1a19c1be7202cb2404b424143fc67c
MD5 8e9b20c07b57581b1d940792c99b676b
BLAKE2b-256 c53757640d351f338eedb63c471beb21fbb6bf07c984e8ed8b021534d1bea57e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0011ba7e4d10ed3d879e95c5e30f5abf7babc650d7fc2521e77d540f6367551f
MD5 f60d2bcae192632fae0662ac0645a6fc
BLAKE2b-256 ca9f631c207499968878c80cc78a076ef09da960604195a1ae8fc39b6464e129

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85137df1d7f3b2dc4a400662e825eaeed94d1b0b80c04b0e738dfdb7889906a6
MD5 a8fa3cad949237f373cf6cbffe2d72e5
BLAKE2b-256 29b18144faf487cc27e888fd4493639ce0816f04878d7094f9306f61ac340cc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c7073b0bd1a1367265f04e1c7504df8e337cafed8a1caa67bea6e874bc7be9b
MD5 598442e08508f29595dde63dfedb74d1
BLAKE2b-256 985b3f14e0a50f62dffaf4b65c4094a4426d952981dc90394d4357da94d3ddd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d3eb34f22dfc9622c5dff153a221707026924ddfd135c524baaf67d69ba5a4f
MD5 25792312d601be247efc4b8477400d4d
BLAKE2b-256 6b73d9b47533485a30de68d71d751058435417428e26a765df72c6501b1ef348

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c8e50526ec4b1ccdda0fbd93f180bb53b087125fd0c60de310d77150540b35e7
MD5 2d4ef78237e8bef12ca4fb62bd9b6d14
BLAKE2b-256 3960ab59bab4180893dfb2f1d11d4e9e288cf2dfe394e579b9f50cabdeecf7a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b265b8d1ef436acc39e3e86ad6ed3594e4815a9271f615f9955e3ea61a98c01
MD5 f67a281fded4dcc76fb9967238310bfe
BLAKE2b-256 1e4392ce61d432ff7701a142eeb2cef002fd4fc8ff4ae8d6484f808e60a62add

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71767fd68927a8f856fcf8452cee61131c57337a11fb9ef705a31003a3b85c72
MD5 f2f98ba801bf99c12bf1386835a39845
BLAKE2b-256 66e751878102bb78fd8ec08fd0570c12720affaf94abf4c4e0e53611ef4d04b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34f1187fef8214a86e6454ba86b41b770bf83fc4f52d29353d8e93437d3d40b5
MD5 002e8abd405058a3ce349cd342623cf7
BLAKE2b-256 c86b49c6a08f468d9c99bf5cbe8f810461bccfbd92e57d869bc25928f3c9be02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c05110fcdb2634b5813fb6b6fd950ccc6133e79db01ed704a185ae0e5b158fdc
MD5 74cf4e6a37a9ebd1e06c7a40fc1919d5
BLAKE2b-256 7a6cbad21c84fa4186b91afca8933ecb9002a09cbf178397a14de3caf870052d

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e3db1f502e6d786c77fc1b52be2b49f9ed77724385511336d75acb328d919fe
MD5 a6b55348be90f34af93c5056e21f1165
BLAKE2b-256 20fafbf9ecd23e72d0bf79f5f2993934b8bec3c61d53fd8e96cbe5c1d9e26294

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c8dd191af3124681f7800bc6639cda8b2f8a68b2c886d0550807521976259d6
MD5 acf70dec3b3beb3bb6c024cb74c03236
BLAKE2b-256 2a80adfe4e66ea7eeee34eb3f7d8e741e1a673d52cd959d69b3bb34541377c24

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d775f14a4c0c5b02b0d197358c1a638f2e10735739502856272011d9d4d6142
MD5 80d3f44ce0c4f14d74817e8c16d78863
BLAKE2b-256 066644cd1f22a165fe06c40a79e710b7aed445e5a71fefa1f58a280c0a1b0f28

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b613f100d2db3227f515e6b91579c7f634f8c474c4692473336b27af7f12944c
MD5 91431044d3cc572aca8380f2ac382153
BLAKE2b-256 a0e5e0216b115cbf7b3072c4e919a3d5e8a84fdfe0b1539e65bcd3c384259921

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d738cec16bb18501e6bee6a577139d0472e15dc7e9713decc0c9141d17528f2f
MD5 e7685881d64d7838715d92c7ec00854d
BLAKE2b-256 eb73a9fa8ff6bd98f5802c19d941e0c88179a80e15cb925aff8ed0d23f1e7d1d

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13200ea19e613cb07e12a59e3a53266f3ebdd4442c43ee5b294971c6e02a7a1b
MD5 9c34afdc08a1b0614a6b23f0543f243f
BLAKE2b-256 08dde951c2f9419887ad347f9ed9e78f82e399c01a5b46cc2ef709326490816b

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 085c2d7905f1c79656f95f22b8aae0d35e4ee0f3e0e65a1685d8713b34ab749c
MD5 e8775ced75bfce5565b84fb927058c9a
BLAKE2b-256 d49cd0687160a7e38f5565747605d3e543c265b52b009d2ae9ae7a6c03d71b86

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d39eb04050f66b7fe207bf5f0a8c3adc977d6d30bc6c8365ac44941e478c8fef
MD5 b741dbc5ec32e9d6f705cca77f06bf4b
BLAKE2b-256 45cd609cc9e2c78ed90064964ce11a73b2e30f5d74d913e768027173992d2774

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 55cbdc466809e5cf6ddbb6b5d9f5f0a323a6d73dc5287bc9955b233c4cdc2998
MD5 5b0146cf27c65fd61adc6f694cfecbe4
BLAKE2b-256 cdeb7d5865f1e34e4b6a37bed2e20aa3b1e08ed78287c4501ecaab63cca71e81

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 379753b2a6bd711884e85e08b96876bfd3b9a62282b598f5145c6768897009d4
MD5 4f975b3fdd0a4af362af5bc6c4a2f406
BLAKE2b-256 8e6ba550ca31280da91c98f913073388fa34a2f4fd0a9c32a3ddc189b344b7a1

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6036357a96a91762538b5cc10493ff231b91c3b78c8813f9b9faf2f617fd5b8
MD5 16138f402503283d61b573d80c9121cd
BLAKE2b-256 759eb91c0b57df424d75b642bfa4d8acd719d92c8717e59a7663ce31e95fb1b8

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25c6d263b31408351f5aac0d14b04b86b8d53e78e7859d2fb1b46fee07e36b4e
MD5 75723510d376c0e25c55edba0dce644f
BLAKE2b-256 39eec37c77353ba33567bed2efec6193b1847cd50dfd07a8d35b411bc3dbb232

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 376139d281ed1af5c84bf715c38d2ed70af98cdb466b025eb23671b92ee63daa
MD5 78b94277f1acca54719a34ccdb1be4b8
BLAKE2b-256 2823dc1e79ab2d4d2f35c298941cfbbc8786bfad408cb4c0f70311ecfb208b42

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 968c804907cc83bde8e9b9e060e508408f082f3115e4ce246c705c10512f6291
MD5 f09a1e63e15c19877ab0580efd6323d2
BLAKE2b-256 e7b1f27a0ba3592e60e1a4e6bb6ed29963675bb3f356e353012c237df9c6306c

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f26261d2dacdc4e5927900c745838d395471a3284af4ae1995ec5e1cc71b5836
MD5 ce2f15e04dd7b8791357b5592ccf36d4
BLAKE2b-256 57bd104e38315ccdfa65794a45719232752163c661fff56ddbe80a1ad7fa56c2

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1b5177b63891e297aced03759455b0f6984777d2decffd96b3583b68149bcb4c
MD5 e74f3a43da011fd08204094e78bf402c
BLAKE2b-256 579ae748eece52676832f21dc750224d90add3c284d7a40d011b5621e29dd4b6

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89c3c30c10efa76c31825472386609eff64df168300aca494f4c648cb279b5ef
MD5 e92b88030ec2e8bd3f8e325090419671
BLAKE2b-256 f92bbaca0fad7525c2c65d9ff349ae3acbfc003f5b18841683de502a45feae73

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0dbae6e189a8cae91a176e9fc01eea81f978fb16144f5b0359bc9a1244800a8f
MD5 495d9d339df5210348447e422b3e9144
BLAKE2b-256 e34cae6cc07eeca724e8a858c536dd443dc37e8c33ea79e7833fd7b7b11d2cf3

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f75a98a6d0a03aa6a4bf32fe299b79c79d90060c1075f0a1f91c259146e13a28
MD5 248e348b7df09d3e082a3068d01998be
BLAKE2b-256 985e5089c4ad4be2a3918ce73f1a29d7d02c4e6704f84c9b0e770e55ad1e88a6

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 928a5ca0c0b9831540eaec4042f39dd853b5e449eed2401d0d6469d7d0138164
MD5 a130837a080a4614617759e895d579f8
BLAKE2b-256 bf1b8d7d37e05563077b9bd19b4704c767ce991d7aa419ab1185df871854df07

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1018fd3d779a659ea55db5d33df231df8c679547fd644fde03440084bad86920
MD5 ce71f6c7d90fdb017d427be6669c8b36
BLAKE2b-256 87720c2fd70207615f5590d221b86666755ca4ce48c6cb6c6983aef577d99f56

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 30737a7b162007ea2fbd2696e95e3b8b81acd04d64208cf4d8127a24eae5f1cb
MD5 7a1660f3993ed8334d2bb13f3cbd8a80
BLAKE2b-256 fd9a285598c3e6304327f54ed0018f050851b53b257af96b1c9704c84d71fcd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a5fe869cc9d0cc0d9d021e9d16805ad3d38721963b1064339257149f630e75a
MD5 eead66b397d7a213e3c26d1d76bcd523
BLAKE2b-256 6df114564efbf6995d741acfe1675e5ccdd4e603a78a594b8b6d3d787b067279

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c765f6d525a6930fe85d6f7ecd28d91baa3f877520eadcd2df01555c82df736b
MD5 8c9d4c5b35304418b0b6cbaef6619890
BLAKE2b-256 c0a4b21a24ea9d3e90834586061e4c58a11bbee7a366fe483b1b2a0c7b105534

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae5b7c2826674c61a64118e10a48551a72c29f6062e5509e16d86130bf20696e
MD5 8e8a8735272e78cdd83c4d9d8b9d0321
BLAKE2b-256 b9793b8a562673d9191e3361278d938b40106787e48f63c32241c28f36505415

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0373416e038021f27aaee8d97f730e11600c5f723288c2f952503f0cd160bdef
MD5 78c7060bc7409200dcb60f8e222fe33f
BLAKE2b-256 0e2379a39476f266a715ec76aff6ad8ad8d6052a5e0b41eb7f34c918b3905c78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74fd8c3513eca4edaa9db52db3de270eecbeefea153565fc6a1fe0c82d5c144b
MD5 6318392b0ccfe7ac645b9d19bc957e28
BLAKE2b-256 9a6d42108660a3ffb51b3300032febd8b300d5aaa45f0cce914adb91608cb3d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae8f7eee5b1e0941be7fe414b89f75ef9f88ece15d40442273604fb073904311
MD5 2da41f119011079b3360d592e9949a43
BLAKE2b-256 5e7fb94909462b6b73a5591ade8d1b53b69c2caa21a22d2240a5cde372f3f279

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56c7de1ad0917872470613434f6eb00b53dcc878525a968a1a7501aeeb55c0d3
MD5 5cc73c7f5c7bf892dc96714253a33e7a
BLAKE2b-256 25832863f9877b70219e682f359cd41a2ee7369d0e8f6d725fbb0786139a1f34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d96bc02773278bdc3b9ea0b1be2b81115c06316ba49c297449ed379721d7719
MD5 773c1f8bdb1626e7b580e4dee9f69e08
BLAKE2b-256 93ec21decf7137439d22af61fef0b1d931376b53155c00538e703bef5e2abb0b

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 627f106fa1dc4142cc90ed1496fb809c1fc7f7968c0b99479e2af0e39a3a2d36
MD5 b5246cfde4cd2587c1c85eb669050d38
BLAKE2b-256 50ad23cd68d7eea226c81a8ed47b3cb255762261ee0b283f160a55b3be78a8f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c6534952c6146f6751f8cf4940805ec838e347ae2024f7302aecd7047c7b14f6
MD5 9d457070f39aacad39ffbcc5d3e0917f
BLAKE2b-256 034785722e627d5f74453e0f5aaa2cfd308a89ca4c0221e50fe3e88cd90f0676

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5efd8657c76681aee4ca0f295cac0a35abb4ba9dba4769bd488d2d44e1391586
MD5 70beecc932029de8bf295a44adcc5ccc
BLAKE2b-256 22bf476622c8b4af6ae2ac4c2e089e8e6478591190636e4d8a0d8aeb0cb91326

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03bfc7da825db0f3949105aff0940dad386605fe2ce049d8b5d551e7b3d761f4
MD5 17e8ad72aaa2c3a69bbf214e036bc043
BLAKE2b-256 4bcddb3f7a07698b8da5927bf91830cc252da6b9dfd8cca2363c4c352aeb574d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a1c80ae70c7d9e05dbbe712075ad4d9d9cd72a5ff0a696b2e9b5817275647f4
MD5 8ede8f080108c5b9b474671b3d26c85e
BLAKE2b-256 7dd711a26724d6bd006881a3a028a424f7767a9ed2999d2c267b3a218d7561bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e3f3e6099e8d8b153da5e7fbe1b59874c8ac66586d449cf2500ee283f4663a7f
MD5 d1bdd1fdeaa7208b008230c61f6ed288
BLAKE2b-256 2927f3d16f5b94eab5d392476a4332a0d4a49d4c28c4785b9c34f9693cd12ddc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c5095f417b256a402937ee409b75fffd7489b3c4b8c7fb775eabe0b8be75268
MD5 d407a7bdf62c133682e59279e50d51b2
BLAKE2b-256 1512aef45d24cc5744fe4655ea04051fe0bca6030d1bc829a6187365c0018ac4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da0fddaab8bacba6f2b3b4e9a1556e46aa877eb217ef0fd0010b7cdf3751e34b
MD5 4e72d2bf7cae7758ad1826f462229319
BLAKE2b-256 c674800a0a80ab1eb1796aa15a13e7cb3d4b8ffb5be70728e28148572fe46e90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c41bae72ddc2beb8fee5c03e4736995871598ca77f2bdaa557f65124fff19e3
MD5 97932e49d8d0f6bf3a2104b15de8dad8
BLAKE2b-256 3684df03865b894390299121700f5fb08d397193b5025808971548e98abd8274

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42f5b142e313e2b218fd449e479c87d736e12d18167a031b6b1a351145ce96d4
MD5 9a9bfeeeddbc9e10f5948a786be03c45
BLAKE2b-256 cbafd8f9047ec9856813fc7702259aa0a423498b3bbc72ecd617dea75d89ab11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7f0bd0093e8a0d64e0706dc0df6a4300c20266cbe66a53696e5248e0b53d954
MD5 cdf0bf80532cc5ee23e6e052a09d0f77
BLAKE2b-256 00d3507e86a7704f24f58ef8d93cf143003bc3acd73f6306fa06ae9fad1c1a65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ff94a425e38214f8ca781ec45be4186caadee5a79622c988f519265ded03bce
MD5 d1a993cf524aeaeb8c84cf6c7f611ac8
BLAKE2b-256 770cd4893f1989b4e5e135a22a6c8dff0ab1f28990d36a76278d668fc48f0e0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 58049c3d16c407c73d7a1c82abda255b3233a9af26b3b49b3e000653948c4466
MD5 714ed53d4011139514c778636e60f499
BLAKE2b-256 620632a1ba97e8ef1d53d0fb8fed5d3de4db951b4795467c72ed3a1509b8a347

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fbc49d99728c4b1aa59aab4d4061501424b15c73e3bc9e85dffa371d58509cc
MD5 1920727eba8eb0d850bbf3aca175e795
BLAKE2b-256 fcc2e491d1ba74107e2434729ef77273255fcf65615f2ca2ef3003b82c0bcd54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0efd974315f0769734255f017f9fd3ce7c976e745ba09232dbecf96c9b87bbef
MD5 b681cac5ff87c3391cf7723c0c6fdf74
BLAKE2b-256 8a856577e3df8f5dfa9da13fdc37eb7773b101952f03a1726b5902440181da5b

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.32-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 781458c16c43ab0217ca4f2eb7886ae4239c95a3a7ead6b3137744c8c1fa2751
MD5 99112cdfd63cf885f6a8b90701f10949
BLAKE2b-256 7ecb0c4212c3447da70b8fa00b492066585803655cc98f161520bd02a63e6b25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 390d9fc7b21bb76e1d2650d6a709b0c4b79b524418e0458b2cff487c9fff414c
MD5 fa097972fc255152cd6a8c64adbb7c90
BLAKE2b-256 990c021c8b315189ccb185d62ceb76f9d5f382cd1885ee6ab394774da68ee12f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b6b760a0bd11266dcb1f3e5a10fd614552b70b013785a0e35cf3b5c75fcbc39
MD5 7a93b1fa0d0a945e53ce389ae34e656a
BLAKE2b-256 cebbc143ad19e82cda5ebe8f86f06a9816956c323591586fe0f918c031e2360e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8e3222910e92d37aeb3e7b09ea503601b63834ac3c23f3175157348f6bc08c5
MD5 1521c2681f76539f7c22fa639de977c5
BLAKE2b-256 5bebda7d0c46da5a4176bd8fc17f0a9734c132003515986587a2fc1787827d7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b063bb99e8b8d7a3de74a7ff26d687d747136dfcd0ccac2c22b5530377e7e077
MD5 b82b76b83169d35833477a1b30491d06
BLAKE2b-256 4bb0894f1b39d3ea7ad2fccca42c288f087ed5661895c9351b7184adca3544e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8b4b4dad20a0d4d131b00844ef7a06152d0331e589fa40dfef9d225c7e18767
MD5 65d2ddddd59aa9085933aa444289afe3
BLAKE2b-256 ff270ba40e0eaf8e8cb78eea8b976d897673655cfcc6f5becf78288c59f86f3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e9c10520898621d09dac712e87d34d56abd32093e9880e24f7babe6d41b5e02
MD5 6021c8162c2faff66dca7e95574094ab
BLAKE2b-256 4309a8af68a33d48d74b62cd376685a16a6ceb3ce9016be5b7dd95fd6daa316e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ef941bdb1fd4e6cadd52d2fa608aac26d05a2d301f75463ab87ccb873b4e457
MD5 c5cd2fb4ceb7ffafa48e02fbe61d1b99
BLAKE2b-256 8c319b9f3e77649b41dc67ecfc6c8d32d58ab9ccab38a38d829c4dc084a023a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f90cf8d050dccdb8240ccbedb9f3b225c606c12e623322d46b022a88a074a5f
MD5 2edcf2b3d385a9133a9a430e7483637f
BLAKE2b-256 d230b0cae6bc28a524334ab215c6e8b4a4808a3fc74a889d348ffbcb87f5e23c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f43be16a24a10b0ed368aef20afb8f5ce3d39cc121c6f52fca6f0dfa21ad6a1a
MD5 57ae6f05d11d24631d6cccf538d37f04
BLAKE2b-256 145993fa1874cc0629ee619ceeea4ed4a46e76bf289238960a00c0b79856a2f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71d24805ace73af853f07c2147c59052f2e6ae8984f3e5f2c94d46df53f16d20
MD5 ac0dbfad84031e962a56a18cbe01512f
BLAKE2b-256 03a0a141b900b0d3cf8e26af467c5ac39ba5db3e82e8669550f073ac289c1d3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 44e9b674c04a5acb1757efc45076ba755cdd1adcf28b7218f2363a795406da13
MD5 78b2c47f55e906b7288fff5e2836c8d9
BLAKE2b-256 a2b90b4533141fbe333e105943d0cda6e6dc3b28cf18fb181c6785337cb9c748

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb03435448d25db436b8a907ea2feb68fb28ddde136f8df84edf770a872f60f3
MD5 5703a780c65ac590d62299dbc80091dc
BLAKE2b-256 6a75371b2b389b678482e623f3ac61ad175841ffe3428225a39668b441f3221e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9bad9039e58caae68c58b2a92a5efee73fafce400c74d86b67bf9f68aa8e5e58
MD5 bcf77edb97f0db69b3defa8b8a9cb831
BLAKE2b-256 33a3cb35ab1b47634d4dca3086ea6d851edb30003cc87d053a51ab35aa72ed25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c5efc37962bd561388744d45fee43c16ffea9193c666f54b48362bcbc05ee6d5
MD5 30296c947aeb5b3e572e73b17b184fe7
BLAKE2b-256 252eb4ae50fa30101f5bad096c8ded3b79ed970780e44cf5ccc8922fccbfdd3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76eaa4600528170b0c7e915dfa57de682c0b7410a697b9a7f9e110af7e71b54c
MD5 f7646a340aa883d969e21509231f6301
BLAKE2b-256 590bebb1518b467c04c09bd91efd6d39ed1031bb651195c55528da6f9fe9b41d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b1ebe59731b7715a86ee53a0fc7528a8691bf3a6f89abf11d340a8ce4c9584b
MD5 142d53c04a15d80d2cd9a9a81f8d8f12
BLAKE2b-256 73556f977dc86d6554f7ea788fc7ec18f177eabedd7f3eb72130ad8a45e71ac9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1bab84e9ccb4c3cc867d507401e364974a5dbe6bf2a2c3b7e28a117c7394ed4b
MD5 721246b72dfd61114454cc945dd2466f
BLAKE2b-256 e3d8ebd13796cc2da2e85f91e93fc0ccdc0f5f70f058646c6cc863b437c6b353

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd30cb43c670790f16fdc165502dcc23b5236c46cc2947fa45718b0736b6f976
MD5 6c4cebf14db6605bc24498c4bcce75ad
BLAKE2b-256 35427cb17b766d3df1e5a8f3660c71aa1d502c34c25cd9cf85639ff609d54c4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24fd31577a5c8adb20cbe87a2aef5b53868ea0bef6cf64a72e41281e44a72060
MD5 1088f455ebca26a9951a0a385cfd75d0
BLAKE2b-256 9e6cf562a43d44fe23a0deafe96f4db7b222c1738ba5d8e6f8952d0975a1dcfc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d19420995277f53dc4ccca7782c1a6224b71d87d3cf240321c0abde98f688643
MD5 b5bd3611b33612bc8539992e096b3319
BLAKE2b-256 2762b55d7de50b89fdb51ab972c70728e80f36e4b6eb91eff9c454242f7f5dbf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4a48250a01443d45433eedffcada1653dc301acaf019e6b32f49b0863b1d067
MD5 0948ff0b5431cbe6e110c838ac7b2138
BLAKE2b-256 362e0d5f6b424930610c31d15349193b015b180e3c5298eeaac3af6879744fcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 518c47a4e40f6bb7b4fa8d857ab8c340928cba91620a4a10dc964b078923faf3
MD5 76e36fa59cda99693d98fdbce0e10a06
BLAKE2b-256 4bf530ea3c4bddd692fedf7acd7917b980b2e3bc0110ee14c32e2601e5b5e59b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aaf6b9bf02544639109b8d2ed91d18480b1c4a21bddd4ad88382b2ab1e4b1b22
MD5 ab5cca1bf141c69755b1c592678d2fce
BLAKE2b-256 aad0bda93d763117b25291549ec5356f4197e78cff26b617b92ef306642bd640

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5d51488727f2df69f58da5a6a7d0f34bfafcb5f5e79722fba496e1cc4943196f
MD5 5c03614b82cd85740ad920a33ac17d20
BLAKE2b-256 d4c0664ac55e44170e81f048f9d388a41bf4bbc5548e6f880c7fe440307db97b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33ad1cf1cdd3e06bb73820e55bcc13501113023ef75c0b6408dfe627e79fd85e
MD5 249214202ac8f4d80c296ad9244cd060
BLAKE2b-256 a491e40f0e83b86836b2164e6733d35a41a945fdf082a031ac030e99888ecb6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 43196974b8375384699cb642a342e76c1742db652a2152d90aad69768870fc52
MD5 a7b666925f1083ad29a351a53bb5008b
BLAKE2b-256 941f5e412a5dc37caedf76c8c2bd7cae51e2b1f4f14999094bc5a61e1f3fd55e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4776584c5b0a747de53b6e63441b06eaf10e7c0291ed9d34d953835f8b8f9efe
MD5 3694a41c234badc2edba3394bfcafb6c
BLAKE2b-256 5689f47fc5809e76c5ae8370d55e7811bfa8c02a5891590c2fc0644dfbd3ea30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7af6549a86be181c2af6546c2795b3130c6627c76815a723663200f52fc5afd0
MD5 e719b1508dca268b2887148f79efce48
BLAKE2b-256 1e6ec447a7ac98a45897008282bd52b538557e4e695af70feb1360d6b823e9bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 621a818375b9339615b4dc26af1e05822ed617e8c10e90a72d81e17ecb7cbee8
MD5 2134017ababca1acc619728c903af740
BLAKE2b-256 8571a3ed018be080abdd7e1c0933d02a918c26b1074eb11f3026bb64c14a84ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd788f43372167620dea0419f1dfc07ab9b199f5e0b1b54f8b6af3f1e37e13c1
MD5 233da42b6ce60e7cf6ba340bca6fa524
BLAKE2b-256 6aed964383b02518bebd5a960ebda4d82e29563e5090e4c6c31ab1bd92fadbac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a81b705d69cda1786ff472aabe075830a7a97d84109f5499246ab25df437def
MD5 7a8ebd5ffe3cda04b08670a7fc3ad6c5
BLAKE2b-256 f327b3eeba2bf991afe7d97aa1464acd70ed2bcdcf525d74a3b6637d3e72435c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dc5c653d875e70a17bd47c7a1a436946da07a1c7583b3e31ecc2bd2183948d6
MD5 53690862a9231df8a33fa41d80f02c4e
BLAKE2b-256 47683e09054c10dc9c77f79a050d1cd405f6f7534483bf0d1cd5270a8700f1ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7044abb0c9b5e05c441159961d4cd3988ec442c3591a6311475f3c3db26d3c13
MD5 a33924e7b3d74e34a6b1cd3ebbf303a7
BLAKE2b-256 319d279f415be2b06fd813aad7c6ee5692ec8599d10609c07a847a858fa5c7e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 65270ea1fd6d4786e8a06d98585a64ab8a2b7a93b1144789a53bfa9c48c4741c
MD5 7f2a331db1a3949b36d76c2ce9ea8d17
BLAKE2b-256 225f8e647654d40b65682ffea7346a988457263c11a4d8a252e9e87621deab4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50baac55eeba3b101e5f378204296aeba201954efa4f4430c132b3503265ae06
MD5 23356fc92ae95a16374a2e595272c934
BLAKE2b-256 9ea3de18bdb76686529e5ebbd9d987d5e25d3b06f9461a3d2fdeb6b081e21620

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 633d3a7108aa191d5ebd051e4df676cbbd8691ddc70c5af47310eadafb6cf2bb
MD5 6bfd0ab7747e382a442839bf82304911
BLAKE2b-256 d68d07cb604136f3685ecaf2454a89ac05179bc1a99c3a64ee36adc0d4c9ca89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5086ed368149d0e02e0065b6a7f597a8b0ddcecaf692513837ad053f131af58
MD5 3449bcb08f21ca3340614246f15769d3
BLAKE2b-256 9e20dad6936c82197cb28d90811056a4b9f002c8075aa0fec397b3230242d90c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d89d8b7f1909b959ffbdab94389905fab6c0c8400a70d8a8dda10e2588b2d00
MD5 b01edc97bab37ebaf4f87ca69615fed7
BLAKE2b-256 92fbf6c059474bde78f7bda12aea7a2174dc6c15001ec78c684a2724c394c453

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 60b721617057adaf2f3a54bb2330f4327a08f2dc60ca316a1f71300404196f66
MD5 ca052d4158223d4ac2e3379f20ce745d
BLAKE2b-256 a2007591eb78dd0edba482567d255930f55de9d31ed87389f240439027deb74a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c8887faa4152a0e4ea137e972b1b6ecca89c52018776b86b7a2c5d74de2e947
MD5 d37c6b01ef0dce8323fa0da5053b864b
BLAKE2b-256 f1bc8320f5d61e486e3ed79cdcaff524e10d8a93b499028d7a80ead5f8f40c1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 838a025dc85605015cd04d774541f618593d8b249cd4d54490d7aad71e965dc1
MD5 0da8ba6dde89828ec37b1a725cf81251
BLAKE2b-256 a046ef417b48d4a5a01a4a88b65c86a50c4a53bb0358a93d9a39d871d076f401

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 408a14603e813f8757e8169a9f6c317e885f35f1604c3bb47bbf22609861a1eb
MD5 a5d18179120d7128fddadb6f91bd256b
BLAKE2b-256 9855fe32909785a3c8276a582fa57d500d080a71a9d55b87d8510fb523eabd11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 007e0f89787005840ed78b5f009131fc62b20fb981e9eb8b1acff166270b51c8
MD5 dc93327a8128cb6b6311d54e921c12af
BLAKE2b-256 ffed686c0ac0cf8f851074d6df2044f047729869fe6c5b8d27d7dc5a4f8e1d14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea17df993c8a675c66919c0262d7ba5840089f3696f544e6176542a340bc1f30
MD5 01bab453436ea69ec8938d4d11140e80
BLAKE2b-256 c0b247ecd5ff824c4293dc0cd70343a373fc88f8fce7b2a98b7eef6211608139

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04e2d910a8f7b2d4b4edae2e85c545bf7523af60f54f847070c011cb0a1d2d12
MD5 3bba925883261acbf4c764bcde6a556f
BLAKE2b-256 e1ef7745b17595349e6d93f9c09d49fb2096bdfedf44fd19ede4a4bd6f645383

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b4b4cb412e2b5babf726a3f9f58b9928b48dced2762634a8be34128d57b5ff5
MD5 235f097bc8295595d833a3e039b805bd
BLAKE2b-256 1e95e577ae37529ce7bac0b281f359ddfb15a88ee33c9bdfe5053cf7a2aa95e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c249b9cc376c65a9938f5c4c931c3ea07b0a3c8bab3952adc5cd32379e2d2229
MD5 eee04c17c7e33cb0270c50d01ecad28d
BLAKE2b-256 6bbfd6a7dc142cb84fb0b5c6062a2f496eaa459bca11d9ed336a509945264f6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b24d9667b8758f3150d33de4f3893c354ba0777f2a2a7a82d64c7acc4ea5ac7
MD5 87d95448735ca6c34fe218f7eb4b2ffb
BLAKE2b-256 4618e5574afa36c0f077d3c3a6e2168f9157eb93d69f17972fddbcfb712de51f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 305ca80c3289623d164dbfb4c95f2b9f4888dc49f8e84fd254cda8dd3725377e
MD5 4126cea74473d414404559725074bc0e
BLAKE2b-256 21d2f4f3cb69ef449b860665c3c9024b11b4e274b052724b02d8bc1609d63e45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp38-cp38-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9048b3185f0e4ec34363e12e6e8a20e9fbb31ff0dc0984b207764bda3e2573f0
MD5 e5cd36049419085e6b779936b5864718
BLAKE2b-256 51c70fc1ff49a0fb22933e21b5d3576b8cd6762c57df44fdbd431e222501d8b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64e47fd5839191d94802e6101274a58642d45021e380595b17c48bf709e059f3
MD5 44f089db91f4011fa419959b163dd877
BLAKE2b-256 67ce82d4ab7a03ebfba9894461671a5d1eb205b08887b5392fef5144917b3707

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36aa3b709cdab1d8ac8611510cc38a0bf154ef57fb0040dd78691de57a6b83cb
MD5 bb9a2427f2457d83b73900d820d0b66d
BLAKE2b-256 a5d7e9ebbad8250502e43133e3a9ee628837a71ddc9bf585c976b25af55fc6fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a0f18bc8b7c8730407d29c4614c15d2e82cbbe62c62b6e30069a10a982e49cd
MD5 e7f01332b03df042b309b61e044a8537
BLAKE2b-256 c5a76d85239651016e50cda94f6d895d57263cb026c91d2188a2a8d99c0b025d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea4da380f4affff4d1d2e9880aa3001420e6094195b0488b4ba334c0b0dd12a7
MD5 857cfa4d7f6e70092fd8b66dba9dc41a
BLAKE2b-256 28f191498ede6a2900b50501b5183c2c658bad180982e6ebbbaa5cb8fd0ac99f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 52c11874f1e1fea7b5225e904e980c30ea9e9807c10e09d8e940352421096775
MD5 c106a7dccf0b053eb5402f70f8983173
BLAKE2b-256 50422005af80bd725588c8f9269cf9fc96e3df44e95d4e185438779ff9b4ced1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abaec78ead15cb555e9cd7354c8cd66cf8834e1580439a26d27f734ddca2eae0
MD5 469e3b879cb539fe5e2eef6f32599b95
BLAKE2b-256 244d2ce253e48a033dfdc01ce6f9038aeadc0f7b4c121bae83f6ad6695c663f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33c4812df3d25e25ce40a91953a03e34972dd5ac45dfb3ce164da1584cb6b12c
MD5 792422ff43ec14838c6a6f035e766c09
BLAKE2b-256 f67b4e38f18291d15c496f631c12c8d05ac7463d48906bef80ec9038217b52a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp37-cp37m-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d7d3d29b108394bd10709654636b065395ae6b484b754d6505e0f49629a6678
MD5 b78e99ab2ade17c7d64e8ae343bc081b
BLAKE2b-256 ab1fd6ca25cab750a816d1af1239d9ce381840676a5b4bb5cc4d5aa3adb32a77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp37-cp37m-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.7m, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bceefe84128e9e04c3686a8826cf89d4d17dcb886b2cfe200e707c9041dd03ca
MD5 72d7d6293864c8e54284bf04ed751ed9
BLAKE2b-256 b28a982fd188ba63703358143f7ad7a7894d19f7e3e3b5f856d496bd3d52176b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp37-cp37m-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.7m, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aab742d6b408e1a59114cd81d7917bac2311274c4de3ecfaf4648c9359de61d1
MD5 44a27c6608553f09c568a8d64171ec35
BLAKE2b-256 fe7951765fd03f482bf3ff688cc0614dcf144640b813700f76aa2bd53760898e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp37-cp37m-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12b2f03206265bf0020ca248beec2893fe55180453ad6cf97d8b26ca99eed154
MD5 041f26bc364a2d121a029590f750eae7
BLAKE2b-256 d93af5c1204f221ffa701065b23d430f19b68fef16aa6da112665947935d3486

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8767500ec6eb7149e59c11d4260e20b174a2f766a99883fe2fb0251ef78e5095
MD5 cb9908f9314fc05e20a4f65c45828ac7
BLAKE2b-256 3573bf287e382337309fd9d6688c0163f9ee45c84127dc913f2289feede40292

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6e4edb4b4d06e88acd08c43ff5d041456f8f5543f7d879a1c2a471a5d13348b
MD5 e5921dc63cbb63fd10ad10a68deccb8c
BLAKE2b-256 19fe105709f6b73a44240a79eaa9aa371f561f109a6a321dbc6db7a8899e34e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 72f1dc88d09b9397d4fb9c3275be13dcf9310d2562fc43c4a3e46fbae80022ca
MD5 7e3ca7f62e7b50ef04e086d6a71aba64
BLAKE2b-256 36bf533ace2487f02b0b35931d24de8a9d1454aee3285358e41ad10d494a14ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.32-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pysequoia-0.1.32-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6834a563e663c8db3fac955ca4034875fdde9bee1a5f125a0a6c56c557b064fd
MD5 31f50ebf63c02e2882e6d41caee44d20
BLAKE2b-256 7157a7207a2e66a1d7807fbff7974a16c2471cf8f63e21d0b314edc2d27d4bee

See more details on using hashes here.

Supported by

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