Skip to main content

Query builder to help you construct dynamic SQL queries

Project description

SeaQuery

CI PyPI - Version PyPI - Python Version

SeaQuery is a query builder to help you construct dynamic SQL queries in Python for PostgreSQL, MySQL, and SQLite. This project is a port of the SeaQuery.rs project to Python using PyO3.

Install

You can install the package from PyPI using pip:

pip install sea-query

Or if you are using uv:

uv add sea-query

Usage

Here are some examples of how to use SeaQuery to build SQL queries:

SELECT Query

from sea_query import Query, Expr, DBEngine

query = (
    Query.select()
    .all()
    .from_table("table")
    .and_where(Expr.column("column1").ne(1))
    .and_where(Expr.column("column2").gt(2))
)
assert query.to_string(DBEngine.Postgres) == (
    'SELECT * FROM "table" WHERE "column1" <> 1 AND "column2" > 2'
)
# Or if you want to use parameter bindings
assert query.build(DBEngine.Postgres) == (
    'SELECT * FROM "table" WHERE "column1" <> $1 AND "column2" > $2',
    [1, 2]
)

INSERT Query

from sea_query import Query, Expr, DBEngine

query = (
    Query.insert()
    .into("table")
    .columns(["column1", "column2"])
    .values([1, "str1"])
    .values([2, "str2"])
)
assert query.to_string(DBEngine.Postgres) == (
    'INSERT INTO "table" ("column1", "column2") VALUES (1, \'str1\'), (2, \'str2\')'
)
# With parameter bindings
assert query.build(DBEngine.Postgres) == (
    'INSERT INTO "table" ("column1", "column2") VALUES ($1, $2), ($3, $4)',
    [1, "str1", 2, "str2"],
)

UPDATE Query

from sea_query import Query, Expr, DBEngine

query = (
    Query.update()
    .table("table")
    .value("column", 1)
    .cond_where(
        Condition.any()
        .add(Expr.column("column2").eq("value"))
        .add(Expr.column("column3").eq(3))
    )
)
assert query.to_string(DBEngine.Postgres) == (
    'UPDATE "table" SET "column" = 1 WHERE "column2" = \'value\' OR "column3" = 3'
)

DELETE Query

from sea_query import Query, Expr, DBEngine

query = (
    Query.delete()
    .from_table("table")
    .and_where(Expr.column("column1").eq(1))
)
assert query.to_string(DBEngine.Postgres) == (
    'DELETE FROM "table" WHERE "column1" = 1'
)

Table Create

from sea_query import Table, Column, DBEngine

statement = (
    Table.create()
    .name("users")
    .column(Column("id").big_integer().primary_key().auto_increment())
    .column(
        Column("name").string().string_len(128).not_null().default(Expr.value(""))
    )
    .column(Column("email").string().string_len(255).null().unique())
)

assert statement.to_string(DBEngine.Postgres) == (
    'CREATE TABLE "users" ( '
        '"id" bigserial PRIMARY KEY, '
        '"name" varchar(128) NOT NULL DEFAULT \'\', '
        '"email" varchar(255) NULL UNIQUE '
    ')'
)

Table Alter

from sea_query import Table, Column, DBEngine

statement = (
    Table.alter()
    .table("users")
    .add_column(
        Column("created_at").timestamp().null()
    )
)

assert statement.to_string(DBEngine.Postgres) == (
    'ALTER TABLE "users" ADD COLUMN "created_at" timestamp NULL'
)

Table Drop

from sea_query import Table, DBEngine

assert (
    Table.drop().table("users").to_string(DBEngine.Postgres)
    == 'DROP TABLE "users"'
)

Create Index

from sea_query import Index, DBEngine

index = (
    Index.create()
    .name("index_name")
    .   table("table")
    .column("col1")
    .column("col2")
)

assert index.to_string(DBEngine.Postgres) == (
    'CREATE INDEX "index_name" ON "table" ("col1", "col2")'
)

Drop Index

from sea_query import Index, DBEngine

index = (
    Index.drop().name("index_name").table("table")
)

assert index.to_string(DBEngine.Postgres) == (
    'DROP INDEX "index_name"'
)

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

sea_query-0.2.4.tar.gz (27.1 kB view details)

Uploaded Source

Built Distributions

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

sea_query-0.2.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

sea_query-0.2.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

sea_query-0.2.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

