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.34.tar.gz (291.2 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.34-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pysequoia-0.1.34-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pysequoia-0.1.34-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

pysequoia-0.1.34-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pysequoia-0.1.34-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pysequoia-0.1.34-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

pysequoia-0.1.34-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (3.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pysequoia-0.1.34-cp314-cp314t-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pysequoia-0.1.34-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.34-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pysequoia-0.1.34-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.34-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.34-cp314-cp314-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.34-cp314-cp314-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pysequoia-0.1.34-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.34-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.34-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.34-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.34-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.34-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

pysequoia-0.1.34-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.34-cp313-cp313t-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pysequoia-0.1.34-cp313-cp313t-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pysequoia-0.1.34-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.34-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pysequoia-0.1.34-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.34-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.34-cp313-cp313-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.34-cp313-cp313-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pysequoia-0.1.34-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pysequoia-0.1.34-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.34-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.34-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.34-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.34-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.34-cp312-cp312-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pysequoia-0.1.34-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pysequoia-0.1.34-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.34-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.34-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.34-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.34-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

pysequoia-0.1.34-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.34-cp311-cp311-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pysequoia-0.1.34-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pysequoia-0.1.34-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.34-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.34-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.34-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.34-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

pysequoia-0.1.34-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.34-cp310-cp310-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pysequoia-0.1.34-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pysequoia-0.1.34-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.34-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.34-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.34-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.34-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.34-cp39-cp39-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pysequoia-0.1.34-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pysequoia-0.1.34-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.34-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pysequoia-0.1.34-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.34-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.34-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (3.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pysequoia-0.1.34-cp38-cp38-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pysequoia-0.1.34-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.34-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

pysequoia-0.1.34-cp37-cp37m-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

pysequoia-0.1.34-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.34-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

pysequoia-0.1.34-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.34-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.34.tar.gz.

File metadata

  • Download URL: pysequoia-0.1.34.tar.gz
  • Upload date:
  • Size: 291.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34.tar.gz
Algorithm Hash digest
SHA256 a5427e7cc695d4d95ca4ecdc06a09d79809efd761dd58f5777029ad6105b53c9
MD5 eb406d45787b284088a8732fdfdfbe64
BLAKE2b-256 861f9507ca1fae21a65a1a998fa2f4f942d33fec55f1dd7240050ffbc7732f63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50ebe01fe683086acb28e725765749903a4cbf0616f1be3fc6352c411d4f2b43
MD5 8da7bec4d73b70d3d335103280557dfe
BLAKE2b-256 0b970981a819893e3a5695a1c4dcc0de06fa67548d91950063ea8ceb862a3f40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7345da1071c7003ddede5f8fb7796ab97e0a8ce95e1d28d71b04fbeee08c8c78
MD5 982c1d026a4ae3016b48b5db2e6d6854
BLAKE2b-256 35cfd956096b4162d8acf0c12f87ca18ac3a6206cd1e7ee09a56e9d399ffc76a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ecebfe9e00ee5894bf6c89fad87ba576f91ab3c988b102a261ec01fa6b3b54f2
MD5 16cee49b130299f318395d1b9737fddd
BLAKE2b-256 d5192bab9fc705d71bb867667a210f9cef635d3f4c29bab2d7cc1a930e14243c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a08477c346743e276e8c8da95aee4860b54161ed71b72dd269e13ccfa5f1d452
MD5 e7defca68e372b756371126027c1b04d
BLAKE2b-256 7f21dff970f39014e3f1ed7998072a049b7341c023f1a08104294ee5c277435c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a6b2bb111ff4ddf899b5c4ed3ef3c828aeab86901f9bb8107bd4baced35d64c
MD5 d438b0cdff5a3b323c3f28b96945555e
BLAKE2b-256 c0baaa188b6d3fe78ffa8a953957225f0067c7064bc3a4b41bc25e5943c23d00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2677de30656ee3647e86e87276de772a2bfee3e509394b8925bf780d7bf91628
MD5 67f0b47865523666cd209ea162e4f779
BLAKE2b-256 0f7a32c79b75bb811d6eb4c8225d108129725b190ba868ff50dd7527c6ed0713

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e047b757dc718331cd57299b6d641b14184b31247fade74bca6cb2432625c529
MD5 88ced78ed177e43704093cf740a97dc2
BLAKE2b-256 f63491af5fb6ac115a9422330e2697889b08dcd0dac589aa6226b8ec4e41d551

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3def981ab428565925c37d7a6f9f1776fe829a5b31ca74fa34856b574d31d40
MD5 3cde9d5f37b1bb045836b3747c0f4745
BLAKE2b-256 4f27b026893847d90fc5ab5e4eb8518d10abb146e4477ff5df0105658060ae1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfdb1e544fad9c7b5d3e4dcccddb27c6a5f1e27c97de00d7d857780ef80447f4
MD5 a5c8b9b9dd5b30f33c55bf729dc307b3
BLAKE2b-256 2fe09ccd6b17ba5be09bca02c8b9b61f8d4408603f0390b185433102d375bfce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f026c32db681755354f05388614d3884bb1c633af91261d5ad535d380b53c824
MD5 e231da50759b8b7a0497fb72a78d8cce
BLAKE2b-256 0fcb2ad040dd292a4434af685ca2c3d781a333ad197b89ea4913683e7318d4c7

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.34-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pysequoia-0.1.34-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70c3d64229653883edf02f59aab51bafceea2960728d2df48763360db2d7f413
MD5 4c914ebda01306154628eaa7752a34af
BLAKE2b-256 f18fda6525b749dd2f81037de617f3f2ad067a1860f17f05e53c8f8d5cf8c9c4

See more details on using hashes here.

File details

Details for the file pysequoia-0.1.34-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pysequoia-0.1.34-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.15, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c748b5aba3adb781c35a3430c91c2b4147e5c3f1d182f9a8a1c332d17b3d99f7
MD5 a2ac7f56428210ac5356106090e8736c
BLAKE2b-256 0fff36350112c47c6562a7544795bff023a9f69c4ed74aace2dd4bdd08f5eb0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11038397b5e3a8da25b9d5e7c0fb1c24e905f36f822e49776ae45ecac327cbae
MD5 33ce9bc0cdbc479340366e908f208dbf
BLAKE2b-256 13f7ec496e9b03d2144ee9a0158c291644d8d370d34c96bea2d9ad323d40b097

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21f0fd51da08e8c116007183b9918804a149a88f685455be30050d2311386373
MD5 01d0c27a7205ceedb88fbdd3873a6254
BLAKE2b-256 aedb5ec403fcc0529a9e26933540ffbd1342b56ef5ea26a04cae4a4fc4450770

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7bb3b5484308758c9b6285e7167c3f88d13a464c241a724ae304ba223ac549e
MD5 d40be7027289465898a7c1341e875bbf
BLAKE2b-256 e2e2446102e832e01433df5da76f2598a98c4093e1166181057cac5fb5b176d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9982d70b5242c1e3a3efe79ae1047ad71c3e80ff5c36266915a6dd8502a924c0
MD5 071ef1be7b3516dcad259bb644c7a78e
BLAKE2b-256 b441bb8acf1fff09dd58dcca61c796ae4cf9368f90da5bba86c3a56be3407fbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecd93298f1cc750932b4f4aa476dfe34ea7c55c787518d086f86badb01ee3064
MD5 454891d67c34e46c983918b72dd0e34d
BLAKE2b-256 5be045ca0d4b006b461f1160e01a4a2424a8ca56b5531d5b8094e3874310e63e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f460f658de1460336e8c1322ec7647d1aba7686ec2d5c8d503fd77b507f9abcb
MD5 3d8b4b26187e6982d8015a8e8fdc603d
BLAKE2b-256 83caecdaecc91d88d06b5a13235e52bce9c43ce33439243844edc43645566be9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de542bba94ec4a8555c530c133186ae1a408098135b44b1e70b2ab20b4b1838b
MD5 1db50a9c681e564254fa1bb2d087d6d1
BLAKE2b-256 b35b5b1722a1f92795c9b43b340e52685e4a3a1c4fd942af23a399a801f2397a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77955009a28721c3c6a397d96dfc0c51ebd22361242214a5126442d0ea7340f1
MD5 5b99313f94599bab7efa1d24535adf22
BLAKE2b-256 abc55f7912da66a829e5519370c861cf3b1fd4d816dcdaad4e3b3fc8a2b70e44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 34bfd901a3cf1f29d82724407b82b5a8f1624d67d0679fe18f6e593361209b78
MD5 b93ea918a61a88cd5ab23036fb7868f8
BLAKE2b-256 5c80865d77eb2db16fb64f81bd90e3e4b87f080c4863712df956854e4a3846fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7329a9ec4382044e0e6e741ea0193745a48cbda8b1bfb7eab40bfc343de80fdd
MD5 5e327478a3fb433e4facd804db63997d
BLAKE2b-256 0032b7f3ff1fbf7a0e183f28715bcca8131363a48a964adf6b09b217ee27ff86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5ce6167e114fe5d666451cdb6fdd09282bc4facd58166822d937af160303a24
MD5 a1358bd1ba20749c31072ac1b2f91aca
BLAKE2b-256 b671bc66180a1832a04a3b8e8216493f7145b93801f2222957754e5cc41f352a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de9e92449ee01a227c5a124a5255d98fced88f656bfb260a95e943117560c90b
MD5 d21721abf6826ec5bfe1b5afca872d0d
BLAKE2b-256 f8928f7fa55405cb92ec74e7086ed45a137748ae64b1d394d311a651184dcceb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98a5ac4a8cb094b34edfee00d2dc6eefaad00cf0b33b296460f7168391d39176
MD5 e78dfcd424ed41df9f7541cbcb681191
BLAKE2b-256 9ec1e292eec97fa1d953810d8d5618182d808d89cb9960eb2b04c4636f997160

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c73fb061c4e50e67b3174aa7489c36fa683b0ef35d640731e3bd238fc65dd5c
MD5 331b1c588f9b31c0f2733ee236438531
BLAKE2b-256 1df3928d1ded8ec4eddfa92493719b99c48b1bda8d65bfbe5491f1689a94222d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9409922f31be815eac1eb5714837be068517b3facd2b1bd7dbc5ebec4ec9b0ab
MD5 cf1a8e77aa8f10f047b5df98c897359e
BLAKE2b-256 7d99830ffc76f95f72164150e4edefad6f2efeab0ca6697bd462d35bd570d051

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cde6a82a46f69287bd4b64a7b47aea6b77aaa924191e50fb0e370850b7c00fc2
MD5 9d5bcd0fe3fe25e1a2997ecbaf6adef1
BLAKE2b-256 cbe8727738f71d7f882a4a5c4cabb0e86c9cb172edfe0495426be1286a4bbdcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8439262fc6dd6eda743ca36db132e803fc48f384edc1950af57b5f20f5d3d7ed
MD5 8769eac0744f46c71c0592e5d6b0a5b1
BLAKE2b-256 faa13b9ed4f1e59970a6365183b7cbd50d72a99f09875c95f387c07c367f08b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f9e17c4cc17a4ff3cacf6b06b72ff2445c9d7c079b0f419d097a106b6c4e6b5
MD5 e89bece0414ca5605c32be5061c4d8aa
BLAKE2b-256 ff77e4817820d5af56b94a48f4b22337039c892c93a7785b5f1a873ce2ece407

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa163d5227964ae87b4cdb406bd3d8c0ee17fa6ac2df661e7c87e597d9c151e1
MD5 830107696fb13b86eb075cd4e55017e7
BLAKE2b-256 ab82ecb411a2244dacd354ccfa67e8085ee96f8ecc91424443aca09eb0a14946

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6f70cbaa6f3e8623159691869ef694ad02d5684b5d44e540679e1a69fd1e3508
MD5 56fce00a980a0f34da886a6239b674be
BLAKE2b-256 d1ae837a6b700eaa06773fe8d352334089b87794c3a4b56984b9029cdceb3292

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce7ca5c96cd98b1842c2156201e87eec8d8c03989577bc1fcb34d415b0f9df5c
MD5 7f1dfb0eea2fa73a9636d6e43820dc8c
BLAKE2b-256 57e6c4da239d442899153577a956fbb3440644ba9e14ed4dab618bb338673b69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a0c7f1935e1edaea4aace0f6c194c7dd16add6fb852fee688a90ed0b416396a
MD5 4bd1591b3b9118aa891cec2e2f0409cb
BLAKE2b-256 320a2809e36b2e698b1905515a0a05bf77f3903af20d8fd20e9fe3ee2500a7da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b936a98ae7d06bc0621ff8b9a98049ab00b508c82ad050c89823827fd4574f04
MD5 dfddf4d3684219919dbe5ad88b2caec4
BLAKE2b-256 3fe08fecc901c38d2a8803ade102aee8d7a8e3c1d3e872490a54cace2ac11a4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 01cea7a9e1db7565588be969386d2563f8907d030bfbee34f99db1ec5b3b7fcf
MD5 d6f71249b888ce71cc9193b4fd3411d5
BLAKE2b-256 26a806adaf89185b5a14e7dfb92a42b1a2c077b163a0f2cfdc56bdc64a70f72b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d8b8f7970e99fac611e94829a44c7f28b8f0c78d2f49b45ba6b9c3ee77bbc726
MD5 1e23caef648a7a3de405c2e29efbede6
BLAKE2b-256 38b33c016e93b03ec0ec68591558abc2f843a8e1ec94a53d89b7465914fef9f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 626a4aec16bbb8b5d12f15d6c7082ad7bb25ddaf97d0d7efe9d3ab7351655515
MD5 69fe95423ea1d1cb6d7af153c5bcd0f6
BLAKE2b-256 6fbef9ed481a3fdc5e04f8a9c7789b9f9248c3d36dafd98164948e84f3e917bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa86c81cbc2bb8ffc80b7cb7f252ac8f595129f75a037565f4a56e169ba086b7
MD5 ba97485b421599abc73fac88a71ee59c
BLAKE2b-256 be81699ec74fe8b2729c946b6bf75ace5329cc5a184f5eaf6d91dc8f19aa7efa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a187a6f814c6e0bdc00ad1843916795daa535fce0945671e55ecbea2748c77c
MD5 2d072dbb196b5c63114b89683ad9fade
BLAKE2b-256 b1cbc30f4dc97a070ae981c96ad158d6ca74d06734defc5c2017a4d548acf81b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c6185569d4bcc48198e99f4dccc20bd64ce5ef7d0e411d47d9aa2f2d00bf2b8
MD5 fa480eac7950a4e13dfdaa8bcf923ba4
BLAKE2b-256 475d0c6d5f73845d5d101fe0e13e2dbf16ac1591b410e24888be39714862190a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0120f57fb0e8f0e1d25d1205eb13bca584207aa37d34a4c04df6886ff0c6d2c
MD5 5bc4dbaf07c11432b015a22781acd7ac
BLAKE2b-256 be7259cb46e61636159ebe8cc4f71f0776db09a060aaef2a98a27e478d5745ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7d616087bbbe914117c2c6e852d6577bed4ebae131f9f69bff67a6b478b1bdbf
MD5 190315dd0d1f0cb730b97b3f29d48e96
BLAKE2b-256 c9464e9a96bff5c6b32deb2cfe2d0edd015b770c6a66b5d6d3a5463d10a6e799

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 be8a3492ab9cd26f47ce5ced449fc81185d9c2d46ed1e94e0eaa4507b8b6dab1
MD5 a3e14c8aeb79320a647b21a9af967a6f
BLAKE2b-256 43f8d31f83e86513c7ace7cbb5f98e662eea4d0831f2e3269667e2afbad6ee23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e8f9a2d18131302489fa3eb1395d1641f8fa2c48101b34594757d6cff5392623
MD5 aab67d32a986871e540a42f618720d33
BLAKE2b-256 cf338e5010a438204cd4aec9d9060651d79ae46892cd93209abc45b1a98b8b7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 798b317643846113816a78c4726b2c612737274cbc72d67690fe8c31deee40dd
MD5 a5e8cd4ab9e6aec357fe40d2a8ba3e52
BLAKE2b-256 a6c733527c3e39983015ff865176f39194f3ab68e759f983864d3a15f79bb151

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7cd44a5d2b5b1ccfb6e84e91aecc8796eed70263eb3afdbdc5d685f686aa0162
MD5 6a75355acf03ff97ba89ef12146486ef
BLAKE2b-256 8c199d240ee11ea324b7124cdf40a631797b2ac1cb3f15af83a99e9105184950

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6560769f675bf9a123cbae4b226208e546a3c5035ea3e00a6eee961bc39021f6
MD5 095706ffc8af3ef0be1c5a701961bd04
BLAKE2b-256 9a2bccc6a5b55b68728ea2fec60bc74ba9c67951e57779570b02a62681f84aa7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66168c661ebed7e7725fbb10f20eb681fc3cb372ecdc99b923b6d97aa13bbc70
MD5 a78379187692296d4103aae26e0dd8af
BLAKE2b-256 31df48cb4b2a84ac8ff8fe52f11a69bd2c24094a33a1d7c9503be50772f2855d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b9929d7e9219ffeaa9e97c6e2bc52d965e1897f3248b8ff00175776c008598e
MD5 b5cb2003ef451efffcd61d478e4b5aed
BLAKE2b-256 b87f21fa4cd706b77928f95afab85da773905ffa0813926b67b6ab1a1a2a4726

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecd60d832efc2cc2e5ab928f733673af0d88b4a40c22fcc8a066ab46743d3b77
MD5 3ffad4d3d34a8aac7df851d3e20055a9
BLAKE2b-256 00fc9b0a46bfd97da489286aa307e82c06904700bb020333145947c9d6e7fe75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2a51f4c730b69837b3f8e1792893e2c39fcbdc91745591f25a2acda336cd189
MD5 9e8bea89c07d7d2f7cbe78cd6ce0c6cd
BLAKE2b-256 b274c5446de590e22c2e77204599d0c23e639c9c39d4c2f2a6a294ddb7345638

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d4271d714a1d56ae223ae2549fcdb4e17b40faf0512f6f1843191e3e4726019
MD5 9a740079fc5b6e6166e30ef93dd83266
BLAKE2b-256 442264a9331ccb78885f607d187f2a92d0bbc4e7389c2cd8e93a26238bb68ac2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf28e95b7f2003b6958d498ea493da6bb43919e0d7c8f1dcb8094e479a88f8fa
MD5 e6b711acb2df37ae088737e7e5d75b51
BLAKE2b-256 bce723ab8e9b473a51b2d1b71b918e6947dcdecd3824bdc06526ebe4f8f41aea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12cfd97620b0f73d7b3ec8fe55980bbb05a25a1ee22846fbff6a8d91eed3440e
MD5 755073b4cfb27b17d5b2034507e976ec
BLAKE2b-256 f29858ae9fe351ee78390cf13ec43670db097707c667dc35dff85cd145d9d812

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4dc5a0762d8a89930fef844982a0cd45e2d5d955ee3706587d101e8ce47908dc
MD5 9fc52887a8b488568f75024fd29f4398
BLAKE2b-256 79c4df1b35feaad8a35b6b4c5470e821dca6f766d76fa8ecce3eef2d626a7b1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e29d9bfbb362a4b9abb8872c9fcaccfaa77ca6d537e3f2d444dde1bb0e88725e
MD5 1a75b41bbdaf2311a0bea153ca7629ce
BLAKE2b-256 ad54cfcfe1d7a8b00bfd1e20028fa6cf504ce5dce3acc722e8ffb077c74bf530

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0e6e9629fb1a5170f7a2914aa4cd04bef6c7e6b46122d1540ed70df63e2db266
MD5 315c0f1bf771e9285d20f00ddf3b5033
BLAKE2b-256 3bf062470a2e3ee10d8257150a3447ce6ba2e7f70cecd1dfff7f2d96b7bb7ed5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 12c812fbe08c1dc58261ffe2bd9712026775cf1f791e0c171e028c16c092c615
MD5 469086ab020823f4ec0a86b1d9592918
BLAKE2b-256 1c73d079e39eb5b78ddef603643772de33490f2b2ed3b109d55bf92ccf0b12eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26d3e896f09de78f56f557ce204ff93d15998d84a573f38bb8c0ab32ff1e56d2
MD5 37ef29cebfdbf9d9a879ddfba4a93d5d
BLAKE2b-256 44dda789eea6e7b478eda64e619dcaf5f12c209b453fac33e706744982e806ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b07036fe69acad2c4afed4cedffc2a35b164ddaf4ba28f28e6685dd880c9c533
MD5 7223448a1ba740a0a0ffa030c6c8977e
BLAKE2b-256 4f166950989707dcaca1c8ad9d4a0f0b5b7b99611c9bf6814cca369e5c22dd41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f668be3d04a439bc894d3968e4fa45466890f83265222cb33d45448f345ccbc0
MD5 5e583d7ce4aa5f4a84e09602d4afa728
BLAKE2b-256 c10a9e1628cd8fef69ac7aea96e068fdbd994c14cece3c90641f15980cd235eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8790529cb0932114a61f2a23102178039e663a259931f2e3b47c302b8c1495fe
MD5 9f84db41d8fdac0838f44518ff3705f8
BLAKE2b-256 6e31b20c1cad610ab457323676aebad7f0917aa05b61cdee84e67d5ecedc28fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53fbf47e678d4b792fe9047ffc34477dd42ca0f16bd60924c341eed28092fff0
MD5 be29a7c1331c7f9d9dd190f94aaaa4c9
BLAKE2b-256 285cda40a232f2c4f17fb51bd5577b3423ed70dbfa4fa581e74260c9aa1422a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 384332325cf1505140acef5151264114897dd88be1b890cd68fcaaa4e846a2e3
MD5 12f3a3ce232b04f9aa6a67ef3aa109aa
BLAKE2b-256 b76353b0375bf0e67979da06f13d6adc9791e7818505a9fc03d5cfaa4bc065d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91fcb2240293aa91f4f5d9f8ab8e2060205f5cfb9030ad99244e27088c4e8e57
MD5 e677d56d4cafe125c38c5f939adddea7
BLAKE2b-256 67a989653e84cb0d22bf9388f7e78d46daec83163a112dc51602ab26433a1f98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d8f9ab2481e6b8e6b9daea6ce3ea3cd2337a89a5206359e82a1161946a66eb9
MD5 def234d623b3045cd1f024b906d2b8e0
BLAKE2b-256 c0ededd4adb95a2d1a8b10677653f605053d345ddefe74a1d51c7e8be11cb9ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de0a808ad0db07aae3b73f73e5470d8276dd79d16e96f3116102d6c5dc21bab5
MD5 531d352fb06629bb5329aa3c8f3c27d5
BLAKE2b-256 40d48e9126251dabce6d8b0580e2b542dd0a4b67dcdfdc50049c6f0f75bd08a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 86ddb6d541308e8bf737ecd5722277b659e49a33a818006c51e5013cdb988364
MD5 c31cffa081ad2b86b150c799b0b0d0e5
BLAKE2b-256 bd0a836ed11127657580a41ebfe946d2b8ef530f06744f0f28019b08d484f0f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 053f2218f1e43b82de7546261235983718e8012a3d08ad4484c22ee3dcac5517
MD5 bad54a86215bba238b886769dfad371d
BLAKE2b-256 fca711996dc98b8bede4f3a8fb4337b44117e67a6a5b21e36b16694db2882150

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4671c2187451a1dcaf7da4dd73812acb8041f318c821994961f2144ae3fc2759
MD5 90f823548d98b8c0e0c14c2e995a283d
BLAKE2b-256 3535d495105e6ea59ea2823655a60dbdc628379d033da2cc7a93f067b6dfbb98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3d033626b48a0a1b0c253bbb31268557160b5db3bf92091cef846aa02ef9639a
MD5 af9ac7f89a2590c82bda0faf3e73af75
BLAKE2b-256 6b1f432c4cf263f97b6544fdca6dc6629e32133f76fa3b6dbc7c9fafe57c09ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f332126d98bd3ac93155eefc1f24f3dbcd4a6c650f929c8e409051a75e77db2
MD5 34cff2ebefdafe7673aa62a7bba6b755
BLAKE2b-256 263824c0839be02c0ce34481f0815e1a99d33fb7de439fbc1143fcf502f38884

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99121fdb0a8fee47ab0de728115057b364e8f47ab923949ee74a5eb7da74c234
MD5 9e851747d496f1d4b91296ac69c52465
BLAKE2b-256 51582a554943015466f9c21468e915833abe6a6539201a9900ae0b69b85df114

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 678b73b0f8a1415ee93a1d1b8d016758c3126046378a4b4be8b74367444a5d80
MD5 9ad6c1290da593e1b73d6b843f947f3b
BLAKE2b-256 ff332db1f2e6cb099e988dc793cdca9670a369b08dd469518acf1016f05adc6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 723cbea00fdd16784959b2af40d961f4d6708deebd397b636d5a45610bec1ee8
MD5 6bf193ae0833de90e94d22f80288a5ab
BLAKE2b-256 dde18560cc993f88f717cb0ed1cff69218e9129f82d221e92742c61538418738

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fa3b8738bb64c37e98dd24ffb59ba3648abc3af7abafafb262885cf4b9c261c
MD5 f107bda4ce0515b3cc622ffcfe28cb83
BLAKE2b-256 a261b5f6f41e471073c26097917b1b5c8e0f10352b4ceeb211ce50fca6cf5491

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37600fc12de8d492b4fc0c54267fb68c5a190d5e84fed76e7b383d9767d8361f
MD5 fc7747b3a8870392e95556d2dd1671f5
BLAKE2b-256 271697c0846b516fd0bac8b8a4c55be225c409818a5966b4c4ab5afd316f9276

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 402fd8f3a24815039ea4e45eda838bf14d6f50d3d6f1f8a2679ca43181dcae69
MD5 fe5954dd8afd455e8b5aef6c3f6ebfaa
BLAKE2b-256 ebcc5425a18998c0400dece976c0e323885d3d3a46b3c54aa9a6b6adb40f4309

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 436cdd0c9c498e2c44bd792badb76cad80c0e3094f6be85a8f0879089b34117f
MD5 bfb93ae9e3e3917cf47d9bd228fbc1e8
BLAKE2b-256 b439e51657254290a9f29916b079242f8e0afb10dca9681656bba3da680f940a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28e3f936cf57d6cc5ec192986ce905170ef3598e83c2b425dc7f73bfc9509f13
MD5 a1c4a569b9ac8e598ec9315cb65c5a3e
BLAKE2b-256 0d2c3b82d8bfe92c179050b5461e2cf9df58e2f4eebb21340dffaeabff58a9e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7434c74d3f0b3f77f86bc3d307bc286c825d242424c71e8c32577a155d909363
MD5 3d4d009d4f914b2db66f526e43d84c0b
BLAKE2b-256 d4f70854de7b783e122a8f35f1b12a05179e1dfd90a58040e886efa40cda458f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdd0b4c34ed6113906b6c0dfa72a982e5a45f67b5b53a81baa3e116d3d726d1a
MD5 dc41a60e769f3b263973982ccd5872b5
BLAKE2b-256 d0f67ca37c407492c987843e09c1b6fbc4385c45ea0cf5b09f2e555f66b8f4ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 63d8c9118c1661305a56d19fc21dde63d4e21eba4454c65e26367bcd195443df
MD5 79b8f287f8c65bd31cc9fef95d951f73
BLAKE2b-256 8b5ec4a9ef807e269bfe8fe493f11fe7a7895d93b213b27eb61d799a0dc93274

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 957a3b949e4cb48038475e5c68f8ec9f169f42b68f939548bd112f3c68498843
MD5 5b7853e6c96b5d04f72248e3282e190b
BLAKE2b-256 6d6ce58daa28a3abbe6da660b5eacf1cd9c3424edddb7302e9ef66c7031ccd10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dce47389359677b7b13e7e1602c4832e9c2996b509a7b202471c42314667f5ab
MD5 8318a92216ae20d47a1a47e1757df98a
BLAKE2b-256 d16d3b0e66af9855e634704139ccd5cad6e34388ed060e641fec17f5c51475f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 47280b94253a2eebe96750160afc655acd73f4986c47fa738e9d1219466c1676
MD5 b60c52bad17e7b5f583aeaa71ab73946
BLAKE2b-256 23bde4b0b2a098e12d7eb3ca868709123735c6a8b09880c7d695698e63b6e187

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a4fb2fca581884a4ac511305a954684c4e468e02ce5e49f7c80bde5ac4eb023
MD5 b84ade775daf0bca12d2f0deb1dc4b88
BLAKE2b-256 860b5f47aece75a0a3ca7f29d077589c01306a84b43040e4d04d75802a9d449e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26b52c5fbad5b74e0c3f15e5ccc8bb555627671f72fcedba32ed0384b76c2ed9
MD5 2d87512c0e1faf2e83fa5a8ddc3c69fb
BLAKE2b-256 585c9baf6c06e8d4671c188d1d8a94d63c857d30d8c4a0a9ba46ec82dd9cdd32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0b17562f8fedb8d959519a11bfd80e2b94f9494d3c188e81177a6b275567571
MD5 29ff507bd332d6e20b5f79474a13c950
BLAKE2b-256 a49c4a58163e5224d72f87f5a9c0e3247f621a4d7e2902c77eb3cedb191975b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ac7e3dce397ea6ba90c165e98922f9d9ee6e76515443145f241c721b68cb733
MD5 b36a78ba6c13996d257a87f2a1a46e98
BLAKE2b-256 265a74b28ec2d92f2dbdd45e484c93c5cb222062777e8c38dc99d106baf0daff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ce06557a1e3ea28dd4eec673147fa058acf1d92e3cbde62d0a4d0131fa41b84
MD5 3591de1f82456b27b2ad9365fce801c2
BLAKE2b-256 10b139d8b0bcb9632a9de759949f485065053f56dcd6131776ad11833bd8e09e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e091c63f534c9c18704c425a5fa206952eaa8356fc2a86e295e2fe9649776770
MD5 23a8d47844c69d07b7ac6e5a3e508aa0
BLAKE2b-256 dbc75d4e8d56c38613c5e44ef6f86adc07aa7f28b9298f3b7b521fb7600e03eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b697f6eca5dcf974c29a2507fbd2e054c3dd4dcbe164824aba0f46ebd662b942
MD5 c8e359a27d9653f2770cd2dfd533299f
BLAKE2b-256 9416986edd1912f04f44fa0291c5a292b8f52904b092300bcb818051fe1e8502

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c035da00c7285effd280dd392cf4602b00214bb71260c1ad2586bfb385b950f9
MD5 487c393e432fa18213d8376ea6b05d54
BLAKE2b-256 2d5a65cbc9000c5946da9c5b790d971d278d33e7cdf89c6a37d90bf1e6c0241b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5c4b5ba3cb1d57e3b95eae6f92d54cbae98f99c3072c0b4637d69ef00817349
MD5 5c0f8c33316be4c46eb1cb2d90576ca0
BLAKE2b-256 8f50c0091895261e35cd2d169eab79b22f53873cb9c50240a3177ce9e4f3dfd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42451137ecf74f98013779cc6e907fd4b5c3d29e2182b199cda133136c72822e
MD5 7c2f80139de6bb792cff966e3366503a
BLAKE2b-256 26d64b46823f6de1529a7ff22a12d4be96bfe25587a8ffc28c020e2720166066

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef8377a4edb7977f2e97cf7bbbb12bf2e938528d4a9c7207f57953872e9bd61a
MD5 6b286313bae0604384e0bd3f1bb690ab
BLAKE2b-256 f28b98a1493a2bad23cacad52695a8ca80e001750e94ea8c8fe6b215a239ac02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 559500609faf259ae421113e589b324ee365163ae18287675375b7b1bb6a0854
MD5 0d0e72605fdadda85802f119c7a13ee4
BLAKE2b-256 8a7d2bcc7835bd09945183f56bf3c8089a3f25276182b7cb0cd232252d71ab42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eff9b66b540a0713663533a38f7a529d30cf05cdbad080543863c71dd8b95ecc
MD5 5b788130ebcacc545f92c74938efe563
BLAKE2b-256 89dd5330aa1d911eca1cd2f81186f8dcc9456269a66af771287b87fc192b9b22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 accb27ba8b7c5b81fccb56d69060d60c9453e9f957c0e8b9da8defc70f400dff
MD5 0feb7904fbb8b6cd012ffa182eff5572
BLAKE2b-256 357c9d125653ad460b151772a0df579c9db2c6db599ef65b471ada60544ecbe3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8ac5978752d01d145d88792c9bcfe6c9e16d46a63cc328938dc9c619cf86522
MD5 6e0b161cbc3cb4eb99529fd03c2e1955
BLAKE2b-256 41f41995cae3619da7a8ff42ec570b1c8e909ffee91630e61b78fdb2a713df00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b08120c27cc2e684ef14d025aa4179e69039fd717de413b4edd4138b7801b11a
MD5 d1e2883e4a13d848307f2c8f97bb9ebf
BLAKE2b-256 7f8e564434a42b96f4865df3cab51eaec3e35f841b2cd6c6acb37089a043e717

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b927cb7f591dcf47f681e3cacaa679fcaedcf5f279bbd9c2fd4d50ba9dae8eb
MD5 3d775fde81b6ba1d645b51ab40ddd7ff
BLAKE2b-256 51e8e63cf25059618fd9d7f89aae39cc59a3adde5566ffd88183525d3d217ccc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 118c7d1b6b7be35c936b089089dd5fb81cdd4e4ff6bd650f31ca1281c5141867
MD5 92d7a3ee978245d6ccff9ec31a7600bb
BLAKE2b-256 c54c1ae6d64d699c7baa7e5a2ee17f3b6586c7c4de584dbb2a60058a10318c09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85c60dcfe13bf7c3de41c0815e558e7970fd1d5414fa96b83df85d99ac4a85aa
MD5 35700826927085cef28d97d25d6efb66
BLAKE2b-256 f3e32dc2b7abebcdfae2ea7ba1a60b42264b050b5d9ef9e0d66c2cd2e68d3e69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c1edfbcc692a05f2c228d5c3b95f5e0931afad3213582fd844281720ef7b8f8
MD5 69c93c437c7875bb83651e24e6a01f5d
BLAKE2b-256 d583e66cef300628e6a3100f45369007c21b5a2d9f89e8280d20b203414170f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5955b412a4621756838ccb6c4c01602bbc3eac2664083d92cfaf6a06d2a2b2e0
MD5 2857ca39aebfb2e55669f4ff88c75a8a
BLAKE2b-256 ffb577cb360d9fdcd10fe7ea53b15d6f75c9a6e52866fbda3b8f43cc1c8acaa3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp38-cp38-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a94e2b5e3b6f896dad94cbcb0add081db68c5073a3064520d2401abb3c3d839
MD5 03d0a74515bd27b86c23489b2e64aebb
BLAKE2b-256 3fe63a023c0b59b59e705044c96f5a93c07f392e96ad4b7a492f3246210e2f1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c11c589b46f61e5fa08aa561babe068a38a6205e438b7b35ef82397e55d187a
MD5 2281b5565ca03e5ec3cf6facb20cf296
BLAKE2b-256 8fc1e518a0325871723d354b8a70faba84d50b01f62d890d4c8d2efa3eaff6b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24853949f41e05f3c2d9c79fe1a11a5bd77c19479e03cf965711a422268a7193
MD5 af5f0d850d45bcf4394e45c340875740
BLAKE2b-256 633d4e6dfc31dbe6f476d75e99e51ee8452cb482ba360ed9259dbc45911a1f0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a54a64135fc4ce721c5cc5307051fcfce0da7da93dd90896bc06eef5d160141
MD5 6ab11902fdeb44a87bd5d6aadf981a26
BLAKE2b-256 fbf8c919a220bb19ab0e7be7041bb4b47bd0bf009e4aed811441cb14dca632aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8aeb2117a74630946018e7710fc7b1884330ad5cd0ee3daec52e030b3fbce56e
MD5 834ef7b69611c63c55801ad67dd70355
BLAKE2b-256 22d4a24abbac9f106c003c52e0705a8b145405d31d898c34512a367f8f7b0c66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 194ee0febb290f29c5b90009b66376575814c64e6cd9bdcfef13716338d555f5
MD5 f344df129ed9b08764b59d99a85c9b36
BLAKE2b-256 999db6a487b8efaed9f88a334f9654eb8339de47245e38d84f1f0bf043181470

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db67e3d93e75f6f96cafe6004df95295cd5f9090d0c337cb697443e982f29cba
MD5 6b651d6a8e9531cce7115b1701d02cda
BLAKE2b-256 30c564ca8e52b9bc54dd15490d07f8da4902db060c8c2b540a6428bd49dd77f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f101f48d8fea6768bf985965fdd8ca78a3a7d508f292360b5b2498dc7510486d
MD5 2ba635f5cbd28d9b37ce26b0ac136221
BLAKE2b-256 5e4107ca9bd425e8c23c67f2854cc82eeffe7dd11631999113630580881fc34e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp37-cp37m-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.7m, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06005af6cfa21805050a73794ab9bdc6d78a27aa49cd897d9702b27350bb0e99
MD5 c10be4313b237394dca364f76c558673
BLAKE2b-256 b2f72c6e3e67d78ee19d146bbcd26828365b0190e8cc9be74fa70a28d38df3f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f37d7ce029f2cdde124329319cc1bd5a7878b0af206fd1b48076970344c5dc3
MD5 29d69a1711c2c3fd42cd60b6ff04579b
BLAKE2b-256 8a6a6d07119d668f86dd77de5d5d7bfd5fc644ad83887e5bb066137044821197

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 06e0588a185efdaf15ddb3fea54e9b2cc047e3bcfc74bc0284be086fd3fd6e55
MD5 9e7d7d51f626a6c3ac6332de08309de6
BLAKE2b-256 b115f7f05ba80a03ef25ee11d38b6628d5f247825d9d5c45028bb69abe6988b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bea7ed706c412aed479bc11b8b0b09670d4f4d19fdbebb283a5e933f1000b1c
MD5 3e7143e203b0b63466f7e7c0e2ec1dcb
BLAKE2b-256 81862fdf87d7b75df8cc8fdf4ea50b35ec38ba43a7c81fef5bd7900575d7b8e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysequoia-0.1.34-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.14 {"installer":{"name":"uv","version":"0.11.14","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.34-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f8cd397b52aa751e9fc6e9be8ed0e8454d9ea7d8f62d6d34bd5a16c42750eb1
MD5 48b0c031503117c0e2a1bb6f01fa9737
BLAKE2b-256 29dfe9a0adf37918f5f191330b68e32dcaf155f2aaf38db03f641dea3b5296d2

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