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("tests/fixtures/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("tests/fixtures/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("tests/fixtures/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("tests/fixtures/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("tests/fixtures/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}")

By default no secret parts are exported and they need to be manually accessed:

if cert.secrets is not None:
    print(f"Armored TSK: {cert.secrets}")
    print(f"Bytes of the TSK: {bytes(cert.secrets)!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.

Expiration

The expiration is controlled via validity_seconds keyword argument:

assert Cert.generate(user_id="test", validity_seconds=3600).expiration is not None

Using None generates a certificate with no expiration:

assert Cert.generate(user_id="test", validity_seconds=None).expiration is None

By default certificates are generated with expiration time:

assert Cert.generate("test").expiration is not None

[!WARNING] If you rely on a particular value of expiration, set the argument explicitly. The current default (3 * 52 * 7 * 24 * 60 * 60) will change to None.

merge

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

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

User IDs

Listing existing User IDs:

cert = Cert.from_file("tests/fixtures/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("tests/fixtures/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("tests/fixtures/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("tests/fixtures/signing-key.asc")

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

cert = Cert.from_file("tests/fixtures/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("tests/fixtures/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("tests/fixtures/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.33.tar.gz (289.9 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.33-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

pysequoia-0.1.33-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pysequoia-0.1.33-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.33-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

pysequoia-0.1.33-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.33-cp314-cp314t-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pysequoia-0.1.33-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.33-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.33-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.33-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows ARM64

pysequoia-0.1.33-cp314-cp314-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.14Windows x86-64

pysequoia-0.1.33-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.33-cp314-cp314-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pysequoia-0.1.33-cp314-cp314-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pysequoia-0.1.33-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.33-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.33-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.33-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.33-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.33-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.33-cp314-cp314-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

pysequoia-0.1.33-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.33-cp313-cp313t-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pysequoia-0.1.33-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.33-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.33-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.33-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows ARM64

pysequoia-0.1.33-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pysequoia-0.1.33-cp313-cp313-win32.whl (2.4 MB view details)

Uploaded CPython 3.13Windows x86

pysequoia-0.1.33-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.33-cp313-cp313-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pysequoia-0.1.33-cp313-cp313-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pysequoia-0.1.33-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.33-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.33-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.33-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.33-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pysequoia-0.1.33-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.33-cp313-cp313-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

pysequoia-0.1.33-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pysequoia-0.1.33-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.33-cp312-cp312-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pysequoia-0.1.33-cp312-cp312-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pysequoia-0.1.33-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.33-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.33-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.33-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.33-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pysequoia-0.1.33-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.33-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pysequoia-0.1.33-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.33-cp311-cp311-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pysequoia-0.1.33-cp311-cp311-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pysequoia-0.1.33-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.33-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.33-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.33-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.33-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.33-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.33-cp311-cp311-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pysequoia-0.1.33-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.33-cp310-cp310-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pysequoia-0.1.33-cp310-cp310-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pysequoia-0.1.33-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.33-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.33-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.33-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.33-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.33-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.33-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.33-cp39-cp39-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pysequoia-0.1.33-cp39-cp39-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pysequoia-0.1.33-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.33-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.33-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.33-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.33-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.33-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.33-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.33-cp38-cp38-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pysequoia-0.1.33-cp38-cp38-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pysequoia-0.1.33-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.33-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.33-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.33-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.33-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pysequoia-0.1.33-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.33-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.33-cp37-cp37m-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

pysequoia-0.1.33-cp37-cp37m-musllinux_1_2_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

pysequoia-0.1.33-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.33-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.33-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.33-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: pysequoia-0.1.33.tar.gz
  • Upload date:
  • Size: 289.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33.tar.gz
Algorithm Hash digest
SHA256 04d409f147e0832dc87dac8f83e91f6303975ae4790f74081096ff667effc580
MD5 e1d54a82f9c5f9cb8b2c335cbb73603b
BLAKE2b-256 a25c91818902d0b308ad47d8cbaa36bb025ef7a389c8e12a4fdef2e71065100f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea4ecb8dc1b564c5287fa956db5f12b7eaebd8c64ae8cf4113d518ee53cd62cf
MD5 bd5295354a9adda3b26dd4ee324fa3dd
BLAKE2b-256 0afa701cd4246a01d9716619b3a8d5292ed073458ec79c69d4d00e60937beb4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87bcc91139574328e5aa5f9a9fc32aa4be81ab7268ce9800bf6ad0f6ccc25d73
MD5 0176ca721ccc5b32cdc6e713620f133f
BLAKE2b-256 14c07c98663d7433791a770f6adc20d106f57dd7b8eebc2a2f282a9839d9450c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5620173d3ac8408eb431dff70bc169f0f8fcfc2a349196cde047e2ae7812cd0e
MD5 817a0ac6e5a61094407e889ff53e2926
BLAKE2b-256 82479085737e1af7a745b316251ba00eddc1c0cf25889b7d3ab5278c045ae543

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5bc6899de4ee5de59f91f6a6fd64ad1d45e230213ad0a5034a32730a0e5bd6a
MD5 a073f8da5658103ad75e28824ffe07f2
BLAKE2b-256 83fa7eecf542b5603e4aea8e6668bd9910b0ef0626e9a51dbdcec2c7ec43f95e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f7c3a312d7aeda3edd2df6603b3b1776f98aa0d638e925144080d3b0e2486f5
MD5 302beb296d90424f95b45ebb8e7ecffb
BLAKE2b-256 31b6f38306f3513e84ccedaedd1f7fd62315c6d5d19a30743bcb5248e84d15ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10714ff7429360e0a6e166d51c55120b1cd082154a597f260189471dcb037eac
MD5 01ac904cdcc85b553e4e350a0e9cc602
BLAKE2b-256 b2ad7f98451477ea03f1f14f779bf0d3272fe804a8da90e92fb56a38873e79ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e59eec4600309f69e3e03e565395ff86bc52824acfdd01f8809136a5433dc14
MD5 4389cd7718508a451ba737a3d17aa0c6
BLAKE2b-256 006755c5d84bb4ae092d46e36ce1dd9b64b8fd6e93b49cb18ce2991e1ddf6580

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ee0f4cfcee4845c1a9af2934f6aeffd4306bf57424c3d7df97ce0088fb5dd75
MD5 27437abdf4186d719219bae97dc1f6d3
BLAKE2b-256 7d80eb4dc13768ea91ebce386e5c373097cc33f089323ccbaabd640a57eb1ed1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5193d23783ba99f7e2391943cef35e5e28039257ca4afbe93ee162fd7f616432
MD5 15ddf51e48313df64bc139f7edcf9142
BLAKE2b-256 f26612883c603c03a0793aa721ad8e69cb133bc87adab1cdc5ac3727896090c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c4df3a1f102222601ccf9e97ade66e5fcbc128f36762d0a542a00204da6ee49
MD5 214fd29b1dd6dd2c3c28d8b841b8661c
BLAKE2b-256 f18a851286feab3f50d15b8f6ff01cd9ee9b297d5f296ddb12ef8b2936c8d502

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71666953151115d1e8559124b851ac1b35758efa2e97ee6e9f5b9f4d6fbf38e3
MD5 b44826a6718ec83fb7be0377b7d2053b
BLAKE2b-256 ffb39066daa01e24ddef78fd7926f950f2e1dc37dda3388d933142b0c114d006

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00703ebb01baa8fe4d18e7560abdfd96a5219dbb997d5b274fc7863a2a72b5c4
MD5 97f0f7650564c440c631e3991e9a09f4
BLAKE2b-256 496f29ea78c80d2d86578dc0f174db785324d10f9a6b52a2ee4398638e51746d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 617806acc46f8e3062e74ff8815fd21e5d894c80e4537640f0bcabac8a5e4506
MD5 e0d59605f7954d778b99da47e539827a
BLAKE2b-256 e33b189b54e5c64a737c3c33f04c68564c9dd8d12ad94e65c665b46a2ebdcc16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca0899a3cbae4875e926951d83872312118416e800af3bdd3d3c415a11a9e8e0
MD5 bd3d336687196a8315c76c53ae0d50f5
BLAKE2b-256 d7f3675161b8cba91445372077b70109673d51a0fcfaeae2b61becfc59df7a20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 975e0e83759bcf2584d52191127b9af0dc8455021a8894fb85191ad3e8c9a4f1
MD5 999356f16399cb3888015924604c4ef2
BLAKE2b-256 d23cd8c206ef0e4f18828e90b3c779c004f1d0bac6be98a32390f8daccb13d0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d48c45d69aa4bfa1da077aebd53525e22b3ddcdaa963acdb7f64fadebeb063d
MD5 af2e53e14709fea4389db2bc56a05280
BLAKE2b-256 0e68f8dc7798514a5a4580f29b2bc9373b5679f03728337a542a2b860d0ead1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 908d8db9b8b740059e78ff99fa117eeda23c54f7d954cfaffd1dfb1f676ae10b
MD5 8eb7a81e11aa6523bf8aa3a3d9dd10ba
BLAKE2b-256 528f81bf53e3d6aeeb7e8f4a1e4cc034e03369d9386504e48a7dfd4b07387cd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 017902be1afdfdbfeee33cb19feb463a47f525b42932a1308889e87c09ad0950
MD5 2ac3e386f144e8f1cc6b995fcd3575d2
BLAKE2b-256 d75729cfc26202488dd8a5ed852aaeb7a0127381d260a66516688956dfc6b1c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d5955500416cab4ac651c3eb62dd4520fe94c7bae5106abacedab4c63df96827
MD5 dc88675601bd801134362372d35ff396
BLAKE2b-256 bd7bd8225162bdafccd0395c2620ec5af735402a4a2bf1b87c94bff5aeb0e32b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3a5c44cf0276c33eb84f0f4633f56d7c4218ae4536881bf95b9491ecba6d7c39
MD5 0aad4daa912b62f32d5cdcc1331f14c3
BLAKE2b-256 cd25e72d379767e8352662f9981b06c4f2b13dbf04b39d3e6e8eeba99c0a7059

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 466841dfc873de0ce56b793f882aa87f56fd9a75f15f8bdeb74b4011e13ee2bb
MD5 7df08092981d8f2e2908e0910c50d684
BLAKE2b-256 0f5173158b1337b3cc743b491953cbc19452ac700b6310b49db8d1ead1817ece

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11a2689196f9611ef92ca87bea799d27025766442efefd15dcbe3d1d3d0e2cb4
MD5 87edf70921ee3901f298d152767aa60b
BLAKE2b-256 d4b80f1f6bb597db1c1611eca5528a7782d9985780623b2c9cede3b8fea9fa5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 818de49e0d0f4b6f665f1c17aa037bcb9b2b201de97a8d435b632381d0431474
MD5 2fc434008fdd3f6443620dc00f582ee7
BLAKE2b-256 1e23e9abfe2a61eebc40e87287dc118b33c9beee1f0e3b2dbd895df00d2f37d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49606139710dcc4d13863d8041bd9a5b16e7e224d7648e8fe705068143b35084
MD5 352ddf08e49293a6bb7c6fc33109da8d
BLAKE2b-256 a01fb649c9bcc87fae25bc1921e963746ce870507c42156cb357c5295da3a942

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2f0a979944ade3bea3a01f5f893b19c4f4f55b0a5a4e3e007fb0aa0af2ad6fb
MD5 4ee1000de8d24934c675e4d2728a09be
BLAKE2b-256 de7b9a3f5563375eb29ccc48feac85b5806ca273bd3f50ed132417de81e2b321

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d7c87aa786bfeaca942776050a7bbba018f832fa44bda0638dd6fb7ad7671c79
MD5 a546fa159089dae249d2a7f4312f7974
BLAKE2b-256 37981501b5258e2b789e35149ce325a011e0f961286870248f7835e2ba18cae5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 710fc174a4ed140c53b7bbe3caf13237b59edbf93242c81c2a7baa61530a4f42
MD5 f43a84eebb2599b5153c391075bfbec1
BLAKE2b-256 b5ac1da6d455706f217a7b59d5e760af171ca145bf34272b167e95deb5e9cb76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb93dbe0c0984542b29d4f2c12312c6b49c48a9b6212d5b0cbb1315e6d37f3c3
MD5 dce4f2b7ebe61b674f7f5c2ab81fcb70
BLAKE2b-256 efd24775b519537045d0e0d5dc01c62b2fc122eb3ca8ec41276ff078382d1447

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 833b496eab98a2490921e668f3d5a2c84875a7d60678f0cfe0ebaa9861a9d1f2
MD5 b333872ed4103d5f34c6a9b3c75bc524
BLAKE2b-256 d5dde0018a8ae38879d752d89881e0d8d43732049fe0aac3d6ac41855ad479e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 370fc81caf8cfd0bd5159ed43715fef094078c83500d0dcb97eacd7ecfe61ed8
MD5 107993bbbbc2e1352be2040514a4a5d7
BLAKE2b-256 a60ae57273ba70b288f3c56fdafd9279fa73cb0f4269c83e5c4768673753d364

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44d3e17daed4fde88cea57d8aba6e74ea93c0e94945d6324eb7b32bfbb51d270
MD5 4a5ab620e172826eb80a1b9aadc0b1d4
BLAKE2b-256 b441d504254aed8f0ced53dbc1183171786b412be6afb5d278b4cec040f1dbfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8cd426d3045b48ac2dac2b6dbc6b69a7d468a485d12d44e6dd232bd7c380b09f
MD5 3e6fa39d1df751e2ce5b84945c2c6840
BLAKE2b-256 9c0e867b8b8b244ea5d332d7417eb99c0427b439a9469e885bf9f1b14fde6b0d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5abc69a05ce7eea3deb5c4518e56a2db397873742d32a41d7e53f48e9198ec7
MD5 cbbda01106da5e5dd566b3d9f6737c06
BLAKE2b-256 4bb20113852d43216a6261f37300a7fa4bbf0a53d3832d6d8b634baad77dd439

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 88c0b032a73cd83b39a26cb1602f0520f26b895b9167fb11f39191365c94ff98
MD5 a28590431f86c834ecdc1669c91d6cd5
BLAKE2b-256 09170424c21ab623c4e9ecfbfad933a0cea55316d95c219cff5998b68dc4eea1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b6a90d54ed70dcfd91fdfa5ec1878216ab36b3e42bca4bce5bbb3560ce7b6fc7
MD5 2f43313e830bb1c650e7047e161875a9
BLAKE2b-256 6b79e11c67d3d2b23934155b6420321fd6156026ca4835f23160b63e22dc8c98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aaedbedeab154391a4b36e64c1c59b83ea298381004feeb5c931e9a91db1ffc9
MD5 6ef908b8ed0b3fb18897c4c252fb4bda
BLAKE2b-256 e48e3c6be9a72915a6f17eabda2557bb76300fdb01e3c83d55d632bcead2c3a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7aa608f45395ad22a32bf8959dd6daed303e93dc99874f81d1bcad2dc65b29a3
MD5 f3055d9852f4328578808ec3cb508772
BLAKE2b-256 f5f0438208f2351cfb5ac53d8715102532b5f90a277c84d8cec7b58c80bf508f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54640b5bc703f47a871e2096f8684223a1a604e60a7a084666a0cd4c8dd81fa5
MD5 f227088556fdb83184be945b51e5bc44
BLAKE2b-256 1cad6fd1cc1fe216b61cf35e860a8da99ee5364a67a4765ba036066254fc4e0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f44ce9ce9e10e0ed5d7193460780e215de4df11aa75893ac9456372890b1687
MD5 c5e201e7b56070d90e10c33df5971151
BLAKE2b-256 c42c3ae26165c14990c6cd4152d54bfe8635c61449b4951a0abb44387964b074

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f137ae2bb2d4099e3a771482c265b8b5ec21fe12e67cf1be1c7e91c5fc31c792
MD5 9caa75341d5c7ae82c2c0dad1ae857cc
BLAKE2b-256 104d214661855c46cfd121df34c6267054827f7b037ed1fe9b206065159b36e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 76682c5d6527311a3101c35ded276b2d7d0dc00600eb286b379adfd5a7a1a72f
MD5 565f6b809d88a0d01dcfd1eb5790c981
BLAKE2b-256 d57bdfd2a837c63a741461288c324f2e9ad897d452e56f060dac326a987d5227

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b8d5a17bd060105e05ee6cdc86eb3013a93ac5b0456a3123ab855ad02cb479c8
MD5 1b3ee780fff28a80af45fe355b392a6a
BLAKE2b-256 eea1efefbfe81fe8a67e21e05916ac25ae45c04e4fc5a1559390b6b0db12fe01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 947bc0e8614b63ec41c13a8dfee98a0c88ecbc4e71f1608258ad93cdeb018608
MD5 3b3a30733390f07f21a506b333d751b6
BLAKE2b-256 096eabedee8d8818412897d6f9a9c976a764a86baa63aafa4863f1b4cdb9d01b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77ca71c61a2a7ac629cdf23b0ba35d5198ab14918aaecbe366b1c5a28b8ea843
MD5 1a938214d82f16b12604c1f09e7d8e7c
BLAKE2b-256 baf05bd04c9db94396389daf4f49fefa15467d95a04d290b51c1c79f79ba85bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b33d717beb2d08f812cec2c00bd06ae7d8a0dfa4f1a5aa9d5dd35dc93451ddfd
MD5 08c47b25dbb15feccb1d9a64a809729f
BLAKE2b-256 2262a2a1aaad9ec3a75906010171709b9e3d02b0d09781a898b51de339c27c30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac98783c93dfb2a78bc404657ef6ca799f131f52355a6eaa2af4074709a2bc26
MD5 56bef830567b794cb79047a233817185
BLAKE2b-256 be3d4859e99bbcaca663f41d206f5f87e7f5d52aea8c530ba22eb4f124cf0de3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c25c9049dfc4f56e0c552428ec24dd713200b1029069b6065d39154cf5e8432
MD5 7ed5f8a47b05f4785b30d47ef64e71a0
BLAKE2b-256 ccc7de71853dbb75c01b0d8751aa242c0cc402447b1f53ff134b091fa8ef3784

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 960ec5e4d3d999f63c55bb90265f8676f419b220199e80e1dbccee4982c23b13
MD5 103333d6da14e93720c89ec45d859789
BLAKE2b-256 c66a3b5624127757e0d56cf19cfbc62ef29fe85501868182a03a5bff6cef45af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e81f820884388720c171733ae21f823d0970c034566b8a474ff253d85b351c6
MD5 138c91c08f5cec8358440dddc3e344da
BLAKE2b-256 379be5b04bbd1717a028861de5cfeb5d2bdd62e3005d844bc1eeccec4ce400ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0886d571237865378ec3c9c45713ffc0aed44505f25614583f0d4972aa75cd29
MD5 f0cae9009456a88c3fbc7804af591458
BLAKE2b-256 e240e9c14c8ec61ad4c977bac6055e651bfcee4df6edaaf803fed767b9f5b307

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a845204b93226019f47a2a018edd49fdacc6539ea6773b5b6e05507c11a0c350
MD5 dc902562667351b7ee94f2bce051770f
BLAKE2b-256 8c4c92b0c30648e6803763eba72d7e34832786c9d13f55ec109c8cfeb2242fa1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e35b3ccb72f4b72afae83da5c85a184d986610001e8b23d90f995dbcc61acbd3
MD5 01a98e6d741ac4fb9d0520f00464c7d9
BLAKE2b-256 4eeb3386925c306be972639d61b17fb33e2a2f6f6a03f8d9f95cd59022b7502e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb289c3c7a1915658566ed5696e161b60a742dd7f61749465c97fb6fa25803ca
MD5 632e64f567775e9087056b695952af55
BLAKE2b-256 7a0802a41843100d521e93d60b2302f2340520fc4ad7e29e11f6b1819250e35d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8f659185cd68a74160e0bd22266908c82b59aa76043a0083ad6d5097b5a314c
MD5 f79bc1c2aef685e608c97f267543631c
BLAKE2b-256 8809240e98ff4c78b8ce1e42cfbc10a6d69ac2510cef54bebc464bd34f7dbfcd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce8f0bda01438a73b7fbe97de558c567de1a756f8be8387cad6f75e2f0eb4961
MD5 14a6d6bf0ed73766c73961ed959fbda2
BLAKE2b-256 4d34d71f174d130d92668b640c50eaf82d01059010f7022260bb8eb11fa94dea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e5be1e5935dfbd36e38ca45a1de094f535422417e38107d054ae789a78f3ceb6
MD5 468baaa57caf35e03879156ea90e1983
BLAKE2b-256 7804a5dd2e4570165bce1d7b14477887b552be607654b272df96195e1e735456

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2ba29100de86beb5d9ce9e701a5977d93a958d3565f61d8b5b134a920039b406
MD5 02f72f661424c1fd8b99aa3b4a67dec7
BLAKE2b-256 5a24be6e5c05cbea69d8b623aadb73519d2815cdb6026a88324346205859da5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d6ab23eda119e3a161ac1b351dd622a4ae8644aa79b0e1faafa16f8d56c5d9c
MD5 66ee308f2f9955257e56d42458c22295
BLAKE2b-256 b2316fe65d15fc32bf0bfcbd1bf4f102a3e7c4aaa7d0fbaea312b5eec7ff4e75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 825061be88d20a9201a14d70f2d36df044c3f5db4278b07ff3bf783f23444b77
MD5 aec0e6867c4a6f458e679d17a2c36660
BLAKE2b-256 c720ef4a45dde99e59e4baa9eb7ad08be1064c3afed6a360f92d987ff92e8630

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f5d7b65641448c220dbaddcd509f8776837a4a3b20df73058ccb3c3f6a66d7f
MD5 b23a7b6dcdc6509d7513d3967956baf8
BLAKE2b-256 fa84584b5d98a8805c3cfb478da2edfa94816f1f26ca6ef6546f4eefbe855656

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7d2547b0c7aebffeb158ce789f05f0da2d1ee9cdaddc69b7b776cfe76cbb4ed
MD5 6012f365033151242690c303a8b90726
BLAKE2b-256 5c4f0aaa679679150bc9079d478172c4d0ba608798a4c05f0f4a20e95832b053

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a5b53d784931487953503e68affbdb2287861e3baf0692f3248bba55ed5a035
MD5 a1643b3c4bb8beb76a4f4ce7fc420d35
BLAKE2b-256 ce415d265c5e6a405618c0101dbf60a5153f403722ac9c0b4fb5cd41856d7179

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58ee8dff2b0cd1bc083bae2bb34b5dacc7fa8b898d5f6d6e1d4152a820a130fb
MD5 c29353271b1ef501aa0aec80bab894c7
BLAKE2b-256 47d802c0432bee7b2d86f08a8256d2bf3c90ba14da8bb6e4856d4ad90f6a0fe9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f425470ef8009328b01e8d223b85f4b35ed1c835b03f967c0b0a84119061e857
MD5 4748830c93f6ce79b0f5d6eac137f44a
BLAKE2b-256 1ecc336f1e55f138a15aafcb75c368eb6660d8f0ebbb408e5faaaf281284a626

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f19ef8e67658c4c1c03cf4c3964c48ed0671db31f2ea1cde068810e134068fc
MD5 4f2eba7009632cc146a459d0d2a9c0d8
BLAKE2b-256 619ddba2d93a85323d77a85c6cb527ecd414c93fae5451c4532d9c45af3b6dc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c7c856297bdc3e3263809a4811d374ad3d79294c04ee33f8028f9bde1cf8348
MD5 51ff048b9d6c1bd698cbc58b3518ea19
BLAKE2b-256 718a2bd336ad5d007c2123b0edcc1a4a641703df47f73555654bbc12bb055a1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 632271ecb7e3004b3571fa330c922ebca09cb028af9939f44bb670aeca3725d5
MD5 4c3bd6cbe3f523cb0fa9cb76064f1b0a
BLAKE2b-256 58ec7a65d83f3c34e8182f01ae31ece9863b04224fdc3bd7f4950adb1108c5e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dff24db1703c6b50c694fc3b6ecb746d6a70ce3fbce1b466ad04e467878c0863
MD5 23aafdc443ed9678e261c193373b47a3
BLAKE2b-256 877b786986d6e95d21ce4cfabeea2efb45d7423d1fa63855fc29afabba566279

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6335d06d44721bd7d002cabef45881e4e31b2bb4cc4198b1be9a524d1de79ae7
MD5 847220e3066d26a2423e343071f11275
BLAKE2b-256 3868f7d58c1477b4b7d0c623d252fd5f2b4f3b454420cef5cb64a547b31d2f04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f1e8d8ab74e25be934d4471e649664f46a093344fc8fd7d75897fc3597d06de0
MD5 b8a6e2d9dcf28a39c91cb74d2b563722
BLAKE2b-256 296ec89ab249d2a57ea1c33ecabff9bdf67ec4bd10e36004360babc6f6219e4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abad1ba05851ee805a00ae060829a4e346523647308ddb18a8dfd78802d6edde
MD5 390eaf92f2b05b992af3a16ba6cc27c8
BLAKE2b-256 ce0385e4d5f174bef9bc3ecdf1b44906f466dd108bc23538f64f67a1bf876cac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7415cbfb1630a52a4af46dbb62b92395a07d9f35593adb6cadad775f5b2fe661
MD5 35d611361502ff60a01b7444461351da
BLAKE2b-256 408b49ec24c1b569b3097a72bcea2ce94d409adf2fb32a1b2173a2b5b9b7d05a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed55c831a2a1b64b4f5b72b15b1f2216fa9775bdad73ac6529cac3038a9c7010
MD5 0645fa563a6238a208a918a338ece8bf
BLAKE2b-256 4ea034e4f88515a90a8bdea0bbabcffc8e12a3c0b7e21bd7828c4856f95ce224

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc57dc742627678ebb447995c22b0570f759dafb7d4a731c0b919dcda67e9d88
MD5 2d6aa9349c03ed269dd4df18bad030ad
BLAKE2b-256 773f6b65c3c14d37dd7ca90010ba84940837a5558407b3420d3fdeba54a6891d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc63d577fcc908a8dd1350baa10624db7d90b728f3ae1d26914868633f9ce8d2
MD5 923b95ba83bf71874c474f3956dffa09
BLAKE2b-256 e1b3cfc8173ed4a1fb6767378efede12722cd7d32715466c3b4786026551dfda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55a5f8051957f895299ecab63e2777bbd230c9669c3838a956fde86e96573ac3
MD5 4bc1cf602011d13a7f835587dc4a010d
BLAKE2b-256 1f5b2b5072d4fe5a7401e70ccfc3c674f352a13b1817b08fc7e2ba80d2592232

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8877fdc793ae02c62ddb703dd146766e46db14eeee2ee8542677bc902f754250
MD5 408fc41ac60d4a896b96d3582b7a90da
BLAKE2b-256 b43104bb99ba7043ef81d275ff9f4252ce7fba9111a14b9fb856cc771d3d268c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9cbbd089846e9b762baa19fb00f096215ee5a6f853718f508824cc001491dd8c
MD5 723300801de13478d8270f0a2c4cac98
BLAKE2b-256 aee3fd2b3a45e5977a80d3f12bc063622c5fe714a3d30e349eaa04df99e4adac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd7b922a3b9e657e1f3f9fa97ce8b4109f8bffeafeeaeef8962a31c9e1859ef0
MD5 b4c346d5c866cf13dfedd9638f425a33
BLAKE2b-256 935f46380b62c5a860b88222bfda0f73abeb1c18461e0d582ffc44e5396417d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e41002bd2ee517b89f69c299f8a4b1b7018d141a60991e8e574caaf45b2eeb3
MD5 aa08501be477b36cf4f6c9d0e2afbb77
BLAKE2b-256 f22d1dcec340b55860449adc543bb54e70a3b5f559c5971e4c4dd5b1ce9a45ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d782e38a16dc08bfac734764d8efd9d2647fb330d021492d5feeff150dad54e8
MD5 0a4d6bd35bd69e9d343e33671db21e50
BLAKE2b-256 97001b12e804787f4be2015f3e0955c7713e50c88ade3c791049d09a936440a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9154b3dfe35bcd2d5d17a1f1ebb449b63736cf5b197608538ba983227f9cd96c
MD5 061cb87267ec280cf6cdb0429b0c22c9
BLAKE2b-256 e7a50b7df98ad21f28c7f1a3679e8e43a0e4aa3d305a450aa8440f46fca1313b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 36b650dee45c145e85df50436393e5490f70626a7bbfd22ef20a9d6fba73a3d1
MD5 a3053ff2db3617be95b4946cfe299495
BLAKE2b-256 062c92bcaa5b9e5f55ec16633d25122ca865653dcc88b3faf7b5d55572b069f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0a1bf1bfb9c49acfaea7d9872563213e5931415cae231bb36077a9a243524d5
MD5 3027839b795c24fa5f9157f0b32c70f3
BLAKE2b-256 e4ac75364a9611bc5291116b7641e0cb53a597ac98ad3e8319485f85c077e893

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 215a50130f9ff851f5510240199e6ebb9ccc11d656faf830e140f0dbf1b0f8f4
MD5 d0e705744d339f3ae1648078f386fb5a
BLAKE2b-256 08db1efc9096b0c54628290779799e37784fe8858cae93d5406074e3f7229ca6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27dad64d30f65f7f6211a2f70107741184b5451cdcb0a61955eccd25efb21499
MD5 b2247ce74db2c24b671a7e0e8cfe41fe
BLAKE2b-256 8dec302757fb7d071f32355f5dcf1e8a684d8084e181a10441a7880887408515

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ac2c7b5290a9b110a98b8fcad6b42e06e3441a4c9f07c76d91caa0ce11610cf
MD5 8e8b9f93b86f1ed4e49aeb64f6e8467e
BLAKE2b-256 31ab9569ba20fdf99e672d98b8577d044281933384f2d6f1fc9643ecb34cf53e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0b127db0989c72a0a8d88cc7ba82272cc568ff901e686f1f422851821888e62
MD5 9ded9c25c722ccef27ec876b313e0f3b
BLAKE2b-256 a28228fe55ef302457c41e9f4743c0ca498010c2a32464c1a6217bc692201754

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e2093609b39062cea5bd24f244da8473cd1b3ab85ce3cb590b3039e617e195c9
MD5 454df55c3c69c21d44a870b2bf5331c7
BLAKE2b-256 50a1ef54e67c3f2bd773a5598fe3ac2341cb80a92f640a4d76c0a73eab88964f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4792034a1dd3ce186ec9493a4fe5e2d33487c658a0c112b77fed2ccaa2de4e4
MD5 a2811df956111b1709924352d12b82fa
BLAKE2b-256 f29cae9674768744831c8d750680af135c1e443e20a813728678ca81724c6f33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 baf8d2003273bcbf718d14b60c67ae5e4f0e55ececed34ef74c07d5304582223
MD5 a7f4a6829fa3fb1a76fbb0c78bd175fb
BLAKE2b-256 b6daee16dc0dfd2d8b6f1c690a016504e8d313f0471202c672dd03eae92fd7ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14672923726eed4cbbeaf6c4f53d9e8b86fd84aa9908919adb827fbcef0aec79
MD5 42954ffd1ee3274754cb623c1326059d
BLAKE2b-256 8faa1f884d6a55ae570fb97baa6e1e9e443239239b5795f2de62ed4f2b85da5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b826d0520e9e716b11013519550a50f9f6e8aab88edb764f2b01837857935476
MD5 19b36548008b12fe0c0624a3a3969271
BLAKE2b-256 67f64ab0c94d024367ec003d4c156dbf632a9c82fdbab29c3356f75aae83b234

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0910d167344fb5efacc56352b5d11c6058efe0c019567c87b30a19ade38b3cb8
MD5 1ea8dcf36e9406547b4831ecf23c0dcb
BLAKE2b-256 3b03fc84a900d6544781ca0459b6df27b112fe5a7fddca24b102d4fb826cfe3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9135a60edf7d8f4ffba91206ff3230e08032e29316442d0aa916fdb04e11ac6a
MD5 50ecf528ac449fab9e522654a260e522
BLAKE2b-256 0f9cb4b0fcef40964442bfd0395bb60b4a4fc537b7b0a761ff8412029362a8ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b58acee15ca747a035a6e29514bd5b5dc411d47aac9b75d3ce3677a211c29d3e
MD5 a23923c7e29bb76d7243db32e10d8082
BLAKE2b-256 b3e4409d2e76f4b62921bee03f2f79c1b0cde05f8c0900a7453a597d81b85b1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3ed279cd5e593785d71309a3535f8b18f205ddd23778dc9208ea26b6c31a2e1
MD5 7ed80cb8ea37d900523b35b51c95a9a6
BLAKE2b-256 088952355bef995e208505480f5f3235633301d4b724e81bdd4b953348fa587b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05d469aba20b55999320bbda48146756e7790e36cfc803acebd021cfd7a3298d
MD5 a578f1d24591ad01d77d29eb71c694aa
BLAKE2b-256 97b3e1836bdd48bb05dcbd3957612f644e1a41641d9728608a2ed8116164fe02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 130e44df36579b6c5fc1c5ea28bcf00dd0c395ce20b9b38931d59d7dc530959d
MD5 731051ce5f2ae25c192fa038ecdaeefb
BLAKE2b-256 3a89413b3da597f4cbf732d5429d1890c8c0d11d9c1a6f224b2933eafa38ad23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54248c8faa3dd2e160418ebf8c7936f92fb361cf88ddcb196ffbd14612228bef
MD5 38bcf11e135f8ede8d71b24730e8b6e5
BLAKE2b-256 c89fb698c706a10638a946314827fd958ad318186f3c11085bf90dd31de7261b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d462d4c6bb88291cc976dd12a8e5a466b5f7c38afe9b9fdbbb346fd863c85f78
MD5 116df6a1e273b62a87aeae194475e4e1
BLAKE2b-256 a936ee7a10107f6aad05d884977c8e05c0803723d938db93082e7ceca406e368

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23e1d3a9fb30f973ee2ccb949c8bdda8ebcd618a51aac105c4b7e8d9bd7cfc36
MD5 06af44ed7374a00b09951af0cce206e1
BLAKE2b-256 aee3010668484eb22400042846956af0bb7ee63a189a1b66b9217297339acdca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0d010eef600f7c82c1c0065e382dc905fbe7c170eca19e89a543b2fc786e30ca
MD5 49a9c39b1311ad6e360fb7d2327595dd
BLAKE2b-256 7d41f5a7fe8417222b1ec0e020b875a24384acbececb938157560c38f675d824

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df1f6612abd7f22975501aa6cb6c3949908cb90a3913718010e340728986190f
MD5 a99d88bf22d9ce5dc1f8fc3b09964a0b
BLAKE2b-256 08a62653c11b78e9eca61b308eac05c382843719b87c39dfc2ac1f63035ec0f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 576160be9a398affe1cef17a2dd200753b016bd63eb84ec97648bf3b5bfd96fc
MD5 5628e2f0d2c855b8643e10d500db7395
BLAKE2b-256 a7fc82390c5716f6d7a578ff08c2ddaeb936607b69243f2e9a44e97dee8bd056

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp38-cp38-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 381a9e918a17b2135b96aec8ad0de94a69a74aae466c9b8858ef2076f74a0f26
MD5 744a8fffb9a4cfb5b2d97c0b1269a5fc
BLAKE2b-256 fc7d0da347381e4f8195ab29e30b1b9f562fbe347761106e68ed947ab6f9f371

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6736d9517c152b8b40db83035070995130a3d49119012a90acff886f659239d5
MD5 9937fac827f7ccd365935b616d06636a
BLAKE2b-256 0960f36db84d215d066693c5f9b64cd63bcb72d3343de07ca2d7586816ec2e34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1950e939d9ccf410f031d61fc0311cf4b4ee12fda679a73c65ab999f7c53031
MD5 0432f8f974e0ee77d0235a45067c45a9
BLAKE2b-256 847073bd12b76ade70e835e02e0217c87b2eee919c938dad69f44d1a7cd98a1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7ebbb13801e90b38f0210c2e50a0db2fcbd1bbd8e5fcfd04ced09c6db6786bbd
MD5 774b0815d962b24d88d26db8988b37aa
BLAKE2b-256 328d218970b73bd7d3611f5bb78dab1c6e639eb33703a5d1f5e01dfa198ac2ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 948b0767d980208491e89acd99e82d58477af68758addb5cd9541b8c0c597d6a
MD5 3be6320bd9a66b3d359ad4fe1c4fae5b
BLAKE2b-256 1d152d3124d5755c966ab109dfa7fd0d6a98570249e682f96441f6a4b1714991

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 858da90818908498bf17e3c0de99398dc5033d850755b99ded6d8a74f2fc0410
MD5 ef6973eee65ecd1411ee906220608c83
BLAKE2b-256 7d2693521ca9ba7f3abb86fb1fa56837879d729f3ab520e2af269668f073a481

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6a92f7f695fafebe38d467561413d38ecbafcdc8c916635c2a5be29cd5ad91a
MD5 1684b8d928af10b1c76fec9edad2cf7c
BLAKE2b-256 310a8829969b9595c065b728f0401647dad202d03fbf70203e0d346b51f6b7ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7212595667de224a5f18208c02b5f2ec2f56fc99d0fb297f28b61549c7157a7b
MD5 4dbe50a8c9c6d479da3f1836595d6d1c
BLAKE2b-256 91222b70e5906c0c8e44a9d33ea6faa17dad1a40138ca01399b6f36f95f1c5be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92aa8f8305ef4856975cc40963cb2094f4af38d47c8f48c3a924d2adf9098ae7
MD5 4f39a5564b35610d5c97dfbb1513a102
BLAKE2b-256 27bff4b622ede1162b99adf386cd5bb35b8c3dee503bd990bbf5cc7966ad6ed6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f67ef53140da7c9914e0166aff93598b666c735b3f364d412a29f18ff9588b9
MD5 6ea6074a8a4b4aa14d9044daec635dc9
BLAKE2b-256 b6c945bedb11742e27d1d903e7273dbab0423e50d7358055a7fb8ec9d4028bd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp37-cp37m-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.7m, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8117326edcefacd1ceb9c8e75df871bab4668c4b4c3bbd9de6020ed3fd3d5772
MD5 35928ecfde3d2d4ca0b5dbe54f5970f2
BLAKE2b-256 aeeab626185d75372b17d711d04480712887fb45fc38f7d5e39261773580ff91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af6b641cf156c82a76dece86b0bc5f4624bc002b945abf39a278492c2408cb15
MD5 4079f5c351689847a558c500ddda701d
BLAKE2b-256 7397bee05b6cebc25309b06286b268761b3147b680f1651821b2248af1f119ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6387bf9058530415602097613ddd75ff67379712ae3c5b48ae421cbda31c9c86
MD5 b8093281265d3cc306e0fad21c0e7079
BLAKE2b-256 ead39bd2c80b793c270492a1b661ecf4d1e4e497d02c8f03f6f19617bff196bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 adf49d12c490861a8f814d7e8cc15780d322c5e309dd16dc36fe0e276acb29ee
MD5 90efb4c165bc0a61fa6efb914ad4227d
BLAKE2b-256 43a3f096b6fe7e9658c7e097c8089236aeb384035ba83ebd15a9181d2c304673

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-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.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 30dfb689456d2d1a8b0a54dbe97cefe98ca082e1d92a00bee84c0c9ebbf2b427
MD5 938056c998def86fdd6e16ac80d923e8
BLAKE2b-256 56da8a6fa622ae1b78f9f5f6e46f51af042633df6301a8fae5cc0c7ee4b6bbb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.33-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.33-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60c6e85e19fab9b7fdd4ad0c76ac456b5760a990a2b440b32d1e37e72f7044ae
MD5 3296247bcaf3d3994ee6b1c796301df6
BLAKE2b-256 2bf6fe303666bf81ed145638f990e7063703beeebb33c75d8a24050965ead603

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