sea_query-0.2.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (987.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (977.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (984.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sea_query-0.2.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

sea_query-0.2.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

sea_query-0.2.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

sea_query-0.2.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (988.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (978.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (985.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sea_query-0.2.4-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

sea_query-0.2.4-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

sea_query-0.2.4-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

sea_query-0.2.4-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

sea_query-0.2.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

sea_query-0.2.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

sea_query-0.2.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (978.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sea_query-0.2.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (985.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sea_query-0.2.4-cp312-none-win_amd64.whl (793.6 kB view details)

Uploaded CPython 3.12Windows x86-64

sea_query-0.2.4-cp312-none-win32.whl (632.6 kB view details)

Uploaded CPython 3.12Windows x86

sea_query-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sea_query-0.2.4-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

sea_query-0.2.4-cp312-cp312-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

sea_query-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sea_query-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (987.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sea_query-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

sea_query-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

sea_query-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (978.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (984.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sea_query-0.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

sea_query-0.2.4-cp312-cp312-macosx_11_0_arm64.whl (865.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sea_query-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl (865.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sea_query-0.2.4-cp311-none-win_amd64.whl (790.7 kB view details)

Uploaded CPython 3.11Windows x86-64

sea_query-0.2.4-cp311-none-win32.whl (632.6 kB view details)

Uploaded CPython 3.11Windows x86

sea_query-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sea_query-0.2.4-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

sea_query-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

sea_query-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sea_query-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (987.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sea_query-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

sea_query-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

sea_query-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (977.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (982.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sea_query-0.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

sea_query-0.2.4-cp311-cp311-macosx_11_0_arm64.whl (861.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sea_query-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl (864.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sea_query-0.2.4-cp310-none-win_amd64.whl (789.9 kB view details)

Uploaded CPython 3.10Windows x86-64

sea_query-0.2.4-cp310-none-win32.whl (628.2 kB view details)

Uploaded CPython 3.10Windows x86

sea_query-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sea_query-0.2.4-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

sea_query-0.2.4-cp310-cp310-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

sea_query-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sea_query-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (986.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sea_query-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

sea_query-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

sea_query-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (977.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (982.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sea_query-0.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

sea_query-0.2.4-cp310-cp310-macosx_11_0_arm64.whl (859.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sea_query-0.2.4-cp39-none-win_amd64.whl (790.6 kB view details)

Uploaded CPython 3.9Windows x86-64

sea_query-0.2.4-cp39-none-win32.whl (628.4 kB view details)

Uploaded CPython 3.9Windows x86

sea_query-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

sea_query-0.2.4-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

sea_query-0.2.4-cp39-cp39-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

sea_query-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

sea_query-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (987.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sea_query-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

sea_query-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

sea_query-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (977.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (983.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sea_query-0.2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

sea_query-0.2.4-cp39-cp39-macosx_11_0_arm64.whl (859.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sea_query-0.2.4-cp38-none-win_amd64.whl (790.4 kB view details)

Uploaded CPython 3.8Windows x86-64

sea_query-0.2.4-cp38-none-win32.whl (628.6 kB view details)

Uploaded CPython 3.8Windows x86

sea_query-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

sea_query-0.2.4-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

sea_query-0.2.4-cp38-cp38-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

sea_query-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

sea_query-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (987.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sea_query-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

sea_query-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

sea_query-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (977.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (983.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

sea_query-0.2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file sea_query-0.2.4.tar.gz.

File metadata

  • Download URL: sea_query-0.2.4.tar.gz
  • Upload date:
  • Size: 27.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for sea_query-0.2.4.tar.gz
Algorithm Hash digest
SHA256 2c464dc361f99fe10068e750ddc6252e5b4056df62a7034c4dbfd5cd6b8b737b
MD5 59439920f68a79ffbfe0f9a86d642faa
BLAKE2b-256 1e88327e228f1c48af2db491a2f83c80a4046c2f3dbd95d1ecd3609ffc715b0a

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98d2b288c9e8064fd2bf6ee71ef2c62d1e6d9e3a39f92786976e982ae3567718
MD5 afc693c0dbff21f372485b31e6b01479
BLAKE2b-256 a78dc8898041eb856cb4a2607a02da6ee60163e146005d91006888713badc48f

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0637c1bfaea269dea74652dcf1a5c282dc6bce8b6e7c8b7140a5c4c34950ac38
MD5 10fe24199ef4805e99d82f00bba7a945
BLAKE2b-256 522debcca4965434a01773bea9b69cf2532c5e40180c7d98f8dced40737288ac

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e93f8ebc592b93144891c8848c9f6289a952ec136ab137c85a74bd7ae68d355d
MD5 580dbdab42e4d6aa62e0f43677f44801
BLAKE2b-256 ce284d926c930b906b3e05fa0d48f3ad5f22ceacd7db47d1cfc450ae58414ca4

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 859d5ca90f823f094290f21bf8aee26b6e1ca9cc5fe1f989a6c3eb23681f96c5
MD5 190a1f56d6afc2312db95fb08e7e9923
BLAKE2b-256 79f3eb7ce444e42c62ba4d16a0a89d774a86e64d6baf3c49ad4ea4ed6d8984db

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63fde941c8085dba070e73b971459c868b95c18b58af3e4f73c5ee16ecfbd69b
MD5 afc3a848f09e0c10eb1861299c9e89cb
BLAKE2b-256 a684b3e376a361b129b0aeb53569fa3668d2c4a2ce7f12d55a72caca6dc89448

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 445be7f02b05b8c209438bd3a102ae046fc7be03819d3527000b6ffcbd553703
MD5 26f9285775715ff3833bad7a74c452a6
BLAKE2b-256 6d6a17f09c10d5c8783017655430b189e1c5c5dcd1edbb6c0b37bcea4ab51457

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe206c98712e10ae745937f1d35873dbb7ddb5100dffbd553fb9f3c2c3925315
MD5 28871ce1f49c90291969ef761122e719
BLAKE2b-256 f4e47d76793aa37afa732473a1466bfedb0744f4dab05c7b941187711515829a

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b9c660d64569481e7bb6cc25e5abb15398328c9bbbaefabb8bf075b11f48e0e
MD5 32c32980f54a0381961efa6985bbdf5d
BLAKE2b-256 61011799648c652614a52e9ee4dcf500c7314125716e7d26edcbcfade77d61ef

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eda54d7eb61aa2c61cfd7092beb75c9162b32522abc0505479e9a3751097f066
MD5 57d005bd283e3e30b2041fc2b2e64398
BLAKE2b-256 0cc08c9594a68c30c5cf9a042b2be9b154d132072154daf7abfcb339785d4edc

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 419f03a6cd814d396fd32131b6bb9dfd37dc668edbc3845254ff7087ad0b9982
MD5 cf4910e16b0624be6987bbb2c9e7ac30
BLAKE2b-256 119d55ad545795c1915cb7500f6c4e710028678e553c03b92445920153847e69

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e95dff332948f83cb41bebe98ce0fa25387ae38e08c35706cc9bb317facadf0
MD5 3dcfa71bf6e6afad8b4adb4e82725e29
BLAKE2b-256 1516c22d60bf5a84f066a755f2026a329fac58d3e977a83d1aa85057c3707f54

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc6816ee08bdb4c33ec516b29bef011d5a903b10f8f0e4251dcf40b1f3eebc8b
MD5 d81fbf9debaeec88332757928fbf114b
BLAKE2b-256 abb73100fbec82f24b2656a4b0c8a55cab38559a8dbf23b03ec67305429f88b9

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4f56ae94c32edf8725006f09432e10056f4ededf2c567863111dd7cf38d5452c
MD5 76af346dc4a140046fbc461bc762ab4b
BLAKE2b-256 9ec86ec2f242e9eaba52141b404e2b502f29a0c207d61762cfa62d36fe5b989a

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9513275660fc07dc817be4ed16ae2e736063b89c426d0f97d5d7adad87f35901
MD5 912d437f9ce12e0f8433e301d1c35b30
BLAKE2b-256 8ab6265219c4674114adc075bd67f2ed969594bd5b70302c8637038def4d8e65

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbbcebfdfcf1955b4ffa20d6a936528eff6821be6f801915d0d78d234b28959c
MD5 912fed29825cb1bc67c4bab7c02ce7d1
BLAKE2b-256 efa73ecce0d7c17a4d1b63511897ca410afcfda91d83e34b9c3f930b808aea14

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4aac2f4dad438075ac722e60f2ca8758ea51c68c3d42206e14ef2fead21c272b
MD5 2cc13428b3a7c25df665af2dc2fea9d2
BLAKE2b-256 ac49cefd79169d0eba5bbad6de6c9b7b40fbfdc5bd44a9ecb68fb0eff0979190

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3769a2c49f9d05b9b83fd962919da5a48dd3aee764307a89d371633716aad05f
MD5 845fc56614aa238454b592649948255a
BLAKE2b-256 721d8c3c9d081a38749959fdebdcfc8611337538420d4fa6c6f2357ebb97677b

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d021b4306ca038f47cbfb077946c18cc2295fb469a08a576da2a2512826da91
MD5 85eebc4b9a897fd49a77530c9fab4197
BLAKE2b-256 b4967bc80b766aae016415c3bf665ac1e84dc0558467ad3bd583bd3765a01845

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 800c5b739198b79b79e500186307cd9846c0b701e78a5df8e5aa9af445063e31
MD5 c42e24ab85a24ed57ba184c81b489523
BLAKE2b-256 779008a93953a00e6ad5edd67422fa40626b22ffa361de1a2700b73f0a1d6e66

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c67676c7207ec75f0bc236388bb761bfd59ee988d038e4d897e35310c64984d7
MD5 2808f5765c7d22ced82a0f7656865723
BLAKE2b-256 47df71b5670509935f88cae3cb197e03e41f60cfdb803afee0fb10d4fa58fd2f

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4192ce4b46e2bba09672debeb0e9e65754fb256f0c98f9da2a595fd592e0901
MD5 b8e67347bb98ac1f35f2ea99bb2758e3
BLAKE2b-256 6c80ac88121551420d1443e5d36c57d6a0b6b5cbb91ca7c77363ebdced1401f6

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6c409fdbd7f88331e0a9523454ffb6511d6379f67e0698fe67ea1d2b8031644
MD5 36c2f7dff074cc1b96635e94a3ad049d
BLAKE2b-256 5d55b01aca9bc485b483a4cf4c29ff2372536bb78b471f59d040e145bac44665

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 94f591100c9ecaca58cf3f2d2da1873d002f5a191175fc47a2d21f5e11e64e72
MD5 78dea83f0576bad33261c43277c06e14
BLAKE2b-256 2ccb4fef262ce36f9e8b5382d0e76ab5bea01e1a91d230fb784376c00e90ab82

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff665b8e67809418030ab6123c6bf66b83d8bd07670c28d606cf20e6dbe0625c
MD5 bb37dd396f2ecd2f7d37319617f26c6b
BLAKE2b-256 744e36f2f08a936ce155d02ecbd7ca019e149c05eeab8aaa9a2304a3914c9515

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d43cc5a602cc7e99c93071a0c21ea809438d227a61ac517975603ca659178252
MD5 8e0bbc7c32e12fb0bf12fe8f254b73a3
BLAKE2b-256 9a5dbf8078c96c8e4e2d0898dd5be92cf15603bbd5c00a1c2fe0f38462fe8599

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1cf01bbb6aa043429df65fee10ed15dda739958ef2a42711f308628f2ee86b14
MD5 9567dc3029598336108ae536986cdbd6
BLAKE2b-256 93f138e60cce8c63acdc5be5ed0cdc5875a433904a495a4f8f4af86198d576cf

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 57c1129049f31bddcd0ef93d627faad5898e29b7cb7622ee3bf9a4680b1bf7ab
MD5 54f59049bd880562ceed85ae22a32655
BLAKE2b-256 d1b138faa988993eb5a30e4ffb2b90c0457995899c1f292217b7656979576236

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b7551b237f0584348b7527897984449ea302dc5c37e744a73cad2b6a71b9a20
MD5 5fc9036c3b24955dfb474b9d3c6ab251
BLAKE2b-256 5ccb8d0802d01eadbf43905348ecf40731c5a73ee3e55a55494de42eb39bca28

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 565e6422a2ab594fffe18905d178c4ce09986aad7ad0247fbf74ad4bddc8929f
MD5 3cfb0331e941f3668aff6e6f8c739ce2
BLAKE2b-256 08c1bd7d175fab5eaf3f6bda1ee4d2b487ec30d55c8e396b513ef9a954ce6525

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-none-win32.whl.

File metadata

  • Download URL: sea_query-0.2.4-cp312-none-win32.whl
  • Upload date:
  • Size: 632.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for sea_query-0.2.4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 7a0ed597fc400dbb06f027b7fb2fa85b2735bdf7f9f4888c445c7729427de9b0
MD5 881cc4766a7b94d46548a4f11c510cfd
BLAKE2b-256 e7b0688f692161439742d0f5030018e05a3bdf425474265a423917b55b297b28

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5abadb146ec6bed7fdfc3744d497c5e97e8f19889e45c5fd7c8d8083861f98d
MD5 d85c253b0995f3e4c0afb2d319d396ea
BLAKE2b-256 a0c43ad8938127e4f978a9ac7c86566270a286ccee61b509374473c02fae79ec

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7265bc8805b978859b2a48bd00cec5074d38d6cf969448d34ddf06d58302e14
MD5 ba2509633f8cc6cc3270eff6a0395076
BLAKE2b-256 93c8660ac745045f85379bd4f41e8133861d27db2998ce54ff0ecc55a058ea98

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27a51c6f1738767ceace0e310780966cd6dc259c8993026401b71003772253cb
MD5 5abcee9b207631353259ddd55c5c3943
BLAKE2b-256 b391c41b7e1f5c836c57f97afc2f81d9b6a47e5f0966ca417fbb1b1aacaa6707

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c0fd3a29c15e2f441a39d78ced1a5a1f71f615eee607f203aefb4c111099e49
MD5 3f900affc65de928478517a3b4b34350
BLAKE2b-256 feac1ffa2bddbdae7c8b057929381b3e8aaf2275e123360bfaba8e0a84feffae

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18e20c8af1512ee149c0ce8369fdf031049a997b9d8dfb5d064d12eaa6878e6b
MD5 b3d38cd3de4f1b5aecde5e5ef415fae1
BLAKE2b-256 16dd51d56e413a976d17811514fc37b5163230cc953752024dbc0cfed90d9da0

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6efc6320687a0c7d464e53f66e356ffc3e3b62f41274857da3f64242c62a9fcd
MD5 57fdc4d59ed976447a980223d215954d
BLAKE2b-256 1cc3a06f392772bcae064b725ed8f17f0bad8780435cf47df2737da93817ef2a

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7891d6ae66bdc6247f0b116cdf79f89d7165c63bcda8a796f2b9ab4887e8d0ee
MD5 656da8aa106ababd501251c1abb17637
BLAKE2b-256 7d5e77eee5a79b33d97069220d7c9974a5759b062d0befaf6bbf62d1bff59652

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a9744742fa2e76c124d76553398e6468bf9036555b8d44d1a0f80c7cfdf85d0
MD5 cd174273841ac4f7e0dbc46d83d88715
BLAKE2b-256 c46c8cc5cd16af19709757685a2b5a9e7f12cd925e2d976a5478247fe8f1d4a3

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f200c74a641bab37849355844a84de658984d01cbf206e9f4171dc9b834a1e16
MD5 e1944511d47f528cd507be41a2bfd7bc
BLAKE2b-256 ba70a64f836266ab533233a96b2ad10e33c1f87d3d6bf00e44a15cd7771dc62f

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e5c29d2d1e6aa188dd353a566698dcc0df42ba62e916196bf26e838b068cdf1a
MD5 94a30a362efda8e88c133fbc16999227
BLAKE2b-256 820853a9f8f612927e501c82b43fcc13a363afed986c74692ed588596b63f99a

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25c43377541d19db190e487a262258e8b1f820fd34a75c9f839935d6968775a2
MD5 b14d114a781f37a77d5d477a2ed858b2
BLAKE2b-256 4bde4648543dfa666fe503b4ab06681fdc0c883dd8c364fc5fa5fed888667d28

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3777277e46d3b780378ac45b635053368f442257f0a028259e5b9b254a0c1eb5
MD5 bde1c8a11495ff3b0044ae7b7f21b322
BLAKE2b-256 f916c3a9972182482c4f8b02c0c2bfbcf3131b3cca38dd3acb14a860e4e403a5

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 c50fb01cd3e131f72c8e09eb7e7b19e9fb8581f573d316e97c6e5acf2cdc02d6
MD5 8a597402632340872fd4795af0c8472c
BLAKE2b-256 547c09d0f55baff61d978715c5eda80a68d91d60f932888396c635d26981ef05

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-none-win32.whl.

File metadata

  • Download URL: sea_query-0.2.4-cp311-none-win32.whl
  • Upload date:
  • Size: 632.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for sea_query-0.2.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 11f6c78241b9668c7c295764116b45e2888591ac4412c4c81373529b1e64faac
MD5 f0607e18cc92d29e466057d3a8d1af5b
BLAKE2b-256 86449d6d2d0827e4b9841b9990294ddc2877af1bbab7fadcbb33390277538492

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0108beb4d8f50f21bea00974cad3504d1e969a92eb07e491fbfe445d38f986da
MD5 6ffa15b0aa46ecba759d6f60a24be3d8
BLAKE2b-256 6d6cd58672e65bc43c0b805ee19cc5448da7eb1b639b5cb77b4bae0ee892441c

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba4e7697a552da6c142d7373fa74b1b752dd7280dde303939c864c9bdef112cc
MD5 357b86384f8876d350118d40e31e0ba9
BLAKE2b-256 15ccbc0a45dd488824fd5857db776b23039a0a57fe1ae05103219be8678bd0be

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 60090a90069467d795c57b65b47d18f9ba96db740772097c3d932ae64ae0bc93
MD5 eeacd3a00ae78178135066adc28aeff3
BLAKE2b-256 40337d3728bc474ff4d87262545d67cd8496b815f13c8f6443d9d2183c893dfd

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 789fa8b6212f8cf3df309ae736fbaa6ce85cc469277545745827c8c60097eb55
MD5 a70065dba699911c05bb6fabc5e8edbb
BLAKE2b-256 d2c290f3efd01f3b23c4dd893c173ed13f70e0e4fb66dff3d4894a73e8a42624

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7bffba89e73205a7f1790aac8391b155c6919e1cdb59a0f987609b97deffb90
MD5 3a088d75fb722921f05820af130039b6
BLAKE2b-256 b9ef14a069785660a9bf95ff7bf7bee2288d443d00f2990063f4fcba109ef93d

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ffaedf1e43107dd8630086cb0b20900634737e370b6bf49c4f9c51ff480467e1
MD5 00492df21a565613f1342de4727f57b4
BLAKE2b-256 65e5cdb85c4cb059a54f5a140ddb4b2dad068f425c4a5a61b34f1ce3e9a79a80

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b937830feffb4c74be722e0155b26070eba0451ef2c006928f76de05fd7a8f85
MD5 5bd5846e2cc53d1c07091251beb2ba86
BLAKE2b-256 ca1ca5a0368b74b5f22255fc07e7ec1034f1bdd55beffdc7e6df21a1fe26f5ee

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f6866ef80a6ebdd1af501675f05ebee581892ba39ee68f657d6e96fe65f5b01
MD5 177ae9aef2a16104f0a826a72b87f77b
BLAKE2b-256 1426caf70b58625065c11e1c4a39d623b831357586113eb1d405a3eadf4b36e1

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfe9e8897bad00933db21501f090ef4ec22044590801a242619acbe3e865255d
MD5 9d4948acb12c6b13478f21c37dc3630b
BLAKE2b-256 35891b20cc83286f2db1794392154c2d7878efcffa6d6a54195a801ce72d27c9

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e856a808b719a15c1b9e81bc4d4e2cd228c1c5a85df0a84982e7a28fa7eacb6
MD5 34dedb032cd7a125ae5ba277b0cb9c51
BLAKE2b-256 84ac0fdaea1d4d638db7b0f1485c0032da19b58ec2d3c75e9a1c7bcb1777d10e

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 675cdddc97fc1b5173e3c656cada246dd039af9e6b0f306e203d0ae8e0a34f12
MD5 b50733868bb1546d999e3455e6116f9a
BLAKE2b-256 490b5bda6867ec8c128a045dd8f4350cc6fa11387883c1fbc7465d648639e32c

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1413ea4f5e90998da42d9b56557bfd649084e5f6410b1a4bd6b6cbe277bdca13
MD5 13f193d94379b415cce9e5caba09388f
BLAKE2b-256 dd4463ee6fde22cea50b916885ad71249bc34dba961f60e87f197c42c0dd15ff

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 130b85851b536ce005b58497ca31e7e49782310d5802863855ddd7072c6cd77f
MD5 1bb81331bc23f95dbfb13117a3eb53e6
BLAKE2b-256 45eecec6d06f4057d3a0baa9b6a43cdda2a5afa09b3926fcaea2530c0b64bc55

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp310-none-win32.whl.

File metadata

  • Download URL: sea_query-0.2.4-cp310-none-win32.whl
  • Upload date:
  • Size: 628.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for sea_query-0.2.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 3d4a297f1e2ff76691ffb86c47b551624bbd227f17c0634d8abc3c74aa81c567
MD5 dc89827bdb0c06dfd469304f6f6f9ad0
BLAKE2b-256 50efd2023596f74be336077508075503a7ab2dd92c0e6e069466b8d18784a1c0

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 073b754cce4f722b03dcb7865c1ad54049dd6c28b69e299218bd3251493d52b2
MD5 fd0bc5b8616cb04ca71d1544b8f8d46f
BLAKE2b-256 b1390272d485ff4f00123e6803d156b9a137cc030cb759f5e4619994da7dfddd

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59b06545bc59d73a9dfca139709590abf92a8e3432d1f08c65731df0da35bfcf
MD5 8e6843081251101572c39c6492f87bba
BLAKE2b-256 fad8af00b77dab4f330af5e44c750f18414dcf401acda6dbc2f7ed50f7c4964e

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f29446f8dea9e16f3c10ec4ece0d9ed79c72403afe506af77d68c7025c995a2
MD5 a98294a103185ca25b1a4ae20f72d940
BLAKE2b-256 0f0d8ae9c30e59c46539510feaaa93e268256f8cdba705a6a9e534f7c37c6bcd

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8dfd5324a9484c93adb3dd19fbb3cead50cfacd353e3d852d95c1d9062023aaf
MD5 07b17cdada02bcd21b4d9cf2b8b3c3de
BLAKE2b-256 ed8bd5c0a6cd6f5043a3023266211050c451acfa6fdab2f1bc49c3402891de49

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 539ac84a181228e35b579330ee6f7f2f2c54c47ef6efd8fd19cda0522aa03508
MD5 26d4dabb834177415f48c1328a98a2fb
BLAKE2b-256 bd948270ad30bd93771b67199ce1301101f04fc94dac22abacb8a674ca4f5bc3

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6e877e29496f0f72e655ecafc364f790947eca98a7b8ce6f7281b51e02463527
MD5 09f840ed2e11eee784646a539adb96e4
BLAKE2b-256 76e84f01ae9132e939caa990da3b2f31376f4200f07266edea4193fc23fe75bc

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66dab2c59f40e4622e771844b6f18fa830311b76a275f10f600e3a215dfe2c75
MD5 3ee77f69c470f2d813be481327c0b3f0
BLAKE2b-256 d42a58cb2030440321f8a776ab2e9e743aab1345d312ad729f0698ee8ceeec34

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce2d6306f493da14b8ecac964bc88f5ca767ba170f4be834557be31b672ccc08
MD5 ad13b72fceb4df8c946cc24f3235ecb2
BLAKE2b-256 334f96d6704ebbca0eb187f4a206dd798f9421cac8907cbd3cc097d61cb27138

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb857cf12760f93ea02b925291ee35777c78e26edbec1a0a4063fec000c9bac2
MD5 213387c91fdab5aa515cbef2d217c974
BLAKE2b-256 eb4f088651d6498b08e099f4f4c40a7865ef1b7440c52ad4d101696140a6b1b2

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9535971c814ec1214f55e3d100b80b58bbf4a84b4bfcaf89edd1abc69e69afea
MD5 b3493721a16fce5516ccfcb344218235
BLAKE2b-256 ee650b78ebfe04878aa24ccfcddc0e3b959c4cbad33cb1731b14aaa4bd5208ce

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 560e2968e184af2fa5c04925ab965de67be1a5e824740bd7e803145d19457b0c
MD5 6672574c8dd2ebdd41b303ebc9221b3a
BLAKE2b-256 c268f99a4fd79255e9ec5248e393d9079de037a8549fa125c8e59c40e7e433ee

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp39-none-win_amd64.whl.

File metadata

  • Download URL: sea_query-0.2.4-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 790.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for sea_query-0.2.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 cedcc64a0a94ffcf459ab6a4efef5dfd7ebbd7e3310fb11d93da00e581761e90
MD5 6dd32d585448334f3aa3c4fa143fa631
BLAKE2b-256 8516656e005a688295e3e6904b8c9db8781bf20e6b8cb01f2f034be9aa4c29a8

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp39-none-win32.whl.

File metadata

  • Download URL: sea_query-0.2.4-cp39-none-win32.whl
  • Upload date:
  • Size: 628.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for sea_query-0.2.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 782c1e72ba79d8bd4d6af3d3f963015008c869f7fe2d2f2dce54151fbca433e3
MD5 cb205baeb135c5b15045d16c06956333
BLAKE2b-256 4c6699698c80d6494e98a45503e0dedfd1d6a9a892730dc483f9537785882b29

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6759992d1a7196b702a2fd6b53e50bb0fa4f878ac132bee572a0144731b9a0ec
MD5 3a0b0a365e46940c143b4630ca63eb7a
BLAKE2b-256 bc7bf1e147e28d8b86b4b5ffc4d04691814e69f8b5effc7200de29c46115b582

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bebb61f92a8564d66045869a0527428e295e3280c492f0752dc7e26d6f04be9c
MD5 2e180c32dcda2e6b6daef094113bc6cb
BLAKE2b-256 f1c3bda31d134469fe030a6ed364133a99f077e19f836591b8ed2352e2558d7e

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66b6ba43e2dc7c9756ae81fb5c78db28478042fee14cc58cbddf83d3e88c5a9a
MD5 82a874d1ec7edeb43f5e4128bc88042f
BLAKE2b-256 f8c6d90bdef2a8b3fb4faa36bd4e3c2d470cdf112b7265d91f8541b52cc837ce

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91a3b9e1bb1be45c9ec1c8aa47882b1f741cb2750955e573ff431a6630afb916
MD5 451531d27dbe7bf5de71f040db28fe6a
BLAKE2b-256 a95f547e1b1aa942df57fcff96771903031e833ce5867bf43a425ef3efc48a1f

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a409bbb6fc80d9dcdcad4b495cd1bbc1351354db88034c0b3697aa53a056fa55
MD5 2ca2eb1bc4e646f35671a1bf64c322b6
BLAKE2b-256 54bbcc534e99a0c4ac5e426a73468add1e38c8c1811b29b2aa45add61fe060f4

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 28ac1ab3cd92125bda4af3cd308242252a29fa444c0098dc8f2a49109a5a5716
MD5 c8e18b64d5309c66100e086846b32b92
BLAKE2b-256 5d077b7aa1316de95069e9ead6c7a4e656621bfa080efc2b014f4d0eef6920da

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eac35e59c9ab0558ec1e354c011deb1969932c92b7b5e606214b31aa1a240ee1
MD5 e2a2b6f311cc1e7412b867787077a2a6
BLAKE2b-256 c9ea898f16b9536dd7d7eb121886f95a232c7da38a35554cedb66e25ced1e667

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7defac4f50bdfd526614bd843a5f1f2d0093e15b88aa3ddbb4edb6373eedfc07
MD5 3da67a3ad492902a3b7a0bbb49ead0cb
BLAKE2b-256 d0f0e3dce52a4d23d3ce7f26d00f62dda2e801a836c8271b50fe0708cb6ab075

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2236facc3ed93c9c01f576fbb82d1f0516b80741125e60e1348a39c2e5024a2d
MD5 ee46ceca381df3a867811fb1e4e83c80
BLAKE2b-256 a27e385ab389de3f83cbc6557e407d12d94222ae63a4c1bb4bd4eef49607ddc5

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 81d6b0734aae74d657ff2afa6ad63c3f3d89c84c60ba110adb55a304d69d9012
MD5 f57c593d6d870c48141c15494ad26deb
BLAKE2b-256 02e560f4d6eff744dc96a76cc75b835b26ae9977baa213ad784fff54cb134b80

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6d7a0d29ae6067982ccf3840b5ee508dbb0c37767b330fe090a004863102ed6
MD5 446b2528ed4e754603bcc4c481b98091
BLAKE2b-256 ebb1d09cc970362ecf6a4d2ab90cb4bfa7d9e42f58244607d6791dbfe7652fed

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp38-none-win_amd64.whl.

File metadata

  • Download URL: sea_query-0.2.4-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 790.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for sea_query-0.2.4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 3abcd99d7868ec39d5f8597b87f83af72098deabf56f51a2ea81f01fe64e592c
MD5 15a0553d218de581f3288d948969b12b
BLAKE2b-256 397a532dd4125629c68920f5c4647aeb4191c46066cc0c3da60cc627b40f5bfc

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp38-none-win32.whl.

File metadata

  • Download URL: sea_query-0.2.4-cp38-none-win32.whl
  • Upload date:
  • Size: 628.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for sea_query-0.2.4-cp38-none-win32.whl
Algorithm Hash digest
SHA256 534a4c8026285113df2f13e3752698048929ad1a53ec6d83ec4f2e46f9665479
MD5 3cf6b0798e075ac088ab93b8dc8ed68b
BLAKE2b-256 9cf977a8e0e4a23290d819ef3cc92ff4054141e8c4e9b5fd9e5f539a03fa7e9d

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b53ba14087de3db787ef7742959b74d3f62d71797f39e85c86a404d0cf4080b8
MD5 dd69dcc89d9bac2ebc25c364750b271c
BLAKE2b-256 3ff1b965ef9fc3f6376bdc1d7021a5d3767b07d6800df4148ed21da8d3afc2f0

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae9f7307bcc7fc03da03ceadc74523ddb7ec0fbeefea6d4422a49185be0a6454
MD5 233bd9bc990693800af8b816305e4067
BLAKE2b-256 3632e8dbe71568f313b94a05517d2b4944ae0ee76179aa66bc34188517efe45e

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3674443df9b19ddf168965479461708ed0b5552806ddcd7d57d25d9d989b9ce9
MD5 6aeb0d5c5684530574f3a712007da4e9
BLAKE2b-256 f638e71c49e69d40ed940c2111a1d1d07ee3144d418070e2f033ab9a41b65877

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f44a3c7443574aaf5f198e7dd81d6699d8264a808bc9ffbb3bacee388141ca56
MD5 1a353fe04ab9fb6e3bcf4e455bf7af9b
BLAKE2b-256 5ebf380cce4b852148427f409a6e2952445d385407e4f85b26d80e904c8dfb4e

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 325d8bad442b5e30b0667f90fe8cdebe0878156fe007abce38fc25c471b825ae
MD5 963dcf58de57afe5dd3ec2aca68240e8
BLAKE2b-256 f18fed3c2ce63a32a0b1e04284c6486b43d3683d0ec83feeec84c2d13db19138

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d844e10dd174789403e45933cc331334fdfec8eb35ee956be244e715875efdd
MD5 a677bab2fab146ed2e94d7f6e8589097
BLAKE2b-256 c096870795b3522d1620b9c55db6781917c7c394cc582f1cfa869c038b384a33

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31a3a14ee8d7dabe22c61d79c57f1d90bb23c3ff7fc41c397681084072c992d4
MD5 35dfe6e035f15741f40c0eb2979925e3
BLAKE2b-256 316a3789f018470ccfb08931cfacffc42fca9ed90fc3b38470b20a01435655fb

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36c489b8f40d31e723e24a291bb8ac9c21bc2d4b7a25725be0876ce484e345ac
MD5 d3b346dad15f25d3295768c8ca87f88f
BLAKE2b-256 77b0a0990698601c2e2154e6ea9ddc87fdfb78dcb0f4a6bc2130afc26cdf9af8

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3069b67dce8a65025a1d2017eaab5beca8e32e83c097519f80a824ced6ef29e7
MD5 571d62a0ff356c9f3e903adaf213e123
BLAKE2b-256 45df784fc4e2c04ccad2bb437550a9c62239cf3f0660c1d77c3046f483b0069f

See more details on using hashes here.

File details

Details for the file sea_query-0.2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sea_query-0.2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4475306c3244ab635bf948422a53e484c331f739a5c14747b0336eb879f228ab
MD5 731c06dea4b048208118a3ceae84017c
BLAKE2b-256 87b1fc91ba7d701b7d53172ca12a4ae048184a02664dc51ec838a65a67989bda

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