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.5.tar.gz (27.2 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.5-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.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

sea_query-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (986.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sea_query-0.2.5-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.5-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.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (978.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sea_query-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (982.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sea_query-0.2.5-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.5-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.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

sea_query-0.2.5-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.5-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.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (979.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sea_query-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (984.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sea_query-0.2.5-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.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

sea_query-0.2.5-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.5-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.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (979.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sea_query-0.2.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (984.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sea_query-0.2.5-cp312-none-win_amd64.whl (796.9 kB view details)

Uploaded CPython 3.12Windows x86-64

sea_query-0.2.5-cp312-none-win32.whl (633.4 kB view details)

Uploaded CPython 3.12Windows x86

sea_query-0.2.5-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.5-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sea_query-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (989.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sea_query-0.2.5-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.5-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.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (981.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (986.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sea_query-0.2.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (863.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sea_query-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl (866.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sea_query-0.2.5-cp311-none-win_amd64.whl (794.4 kB view details)

Uploaded CPython 3.11Windows x86-64

sea_query-0.2.5-cp311-none-win32.whl (632.7 kB view details)

Uploaded CPython 3.11Windows x86

sea_query-0.2.5-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.5-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sea_query-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (989.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sea_query-0.2.5-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.5-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.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (978.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (984.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sea_query-0.2.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (859.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sea_query-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl (866.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sea_query-0.2.5-cp310-none-win_amd64.whl (794.7 kB view details)

Uploaded CPython 3.10Windows x86-64

sea_query-0.2.5-cp310-none-win32.whl (632.9 kB view details)

Uploaded CPython 3.10Windows x86

sea_query-0.2.5-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.5-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sea_query-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (988.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sea_query-0.2.5-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.5-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.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (978.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (983.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sea_query-0.2.5-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.5-cp310-cp310-macosx_11_0_arm64.whl (859.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sea_query-0.2.5-cp39-none-win_amd64.whl (795.5 kB view details)

Uploaded CPython 3.9Windows x86-64

sea_query-0.2.5-cp39-none-win32.whl (633.0 kB view details)

Uploaded CPython 3.9Windows x86

sea_query-0.2.5-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.5-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

sea_query-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (989.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sea_query-0.2.5-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.5-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.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (978.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (983.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sea_query-0.2.5-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.5-cp39-cp39-macosx_11_0_arm64.whl (860.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sea_query-0.2.5-cp38-none-win_amd64.whl (795.3 kB view details)

Uploaded CPython 3.8Windows x86-64

sea_query-0.2.5-cp38-none-win32.whl (633.3 kB view details)

Uploaded CPython 3.8Windows x86

sea_query-0.2.5-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.5-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

sea_query-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (988.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sea_query-0.2.5-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.5-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.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (978.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (984.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

sea_query-0.2.5-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.5.tar.gz.

File metadata

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

File hashes

Hashes for sea_query-0.2.5.tar.gz
Algorithm Hash digest
SHA256 0fdbf4e11285cf3e3051282067ad8ab38f32916dcb66ec52f5ced364da3a4bd8
MD5 8db79e390b686b172a8b110d8d9a4720
BLAKE2b-256 7634564d2e7010134bb133e8da29738d4bbde5399d0dface2d85f4c20f7e13bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02232d7897dfdeccca9f4ee2a516797703edfb602005a318f17be983852b5815
MD5 41e20dce72737f89bf3a53b5aadab265
BLAKE2b-256 f32aebddc436fa02b3409f118d61915e444fbe7988a2f7808aa2e680fbfbfe26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29d6e9df170499b594c39338ea602bdf0a3224c638204eccc8c6bc0ba4eb8b43
MD5 4b80745b2b08291bf73823a65b09f5a1
BLAKE2b-256 6c63e092c19a22477865edcf4e9ad7b2b69ecab0829e7cef2f4756364aa7872a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c1ea39dfaecc0d8e3fd02d0f85b213579eae1dbde96051c3b06dec8a9dce4dee
MD5 8cf847c484cb04521dbceb214c96feac
BLAKE2b-256 14ecbbe8f8a0a3fc609d1db4a8e3083f39660935b4025af223ab38c89485059b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ebc291f75dd4c28ae6cc859237088c11fc8225fcba728e8ef29ae342fe5eec31
MD5 11986d3de36c14f0adf7aab66f914c0a
BLAKE2b-256 d912a477693062d54f0354db673e60889038cd8888f47a96e66f1f52eb1bc0e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb0bc1dbdc5773bc7e46ad9e63495fa84856c7604e7ef103e39d15ba4ae2d2db
MD5 1d694ba2377375129a2e8a828b1172d7
BLAKE2b-256 4f2b7ef4c2faf832872f07c23b5b7c2d41ff1937879ce4e72793340f18ac4cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40f4576b31dcd61667197002c7f21842a25e3d0e793340bcfef01b02da42ad00
MD5 ffdd48fb39b76ea686b286806055af8d
BLAKE2b-256 a277d40fa1fbcf0694610619aa3606d9cbad405e6783749ca0013b2ffa2e5419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5745ec6005e67b765cd687692c1f3113bd9dc20f2bef88d4fe6e3c63b1e6d553
MD5 9328b0d85246adeb022afe23650280a5
BLAKE2b-256 20622323291d31979bb4bb9f572945bd7e055ec003804f333cd27df29312f909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93604fca81f79cca9c4ed4848295fb8d92757076aaecd83d877c3b45f95a6d44
MD5 4d76d9c42e9a1d89ea4769227024203f
BLAKE2b-256 ab46d579c4505f139e2a5160552ff4c70309083da7c0b8ed695025868af0a3af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb2ab40fe4896cb3d2ba4e2399ce0d5895b40d4c2af3bb9ecbab2d61eebfe9d6
MD5 ffe836e6ef4947658433ad802554463b
BLAKE2b-256 43f8b72b04dcc5e166457e92eae7006addb52bc4569cc55b1b5468cc8ad083cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 247df9e36a208a2fb2870d60a1ebad91b5612f869975625f1209a07e7a61bbc9
MD5 acd2daaddaf33b209eea628d9f5eec82
BLAKE2b-256 8c1329c8b6e024fb47f892261a4132dd732ec0dc6fe87b9e3fa4381337ca447d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 550d48ce0e0d8789126383e853f91356b549d4ea7afaa059f85a0ae532cb5861
MD5 3e5c3c02daec2b25c81d9da6cd1b05db
BLAKE2b-256 0a41b9269e865d943fb329d6e09bb63eae67e394071953ed3006a650a5ca6bb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 724283d45d4dc1d0134356da281a61b3f187c060628a68dd4ae4c12e615ae9ec
MD5 ef1c961815d3ea8805f3bdc25a6ca6c3
BLAKE2b-256 e5334f5fb509d2cf3c6190e8d7cdea25af0dfa93595d57cbcf28da9990440107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 950373cd1998c9e3477fdfe31fac7336182bff80f2c2bf22ef05f223751babf8
MD5 39238b4bce38ba0a3210f9bb4b5c09f5
BLAKE2b-256 ad408f1e1fce12973666c8713d9e3e774e7fcc00e764e7bcb15e8b27f2da5228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c9af42e19630d94e29ea2ae736e0ede0fe5e685515d86c5ae45978987cc25f0
MD5 69aad7c0d7a180e27e5823f0abb842a3
BLAKE2b-256 00171879645b430d75b59e2308fd320dd0320be5c401c9cf5dd6db2d613efafb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9d92556420863c543ec41fd9678083c415beda82fbcf360149d512330b1db8d
MD5 4f458ff818fe4184901119a780c1eebc
BLAKE2b-256 69f62990c0b9108ebff2e01178f65e088a4fc4c34827307062242e61e9f0d44a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac3694a06efd6da41c521c5a277d721e7830ecb883592a4b7cb92ce8c1594802
MD5 3974cf4bfde8e96b0a12ba28fe616c48
BLAKE2b-256 254ea39f685cec3842d3153bf9de63aeda31d2e013d86fe7dd2a14b71806e633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8af26a7aefdb35f2749892ca9fb683adcae012267670d24ccafc4a36b600673
MD5 b1210d7f3884c2e0e504f7b50be4b75b
BLAKE2b-256 36c8c785822c29636dd7be49a4c582cdd05976eec0b06cbd1a7dcf0408c4dfd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 042b00e440f78032f7e8c6fa9cdd7d8e980c72245487b0b62301d363724c4a5c
MD5 529013af7caa6df736f2e7d99056d30e
BLAKE2b-256 2fd051592f8519930df8f87c474d2214745885855a6ef292c7021c3d4756000a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69d523c8911222b4320fa45a18cda4ed99198680f2329ee931c8ae9f2e56c158
MD5 84b7424d78c3edd2c261ba707ab0f072
BLAKE2b-256 ed5561f27461ec5c3926d7df1f82006c68c8115c032dbf6e60587b0ef39a2b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5aaf4612ed3bafdee945eb9c5e38763e3833499207c3b97c59b9f3285993ea6f
MD5 5473b6e2d97b367b4c70d9bcd93de3e9
BLAKE2b-256 21d45dc50178c818a72797af83db52ccefcdf3180efb11eb41f91952d83e5af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a82e89ab70e1f21c78da6b0c4af4479e48e15104c3adee8cef09677076b467da
MD5 e704d4d14802126e6e7d592d4974c1bb
BLAKE2b-256 c0ed8f086a202aee9fc45f6a63b25a90480d70f73b6365d4840f068456ce8348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e71e55c2f4f753c08ef73884a84bd1cb67158f24681c61f009a1c636b66cc7db
MD5 4d7450d50ef439ec8c7c7780b061a8b6
BLAKE2b-256 c216cdd880a2ff34d20405cbf1b209c13ed0670501ad31a1bdf008dd64da296c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 079e00545ad51ce588db4102eb6c1cd8449ef85061eefea3ffd7e7173191260a
MD5 05e664f19b40916b6a32a13aa092acae
BLAKE2b-256 14887c62a7fcf9f5440923bb5ac3210ca4e71f52fe7365124a6818ed35bc15f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b3efc60b43b27c6493e40f8dc0ebbc31f622f46b67c2a771bcf8d609a3f7eca
MD5 ff6e04e56c2339b7ee04d2c57c080985
BLAKE2b-256 b6d1517a0621d8f49d5f44f34cb84c20dc16c652dc84f5a029b361c7bbd22473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3404bf2039a07cede6b6ea29c734c44543e073f86bc20e601a984e61805782dd
MD5 b87a73c162a88d6b47faf39fdeec45d0
BLAKE2b-256 cdacaae2583c9800e11d18ace6c6690aa70ad62717ab23f3f8a6f79344c3800e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e3d0c670d24d837413c9a358d6b3ad376549cc36a9d71aabcb65362789931ce
MD5 39cae25649dbe56662b7ab054c868d0f
BLAKE2b-256 c55a3cee5007e05b49a1b053b555a7c9a04198493687d0260038358bf360593e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 28a2fff7254fd2fcf428ff5e1b89024934de690dcc4894558c821ce92612d6f0
MD5 9b6c83c6993e69b72a3402c7949282d8
BLAKE2b-256 d3543a9b00a3156c559e33c5f307de0eedf8d30ad44152fb7fc04f78777c51c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.5-cp312-none-win32.whl
  • Upload date:
  • Size: 633.4 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.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 7b904b4cc6cffb6648f82a5cfff76621497326fcb9b91af9c20d98c6acc0a5e7
MD5 f4e7bd8c95c9bebf2b3a9758df9abb26
BLAKE2b-256 a94bc67850a4be68fe2cba2fc583ee452d190cbfd92f8ff2bfaa521cf6b9690f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb005982f660117f5d3a5074812c2b3d2d19add4a13a0ed19aeb1923b1d656c8
MD5 848e26cb50925151e31dfc0138967f59
BLAKE2b-256 26aca6eb8df31728023816484be6129b814528bf130156cf435662446814fb9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c655dbbddcbf2d21f7e7555e36c509d4a15e3c856f62f3867439ecb204abd4a
MD5 92e746c7ee109209f48da7e33f6befe0
BLAKE2b-256 ad6d4118588bfb4a4b9b4c6f0b64a45e0f352b414079fe72b3c2ec7c660a96f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1a0e9e49b021d92c03e3c53ef6e58886177af99e3a047d10431b83385375263
MD5 4e7eabfec0a4aa0591c5fbaa5ed67827
BLAKE2b-256 425c927b19e66d7e79bc00d099de0f9c0b6e2a5e4e9d7fa9b2e3e3be7bc61f2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d6c61b616051277817eef8a51bca2810417aa2d012b428984f9e156892491a1
MD5 4f241596fa0db63aef63834294f670b0
BLAKE2b-256 6bdf8418308621c34ef406bccdb85cfb0f692b3766865d1d7e9f70820f222323

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a18dabd524f858a95d7d9b1ca73a136e628b38a8129cec348c2d595a16bb84bf
MD5 e940f29b401b6dfbe2c1656f3c85874a
BLAKE2b-256 c2cb09feef8ac80f24994d312438a45a4b90f0c6dbef26f0b7e922ff6ed5a3e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f6efa24f7b045233e5cb0bc3942c1814377a6a719dbe7212bec81c0e7d7fc7cf
MD5 9ca11e18155b39ce56a03d3f4291d3af
BLAKE2b-256 f0dcaa7308378023086eddcae121722c8709903e19e0c8bc31956baed1b0e49d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1ed2e3cb9cb4ee589220e92a796af915486487f01509731709eb53b1e990b76
MD5 f3fbf19b87439d2d1159d2052c6e5e70
BLAKE2b-256 bed56663af9361ccde21bc12a8f8b1882dbc681daafea1a5b649233bc4c9b7e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 05caf7e95d8a7abb2dfe1603dca6607fa43c391398c093b883a393b8d2b0f9a8
MD5 6a4e6d27902ccad8e5c2f31fe52bedcd
BLAKE2b-256 d8b4bcdf5dbf6330199086c58812bb064be7f49ab8e5bc9a332b5a8a296b9d6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22babffeb806316b940a7247ef1f7f7b9d710b1ee94f0789fdc0568662d5bb8b
MD5 5ee3e5ae55c3a7ad14d61ce84d1c9351
BLAKE2b-256 6178a0c82022d049b36ca54d7a81c702e574eeb4b7c9a18ad7982ec286660c69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5531fa94ebf6fd0366273dae8a0f8f791a4272e2e111971f9a96ff0e4242bbd2
MD5 92fd437522eb3e0153e1da67978bf862
BLAKE2b-256 c2571d24ac106a152fe705fedb767947cdb44bf5bb071588b11427f2d3fd3813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 baeaf6926c868a76bb151bf6abf5c8f9beee507e4cd770f4c7e8aed62f2cd28c
MD5 86e68f96bbe683cedf30c008be9d927f
BLAKE2b-256 37142a712b6a5358da80b0c8f9b01c299ba487e93b51dc0c19bb72aefe62c791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dacded2dc28b2f953bd46e0683efdbc75297bd2ee18429e15809976652b5cc26
MD5 d88d7c551e8440c3004d701784457be8
BLAKE2b-256 7b0fbc1b3a604fc223d1ddb4dba14ec5acc90374aa45da36dc32a843afca383b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 179e0de60417d881d3c492bd2dc2b40a870a71d87bbf69ff18dd73ddad920e5c
MD5 da74fe8f6b173be742ea3e2a9f09c76b
BLAKE2b-256 557dc3a5b4c7dbb30339d5eb34a360d8d9d247d33e682e0bbba691204c489bf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.5-cp311-none-win32.whl
  • Upload date:
  • Size: 632.7 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.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 21a8f41390d07910abc6e66e61e7690028ef9758b9075c36d7e48ca0ea509b6c
MD5 fa1a9bef4c4d0c58d1df8beb585ff46d
BLAKE2b-256 314e04f7fc5ff7ef63dedc870fff9a0cb1a036668fed5197610ccca8947563f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0dfe548c92cdf8f2debf603fe822f9689df4fb3d5cf1a1b532bb27d103bb050e
MD5 daafb437917d718914bc3c45ed304cf7
BLAKE2b-256 532b76141874c8e3f77a33ce7d319923063a0e02b67c1e8b72d189f7050c977c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 255b35a878d3e77996958190f53e40c8bdcb0d1849daa3761196d57c245bd7bf
MD5 746ff4c858c0279ab2352ec57c8cc917
BLAKE2b-256 ec7efdcd221bbdbbe32e0d18a07a70d8b49aff667bd0eddf7ceefb9f0a703701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 94d9c74306917c4fcd0076ec0e60b5eb184a298e1c04660d51955d92c40e761b
MD5 ef29e84b3cb3d40abea82c743abb776f
BLAKE2b-256 bde2de85a6e5c6d0931849860ea944331a4be253bf78d9a12e4d999b4e3a7e01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d282e015d0e7026451837d64a28dd9715426b7346cec066e7f7886ec1f7f4be2
MD5 dff513e097519a04fae732a5e5d54363
BLAKE2b-256 0cc370f363fac6eb0385eae3d4bf3445d7fc6aacad7214eb1de58acf622bcb3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93363db13bf8babbc3cc67e4b8dc49eb28ce426864e35c8b3b2f8199749b46bc
MD5 5abbf5670c1177b58972173ab4ceffbc
BLAKE2b-256 4c86d2f993cf685fe755e15cd0cc231fb9e852d5df6d560f5aca4f658ca4ffb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed683da9a4391d17c6bab36eea1c0c08271133f5a6e9b357533135b6c0c7a8b2
MD5 0b7316a46ec620617924b4e25c38d0b3
BLAKE2b-256 976730add76b53015add30ed2491c907dc914bd64b13c649d0ed15daa4a9772e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2868ce546b03ea067f956324ea47583bdeba01f5d2981aef7cfde7ebd4ca66d
MD5 8e2514e5602d905f7502ceeb14445412
BLAKE2b-256 ec2042c03f1498dc0c56fd36be555151c0aabaa71299ea53043213772dca3254

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0f6ba1d807d17165b166ab38b8695a62b1266f272b076f1762b97e3d17e03dcc
MD5 b58f23fe89de5e23bcd9a98f094857d6
BLAKE2b-256 e87f2a221b51694aab69d98ab55a74f39ddd04bda2ab382a8c0606a3c6ac1cd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1255eee19cd62e1ae87ee57515f0993b8c2aca74ad1f11574fb6b1d5de598993
MD5 ceed78c5794d9bd2bb61e22e54a47df3
BLAKE2b-256 ba9bf3f52ced20b33ca0f480236a3fcb1311e9f8b6989b2194820d0f73bc3b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 debb48a7e4e1f989bdfa0f1ae20914c97567f312696597ebaedc950b271bdaa8
MD5 ce0c774c05ef98f4e360328bd439ca13
BLAKE2b-256 05108cbb893bf99f22460829409af8852e08e7f57bb3db75dc4084ceca02d84b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22c729d5846a6783cbabc80166d036af346efb52de79c8a1581640b2aa748239
MD5 0702b62bd23cfdd5f9db0f3eb04d7d87
BLAKE2b-256 ac1b0976d5683a77e4086dbe7b33d7f9ec6d3d2d69853843a042e6cdcadee436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 74dfa8bbabc2a7dca9ecdca9583f02c77344b2219cb585b0e1bdabcd3dadb346
MD5 569c519a53fb0c7bcd9b7cf37154141f
BLAKE2b-256 0e29d175e5cf4e30e1ea84aff8cdaccb89677f8432331c145fd531a57900e070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1d9fd2d4aadb3574f3b617aa18a63c1d83c1de1b414e32df27b6541c22d5e92d
MD5 6e6e87088ff19b450a67a4d856aca44d
BLAKE2b-256 d2cebb8d7d871afc7c7a39c764e2221382b1e7997eaedec67237057b66c18d4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.5-cp310-none-win32.whl
  • Upload date:
  • Size: 632.9 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.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 1efde01f95bb6902de49b35f27dd01e192c08c5f5e267d7d3f856ab742caa80a
MD5 61f7dffe99e636491860b97555f0a927
BLAKE2b-256 e05a4ac5bfff22a31e13dc444b839aa1bb1b1ce6434d703b7b3691032d3c7a22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18e1df661c03dbf6dcf76808c935184a74752bc0e4147341b3079df5c55722a6
MD5 2969bc65e7a1d2ade7a0bb23e25b34ba
BLAKE2b-256 44282458efa4bbbfa86ab6af65c641b6112f879d328a80932219e9dc6c847343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2427a4af95a7ae889b38d66f1d06d04c72990421ddaa26383919b651e362cf01
MD5 d859654f080cb827ec61fa54f9c3cc8f
BLAKE2b-256 c02de3035cefd8aee9251b9b15a381c2e5f42c9f2680ed85c7c41665a3029044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88153f1275f0faceda6eb48501911447f1dda7c4ae8a3fbc1b481b1b689264ef
MD5 e9f3a9aec7c4520af685af9e74ed6924
BLAKE2b-256 e9b67ae4e08db6b7ba0ff8a76a7b05cd1213ef0b89be8b810f2625a3ae402258

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 292a1a48733ef54982b95f04927c5ab094773236835aeabda68d92735c41ed03
MD5 6e7cfe467b0dcc98f83cff23b2fd141e
BLAKE2b-256 30f2bce0d41b007e7a6ff90f89b890e9b610daec90b94590c32662b40573c170

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 379a54c181acddd87737671848e06751898c665b7ff78afaf5ea0220db9abcc6
MD5 6d0c998c841ed386d8510bf720ff83f2
BLAKE2b-256 9f75e73a771e220e0c2b8b970bc0b74950a67743d9f5631c69fdabf1ad410703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a1708c04a1fa17a72a0a14236c44438787dfb6e4189b6cdbb096b21f38988e3
MD5 19e5e2d4838bfd2d2c4c32791ef88d7d
BLAKE2b-256 057d2dd518dc4502433351c0738c5652773cd874901bbaf1015bdba91d018947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a29908a7d1aaceb72bcb75312464b1f3edde8ee1757fa8e1751261612169d642
MD5 34ab7e16e031410534b1bd25c07d72dd
BLAKE2b-256 1d538cbd3aa7814c05deb9278564f27f9be6bc6d175fd92d6e32043f42698b5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 74243f282040ec8848d4bde9637650abd6de426b4efa57b93a10e03643bde47c
MD5 1645e459d6070b96e2c6155aa9d5a51b
BLAKE2b-256 a874607c0b5758b12157cf534d9b539e0f1089dc31d09e4bcdb02129f5be07f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5732e1b198cc2fa5c3b9ba0ecac61eb0159493c68719f7b1bf393fe4ab29b3a
MD5 52ca63ffdd46460bb0886be8c51c5eb9
BLAKE2b-256 a23df1650b3b96ed34ca86e8521c5647347ce43edcd2a9604fb84942265e6f29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8463267e518e6e95e7607570ebc8f72fcd592af4146416c6b2d44b17edd04321
MD5 1d7ecdd000cffe522a5e567f538e074d
BLAKE2b-256 7adc4b52e281936109869254589d8dab5d77ccc1d567e7196c99e346872c96e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 063b6b965d197e9a5116d7cf89db981cc672099d933cf16922b6a12ac34e879b
MD5 b6f8ebc12b6c21ceb2904ec3026b5f9d
BLAKE2b-256 f618493c284996535a7f3592c90b21983ad22cb7be29e26acf2fda5b295f1714

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.5-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 795.5 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.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 0030158459be01b318a93d54c39e2e88809b0f4716e72f5424fca91a43368327
MD5 ff5d2257e62855698b0cb671c2e720a4
BLAKE2b-256 22a50ae0183be892a93aabc40c6f5540bf496e4190ac4dc3ed39e6e91b8a321e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.5-cp39-none-win32.whl
  • Upload date:
  • Size: 633.0 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.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 45739a6a34591e5db86e3a17d887c5580087d765f3605d74988e11aa15c66c89
MD5 15d366a8946578bbbe247d0931b5b3b1
BLAKE2b-256 631b2f7bf2f2e84a73e3ebba1fadb851ef0c0da4ed38b4b387318abaa0d55421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b54606c4cce6daac78371216deb9f10a94481e6a54081d4f0d485460e9d07066
MD5 6d604969abaef32323b9d695e9da6207
BLAKE2b-256 72af1e55efe8744fb2ba4610d91ea6f93bcb0a66e4b5af7af850de028644d6d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5cf5cbd5d78e7d4f5f083856330cea337a1f4291c85d4cb519b0eab608257efb
MD5 3b4f5c493b7b212a233c9801b4e90b19
BLAKE2b-256 892afb9f4107dd8804b2eb2e164bd8acf733967cfb4fe9dc2b8cd3f0e468765c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 529a788b826e37f7d026f89546b705fa46215326754ba0048e9f840d3f1ca699
MD5 eba8f74c09b25c936f4665d38e7202aa
BLAKE2b-256 0606c6baf6b86dc7f3e013bedbbd6954792e6b05c524d39e67bb79a5ae591cc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0cd0d960530cfc8d065e42edcaff1c10f915a7508516c28eadc3438da0e96676
MD5 f45a4876a030452832308bf670b82b94
BLAKE2b-256 4123ceacf235369b733c23ece13656d460e6abacd7f096ea8bebf20bf828661a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a8cef88b2f7ebefb6efebb4934906c7f292be6d13e2576c2f048ad5fe512f60
MD5 7cf4bc57395dc90323106c23acd506f1
BLAKE2b-256 0751f3e4264bc66d3e2829885acbcd5d7de50af8b8f3053acd99885986225bdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c71e5e14eea278e677331ec773383845da19f0ac3cdad0e771d4dd0ba422dc86
MD5 7c67cc5f1a22638f11a7330022317cc9
BLAKE2b-256 669febb2f15d74dbb6b358a7a03614ae980797a6ad336326d716f4943c4f50c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec26846a878c684daaf4abb3375970a02c3710968c494faa09674551978f15af
MD5 ddc68b5d54dbef250fed3600a0cbeeee
BLAKE2b-256 ff28e62c341a1229d0fceec641fe70317f49293e592b17c30aa97dd1696a0fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b4b73854e07ca9b7e7dbb835a1aec3c3426254cc86f8141ab4a9e9ab9ac32f8
MD5 ea2f7e6f48a6b4c326433754801833bc
BLAKE2b-256 b88367b859faa6032b5f937dee2cb2f625350662b808e5b600f32f96e8165d75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdf2f5fec8bc3a3ed076016ade9097783cd696545a9f278e2078763f7fb288ce
MD5 54e95504f8081cc781e48994e2423255
BLAKE2b-256 e5bccd8a6ad38bc0dcb9df45f58b7439f5565a054c85b6a954caa7ad932202c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 08427b9678d1b812d3794bd67ba6f88b2101e875e43d62499bbb5f74daf38edd
MD5 2c563e6136c74ee6cf053ca82032e78c
BLAKE2b-256 ba7744903dbf2efbd5f49ddd366b3ac21a6c7247bd49a66241a31f457a1aff74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12d10e53ffc4a74285661faecc688a891e39a62aa4200fdc23b2205c45627a2e
MD5 a104917023b0f0d45435c8dd6bba8b83
BLAKE2b-256 fe144402cb8a7aea7ac87a271812223df3769f28dfab4042ecd3b154e2bad953

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.5-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 795.3 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.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d13026c2b94ccd78a92e526cbbacd32ca873d5550255d7d5fbd46d7f90502c0f
MD5 2470df62f802957532402c0d459d3042
BLAKE2b-256 1f7099f4abb6998075003b1372012f895c79bb232bb60096993e8f64905b83c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.5-cp38-none-win32.whl
  • Upload date:
  • Size: 633.3 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.5-cp38-none-win32.whl
Algorithm Hash digest
SHA256 f25a8ff75cf385679a02d214af56dd91df672c0ea81638ec48f99cc86f4cf12a
MD5 5b288a6876e1e298e87eb5d34cfd5c75
BLAKE2b-256 aa2a1afa33a296350cfebc7360142ff0c0aa5d13fe26b1312ee43affc6648982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26aa936ac2a356fd20d278972ec75e3ba216c9fbcd28a91d1e53d419d0088670
MD5 a34e4ebac2a5b3ab2c116b674a882db8
BLAKE2b-256 afe6f53914f46f38ed36411d5cd38e9baf4166277c89f25aa4e8c7b7b62a5496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a06b154823fdde2e93500dcfec95b89d29bfb308fd92dc5f6539c2d89f135a6f
MD5 ec2fcc6a448867c7c63687580381ea5c
BLAKE2b-256 baaf895b73bd1d38f64824465ad07b9a77f93271039f2aa54e07ecebc9f31c61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e131880fcf6f92397b8691f10d8e637b434e1f5ba3d8355a594f38cb29ab3a3a
MD5 b7cf07deb0805b449ac365659a81926f
BLAKE2b-256 8e8d3e97b42947a911c79651471e5eb1df160bca2341d218becf9f2ba0724458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33c0ea8868e3d812d0e2322773225e4a99cd74c01d882d3192c53bb583193b12
MD5 6eb10e2ceb05a166c7d7c2a240a0021a
BLAKE2b-256 82ce04b681df9acfe541590fb8e661d4baa3a7f928197692124236943ca3b32c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12f99378c390378fd29aa1ed5ca732a9ca7fa402b31441211ad488be9dbeeec5
MD5 953238a06d7e92872ae16a6ad3a04c58
BLAKE2b-256 6d1a5dc2d3bfd5fa2a454047d0bd0e5a4c02e2ccd72f5a06d7e0f96bf99c4ba7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58d7f8382e44fe50fc4a7f872a914912330e84953ef78e339d2014c07fd71c7a
MD5 4c446881a6b821769939463d67ec11fd
BLAKE2b-256 de467a8347900e14978b6741185c748cb7270b2374f5adebbc4a3999f4f14f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8d270f0bc9e72a8d9509c30a8a81afeaa3e8a582d7a933628cd45d58cde7708
MD5 413435e085c0e6d3d2f944a54e98dcd3
BLAKE2b-256 72e6c9537d1e943b300fdc967dbae41b1fc56bbde3b2e9c39856cf4951610bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56e56928520afcfdb51091049b820b735519c1f920f0ab5a4a74cb2593f0a161
MD5 9c53bc50a48bf064d29742a60f26de2c
BLAKE2b-256 b851455866377819e852c8c88686097a42866ec1c573e89e3ac8c1d7cde86e5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0874cb752933d39cedf15a21c1c66a0b7b9a88ea2dd60aef1059bed3a53c89c7
MD5 41644469aad795b2ebea8cbbde0cba20
BLAKE2b-256 b37a7c11d50671abee40204a95c8ba02e527cdccd5cc457baa8c2ba2974d5082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c0914299b3bc9e1a687bed838605e72dfdbe612e8811c9ed511174354a41fe80
MD5 60f4274fbd55f41e723143a997e7c62d
BLAKE2b-256 455d9fd499520dbeb5e5377d37a8c0fd477009080acbbd9732c29b7b5f896d5d

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