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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

sea_query-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (982.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sea_query-0.2.3-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.3-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.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (974.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sea_query-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (980.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

sea_query-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (984.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sea_query-0.2.3-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.3-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.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (975.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sea_query-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (981.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

sea_query-0.2.3-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.3-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.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (975.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sea_query-0.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (980.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sea_query-0.2.3-cp312-none-win_amd64.whl (791.9 kB view details)

Uploaded CPython 3.12Windows x86-64

sea_query-0.2.3-cp312-none-win32.whl (630.2 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sea_query-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (979.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sea_query-0.2.3-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.3-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.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (977.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (977.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sea_query-0.2.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (857.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sea_query-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl (864.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sea_query-0.2.3-cp311-none-win_amd64.whl (789.7 kB view details)

Uploaded CPython 3.11Windows x86-64

sea_query-0.2.3-cp311-none-win32.whl (628.0 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sea_query-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (981.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sea_query-0.2.3-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.3-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.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (973.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (978.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sea_query-0.2.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (856.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sea_query-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl (862.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sea_query-0.2.3-cp310-none-win_amd64.whl (789.7 kB view details)

Uploaded CPython 3.10Windows x86-64

sea_query-0.2.3-cp310-none-win32.whl (628.0 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sea_query-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (981.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sea_query-0.2.3-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.3-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.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (973.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (978.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sea_query-0.2.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (856.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sea_query-0.2.3-cp39-none-win_amd64.whl (790.4 kB view details)

Uploaded CPython 3.9Windows x86-64

sea_query-0.2.3-cp39-none-win32.whl (628.2 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

sea_query-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (982.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sea_query-0.2.3-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.3-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.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (973.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (978.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sea_query-0.2.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (857.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sea_query-0.2.3-cp38-none-win_amd64.whl (790.3 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

sea_query-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (981.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sea_query-0.2.3-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.3-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.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (973.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

sea_query-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (979.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

sea_query-0.2.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for sea_query-0.2.3.tar.gz
Algorithm Hash digest
SHA256 5b3a801b53474c499786bb7241f74b169576de76ea7236296f24500cfc3c278d
MD5 7c699929f4ff5969c622e87fa67ac7f6
BLAKE2b-256 12adb233d0122d06e8865ccedeacd23f972d61ee749138cd3363ab902fe20163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8453234087b00b626b0159a5ab25c61d8c72a7b3231cfe924dc7eccec62fdebb
MD5 fb735cbd1fff01c447a93371304ed33c
BLAKE2b-256 0362ce431b206f38d7bc0f7e4a547b569bc4e7d320fab8b4c872beb693a7cb12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad0e5372dad038747d7ca9996465d6c051dbca7b94e958c0f479ca412f7e3d28
MD5 05204d5f4b8922a0ac76af1cdc2f04f7
BLAKE2b-256 3a10d26791611c7db1b029bcfdb2ee8bca107b7bd5633e574aea59ac037b17be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b8b187c0e3116391b6070f962c4ef5f0087a540391edc213e8b8bdb06e9d01f0
MD5 49f2b287952626b0f881f0431c72d2b0
BLAKE2b-256 9a668a493c44bcc37397fc5a49aed0ea592afd28145f5100ae562d1d197a867f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1833a19a485cf27571c981e2c944e2cc92c6de22117ba4d1ba2773baad462928
MD5 b2b125f9b5653a1355062cbd35ec4a40
BLAKE2b-256 299b0bb6f874cc27c6bf3eb3997dc9ad2ea76b5ca3678b8af529cb245ea5521f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a6637d39b4a4d92a1f460896881e7d6de816b3d9ab3add032949e21e1a45524
MD5 8b528520d3f45c6b2c4a138476712ea6
BLAKE2b-256 adb03cc8b7c2c30dc3ffdd055a08dd760d515a654f8f99e7539108912d6e067a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f733ce1f72c721107de9016fbb772ac3744b2d3a3398dfa2d8e3ff57299fdc3
MD5 9ad956de4572efe4f2fe7a8fc708c301
BLAKE2b-256 ae44db3b13e093558592ba38e224dfe61642f3c819ff4c797ad820cf4c9a6d29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 604d72cfebaf9983b52989e473c9978d7007ed38fbcc6c4aa594de69e08644c9
MD5 67df4e74579b8637026441ec33da60e1
BLAKE2b-256 9bdab6a37ff12b936b03284010a45d8afccb72eaaed7f47fd5296b1cd2fa383a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 72aa5cd4732f1f2c44e16c9c59a5265ea47fcd7177dabba5cb34fae5b095b2c5
MD5 736115d9a341ec0115f37807dad69d1f
BLAKE2b-256 00e98c6b2b07cef54799acdd85367515784798f5c3cba8d0b7d5907966753ab8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7208153fb55b314958abbb908337fbac03b1f9a72af13e62d6803ad858c44297
MD5 188e181ff505ca3ae647568edd063c58
BLAKE2b-256 386eb474d0293288bd6d10e61faa56a69c453c4de0ea1df96aeaa60cae4f7bed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f182e80d237a7cd17dd5f727c9594dbd11f7841d499a3a09f32e9cbb72dbcd5f
MD5 951c7c99686b32147078bd87aa3756bd
BLAKE2b-256 c07fc4fb46a5c9699771173fd8ff28c34812a1eb787b3321041e39810e237379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca7fcc4e8aaf33b09821d2d13e478595c28610a84b010295c287cd5d312a1197
MD5 62bfe79c7f1a79cb8095eed9277060db
BLAKE2b-256 b49b85bf16f56330c64fe8aee38400c84b90c7867744e44794e96d19d4294fc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6f0b2e0fdc65f01a049a4bcfb17cd479675266842cba58856c34b6b9895a23d
MD5 9a25dd35f64659241fbb6181c2bdcb91
BLAKE2b-256 1b40279f9147803ae92d079bb9696a809d1df7596d907df6e918eed1ea5ddb88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4bb0fbf7afbf648c419251d79f77618884d44f43e2ffbe1410ad728b77d3dd2
MD5 dc91f6d6bad554b042bc3802c824257c
BLAKE2b-256 4fd73dc38c8c4d34e5e77b02a4be6bd601c429f5f45eb157a4adafa2d7eaaa9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bbe5aa4d3fed6865f81bc746d83936d355d45cba2637fbc36eb9a09a489e221
MD5 b2b64a897341a77580382af494e0ccfd
BLAKE2b-256 1d4859ad1b664cd65392a4d24df282984fdcdf4945aa76638c130f31a242a60b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 693ac40321b18f9f334506d888b7cb8de721fbd514c0ac4076ee09274f430f89
MD5 ccecd4b8f5897ee64e51321ecff0f131
BLAKE2b-256 6c771a2d3288669f488c543882e93ebba5a3f76b05497d00c024ceb0662b089e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd83a0e20e7b54a292dd61015df69b26fdda1905832def7777097cfb5123f513
MD5 6f406a20b3de8a25287c58c5192cd816
BLAKE2b-256 c4d830e38d17f41e1398cdd065d1efeface3e66726d04d346d709687f39d9230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e79c0e063843d4d6db153879337932fa0b4d114235822a322e3a7072b2b637a
MD5 18bdc8ff9dfd0c07a04901385c8b2a84
BLAKE2b-256 05f7fcf651dde9c7f0452a62d02b6e1fa9ed8e4fd2fd62c01a60d539db3da392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ec40542fe374c889284efe35ce769ff3e349f9c45d09ddb229cad126df4cbfe
MD5 e565b6fc221b0a98fd43f75cee8307c6
BLAKE2b-256 1d987972b5c3fbdec97207b05cc9d3493d2d9fa8d3ab0cafaee34d93fb0c7a1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f131628200c85f3c02940b0d94d03a52585cf8f67c3015a139aec8203aa4a7a9
MD5 ee406b6f99ded66a29430eabc27f314e
BLAKE2b-256 56fa4593f0809c579a864098da06e826f534b1327a6ce31c982782558ac00c53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d7d442ece37cb7120f7053aceb7b13434afa027f0033b2f36f8dcb2bc9f9e3a
MD5 093be25366c2c1fcec26c2dad11d78c8
BLAKE2b-256 9b41e0e39a3ce2f3bd2a141f537291c9d73d499184fb63a849e848d1997070f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75f995fe746de735a7a2d997524a3b5edf0e82b195167c38fe307cabfa909587
MD5 30623f0d820a2d6e1e70df37bb2fe29c
BLAKE2b-256 20b77c682c18672ca13566a40cb02204b5fedbd7ab07f73b36c479c5ca72d200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1056f05caf04b014a1695a52f4eda6ba956e8a7ac4084b64580743ddae9e795e
MD5 431b00d00b397e393b22f578f1d0176c
BLAKE2b-256 7cccf372b7caab56b32a8c58e75e140d939e7bd239dcd353acbad530cfe11f15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27742f92d9b4afcf643558bc8b988db25a7e0b612eaf9e2dc70e483e485db589
MD5 a9935e9f3823df3df6efdae53976df3b
BLAKE2b-256 2401f9058eb72b9a01bbf4baf1004bf092ca49529ce7fdb4c97936417cba3ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 661eb46247ca99a34b42cdd474cdbca5ca0bf8ef4936c11f8cf035ee3c0b2daf
MD5 42b40843f02fe0131e254fcc076f172c
BLAKE2b-256 842bdc7f036c6086e0f5c2e7c9ba59a542dd1e84e5846850d1f90c7cad686d16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de0195df7af9cc72fc6f79a5cfa9e880d8182913044f70a907a84c82902fd6cd
MD5 34a8f66f8b2c8835f620366e63bca536
BLAKE2b-256 7a85e9b06b6017df26138019ed5f72eddf11d87ec4f8afd787aa12cd06b196fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73692b07bf0e27ececa5267580944aabaf480438ef10039ee5cadca3450f8d99
MD5 e67a749df50228c2e53c25d2c5a31343
BLAKE2b-256 ba996fb67001a38793e97bc5b86c09e0d46c56cf9f44a8db7b4ef76c169b121d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39ecd983768918115d4a26592e2ccbe5f57e8bfd8726bd19deb394c6b960bed7
MD5 32130474492064bade439eb2b4e0cfa0
BLAKE2b-256 ca04a80242d8b857403a5841534227e729372ad60233f14632c6210c41bc22c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0936de73c0c12a12ad498fa35bcf6cb005301ae7352128440a1db046382d2081
MD5 2856d160ba4cc6ca3acfe1d8cb034166
BLAKE2b-256 7b7ebcfe99f8039a153714622ca8eedc904cd54be5b558b3a8308d98ace17f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 ecb51447c197f0ffe940da572d5dcf7dc10a4614393ad7cf1a83e73242984547
MD5 77044fd85d2aa56875d4e196645ddeb3
BLAKE2b-256 ba2d5dc7b5b0dc24238494384d69ad13825ec17f0a97aad9d6850fb650827962

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.3-cp312-none-win32.whl
  • Upload date:
  • Size: 630.2 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.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 b1f055e3ee70188fc645fda6b04a9fda4198ca70c6f3ec635c49e3ea7ee9d3e1
MD5 986edde8ced98bbbb97dee0e123bf89b
BLAKE2b-256 d7fa791cb93b2c778dfe02efe83f18a6f2a8cc32ebf6db5f5d0d533d2b432789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33d07075828b51fe0ac07a297ccf3a6f304c4b5633c2241c1526a5ec4079927d
MD5 0018e51e064b098d527a8c9ccbcf6e60
BLAKE2b-256 5eaeeab645c57701d0b0ec0db5abe36f53b87aeb040b263dda5cc1aa49b43e25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 057e9805810289ff8c86f540891f097f707a6cde8994f8a99e5b89a1ddaa5b02
MD5 8d5a79dad62ecab7f18097ff1f0975a2
BLAKE2b-256 e67b2f02c3c71c576a6f991afde68b1b76aa7cac1f6fd1bbf629bed6d566d5b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cde2688daafe17347bf8c5df549df2c55f8e9cca00123e84115d00c654fbbc4f
MD5 c98aaada23b2967e56c41deb170836cb
BLAKE2b-256 cb7ac5271e40976eb4cb679fe517d41a0effad75b94344806cf4815ffceca056

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 651f364a82b9dfb2eea2b7c6bef725d10cec2fee2d35b766b8df60957ddd647f
MD5 10dadec6aebe49d332da4f20b4bc7255
BLAKE2b-256 e1feaa6cb230db4547dfdf017b33258dfd6f10f6e7d2b64455330879fcbc9080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6789777272eadbb540256897035a91d170fe3d7e80c0ed9df56ac03d140ef2c4
MD5 90ba18b1f413bcecfdc75812d5551fc5
BLAKE2b-256 11e6b19f95937bc32c54295935d90dd01fb63ad3b963498af9c9136a24eaf599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd728ca665292d71b1511973eb58ed29bee179d33f33c494ff3699874a563e7b
MD5 eeeea4a80baf746d501ecdb1bcd068da
BLAKE2b-256 b18d67fd2ad806a36226f8de7cab76ca54c892f4c460df34cb3cd2f3c6d4f2d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8ba6b8bf6664b629765420032344acb220bad6452dd0dc1da7943f80a411988
MD5 f72875254b62eded539fc1089fe5a67c
BLAKE2b-256 6c0be84e94a38249e3f427fdfb318f3b808ceafb923e8675c9a1bc03395a9c2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6adeb094452bab12f2d9946a07090d7fc966f295699bca24f4b5bc04dc7c6538
MD5 3819f66fde8c2cf49d4722e4566c4c71
BLAKE2b-256 351f15fd936492057fd037df2ce9dde7a9a9eb506c422dddaa6f9ce029c4c83e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6553803c0b16aa65aeb02b949eae25ef13f32550b4aa4912a601091d736fc16e
MD5 aa1ae56bfc73218279c277c704df65e7
BLAKE2b-256 f8f2977cff3064711d3e7ee12a444d5fff2e6ec930fe8e61d977284cc27f115a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a9655ff65ce9a1ec362ee3268c07e925a75f5449ca12d502df70099a3a5d3bbc
MD5 0813b5d9ed95549d4fd60abae9d6365f
BLAKE2b-256 99f4f8ba9e0464e55e198738597ce1b30f06b30e799b4f0697c0323055625303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2784abbd48316f4af4b3e71e15fddd7d627c911ca5f95c59bb036ee0ab0f25c0
MD5 152e73ccbdfd717e5de82f5e7aa9f6a9
BLAKE2b-256 0d5e49436aa6ee4f551d5ab2c66fbd2b7c75fd06f17b0c4b07b125f3144b1fa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 682cb46f4fec3c673bb2a287c3f433dd9b73acd7dc61a744f670e96f1214a450
MD5 47de216d2729da2d100537d0284411e5
BLAKE2b-256 7e99ce74cefd674cd849ebb38356da24d662c5cbe18e775ebce0202817bb1993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4f4aa779013c3a119cc6d0c4e1cfb815b595f35e2db1a9fe06dfd74ffc729601
MD5 1f0f56ada83daeefd9824f8014be2b15
BLAKE2b-256 c487adaf6ee610d569d1511152e0e3a5a5c5e236ee65dfc5ca897ec032e5ef5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.3-cp311-none-win32.whl
  • Upload date:
  • Size: 628.0 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.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ec71eaa882d54d3c44de627283aa60e20dbe40f11a83be22a9ede93022ce1adb
MD5 42e3c8982584adda61ec1622af14989e
BLAKE2b-256 cf7ec50efeb2ee7c1c942a303dfe83e2055b237025e5981d40d343c3980c3929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39176ae7be17b4d2939920cac99e41483d2d39e8954c9664b0b8097725413ff4
MD5 a8ee32a8ddadfbe90e69db15ee43c2ef
BLAKE2b-256 7250bc4c1390e39b7f3e6fc2c6c6bb0c66e9f6596d6f32480c67e655d0ceef8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 598b8626e5b06464d0b53aa5932d3b3a6729c3428f5b8bef436f4d42b197a102
MD5 cdcbe2ed42f1a02dee46157e5d11963b
BLAKE2b-256 8497844b506e531d887cbe3fc25fe27e0836c3f9c2f552a4b5d648af6c692bdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf83866a31b2ff5f928855c6e1e16dd92bd0cebf3d5b637a8a3d123daf3522b9
MD5 5f21698cd414618c2e24793116a4769a
BLAKE2b-256 6913e62a51f1cea3ce03fe717df0c67ce6dcc922d76f767deeff3cda5562eb1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bed9ef8fe084ce3226fe461711cf8a7361519a70b301c173321fa396f3002dc
MD5 f403543a1cd91e891e24199cb0758f2f
BLAKE2b-256 ff654203263885d9721f91813db746292224323b3ed297cec75afe1500ea2d8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa069f9f4d80f04ea143cf4e6eb0371ecb814efe58e3deeb45adc3aecad86970
MD5 b40b799befd4369615a2073701f88b4c
BLAKE2b-256 f7f26d23f11f33ab4675d741df581a4c8bcc1112247beea8a3453b72410cd6f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 50e4b74d7a669152feb3815a24e8facf05f22bd3ff37d4c1f9523e0eb85c2cc8
MD5 477491256302288d86f7f332ca1fb500
BLAKE2b-256 db70c2260781c714b470e190909c1061c562b4c15a55f8cb1881ab15f2e819d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d72ff05c1d33cd3cb453d6590ae0bb7cfc0dfd7649e179766bb9070a2427f9aa
MD5 7b6362b1ee5d2d359fd1761ffe08227c
BLAKE2b-256 355ace7eef461b450fb3ae89275834ea9dd038df996a9d7e71d6b4c1ed28f0d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d976c05c2dad58640d3e15b69b24302765270aeeafb750802192f14f72a71fa8
MD5 a333d553eae640b243e5a0541649c5a1
BLAKE2b-256 a218b0d3a29c691e74f2c2b6651ef9d845f96f36fe0042796a091967764cdb71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 329cf1cba7cbc2eb353a454217600a4aac7bc068766c25d34e0b977849300864
MD5 fc56f839a9488f19019ec7461c0991c0
BLAKE2b-256 356ce9abdb37c0a5a1401e3ce97d46807245e4e6bbeb835783541faf5b1ba83a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 881e70a63b198701aa6e68013c9868b274076ced07760a18016312dea1ab4496
MD5 d9b029216c8465895e4dfd5676297fb8
BLAKE2b-256 a6ea0ab1cfaa3b5a2fbfebfaa27eaf057a5cd80cfb5f6bcb9b165dee52d6a929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e26f062134851a44ba172caf9d6ad9c0f3998afac41a6c48fe924fb3550d97cc
MD5 44feba85098499555ee4f26c1476d92a
BLAKE2b-256 445c8237f7039e48b571da573d123447fb1f0aeec565263132dd4f2a39edf807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c8324bafdde0f6c89a8db73343d29f6fcc4d0759b117fddc4e25e740afdbaed2
MD5 61ffc484d3ce8655659c8cd213edf5c2
BLAKE2b-256 48d80a650bb779d0a557dd8344f22a94448974c4ae849d0fd633e851b085b8e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 b5c2ec057588001ec199b52c01c27350ded400a226a905c378fb0a9f69a72fe3
MD5 8d019c9f3e5eaf92f721b164fa44c0da
BLAKE2b-256 0ed9e56cd1679f9c3705332e68e69215f2a42e482d3239f4ccc13c8eb5bf6dff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.3-cp310-none-win32.whl
  • Upload date:
  • Size: 628.0 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.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 970f9074dac6b6dfc8ddcd13c20d26fc8811e417d8a9262afb94bd6d77a92855
MD5 3dd73643214602f73c2cda6f618f6489
BLAKE2b-256 b1e40beb656ea7152b4231bed0217b4b42f0840f8f54879387375d5b49190b3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbc51a65fb04c06bcece296717c5f4888a266df5d27fe6c116dc551a60679051
MD5 4e776f7539d27492763c12a14f76f316
BLAKE2b-256 1f50d3d28f91b09a953c8585fc461001c6adf96c76f836cc35a3a22a8aa9adb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5a6ca091b903ac7a2ed824a174aa6bc185e113871a6ae40614ed8a833592099
MD5 282f04e9b1f7ba643a55ea6563e3437f
BLAKE2b-256 f1ba0e8fb91d4baa44c629fd9014d532db8544f4061e1e9ebb842e233e93f83e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 46c090ef0317ba18c3d3f47c866e495ddff0572382ebbbcbd476db40958cf7a0
MD5 b587b78589e68291aed79c133efbbd95
BLAKE2b-256 faf0b5070a7be5ea0e708a157fc8960f939f13fd3431aae1391ece8839fea1ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbd8fd01426d22b3eeab42bd8e7bfdeea88c5b0587ae3277aec80de1508f54ad
MD5 5721a4c000b3294f1ecb01114f692974
BLAKE2b-256 07dce4882a15e4fd732b2c03bd1c6d6d04104542bed2c3c304d9bb064db891d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7e16789cb785166c147d6deedacfbeaeca72f629e18f9702f317a006def2732
MD5 6a100a9a44026703d4512b1856a0797a
BLAKE2b-256 f2e23dd90d394543164b14a8dd17e38c501565eaf560c1e773823d05ce7b32eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f5953fd0068974bd168ade58c1426c0338b931eba4d07eca68497141c997dee
MD5 cb82139377c1f8cddf1bf3cd8964bfa2
BLAKE2b-256 ffec730c2ff62f6d03425934d692f74ba8d905cd30c6387fa5eafb49bc2f9e09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16c69a766c96c45772b8a6a6ddb556abf978fccc354ffe3f1b39d1b98f7e5dbf
MD5 2de23b8fab68f2da27862891b5a06ed9
BLAKE2b-256 bcc843c3b3817954fefe23e70246308005ef085d8941d6242b8a7fd00a5b9f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6ac7c712fa67f5e1e016e129d42113025fe26d9c6458d1056f7989147bc7bf60
MD5 b8de7801381ec97057d79a0e6e265ea3
BLAKE2b-256 4b2ea6f19146901e2769497e9bb57f7d1b9ba7d22cfe5e9cb4a6e0e2b39b0d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e0ed9a9b33e4348d6aa9f27aeb669e13ee9cd2f1781737cd4d1d950aa3e777d
MD5 374ded852233c9ff7122b878ed174071
BLAKE2b-256 063037afc2dbe1096cc7941968d79a5ff49995f6a0e3caf24554b06cb1be8394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bc49c62453e1465082ccc829bdb8bb30aa0fd4f1f9b44e61ad0ba0b10db83559
MD5 de07ceb7b1c9f729e38bf5adbf8e8cd9
BLAKE2b-256 84e254ed7a50943e37d2b8c644c113b787e8fcf7b3c99271b9688e236c39d97b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cf28a0168d4400d97710e6ea9d326067c0040b587d6920bd4d4aa47f7c7adc5
MD5 ba3f57ed50c0ec9830b487e7f2dc9119
BLAKE2b-256 cdeb4e78dc6c6617da402ea2c8932e3a09e3c3e813bdb8ba6f69e404f79704dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.3-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 790.4 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.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3259f8366618ef475f37eaa8185cd1d7a9b2edb518b9684814ec2127e1f8e83f
MD5 6b8034ab233c0a2505769ad2a66b35f9
BLAKE2b-256 0ca44989ddbd86a600365777de5fda246aef95c09f72580885253ca729dcb51e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.3-cp39-none-win32.whl
  • Upload date:
  • Size: 628.2 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.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 9936e990afdadbdb1d238c7ab914b025d657ad710668b65e78ad677a2096dedd
MD5 16aa2eb45c0a1cfe10da8291d4846efb
BLAKE2b-256 4bb64bb33188cc5a5466e42f09784d478940290e4f76350bdeed76d829f85d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27f2b4af53b8cda3d9a2388379e0d3f4c2becf09aa23f6149a0b53dcdb666033
MD5 31d107c48ad5216f05d4cf0b1cc87d47
BLAKE2b-256 0adc7967a9b0437c8e7fd71d6e44fb6bdd7483dfb157a28fdef66ca695ca4025

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15996a565d28c3d3277b88e11e27eb63fbb74cd1ab3e26771b62f8f29114392f
MD5 845c483b87c84aa38c5fdb24a9d8ad8a
BLAKE2b-256 c6d46e3b1bf8ab23074fd5a85922b07cb18e11e658478f0dabea03b77c7131d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4a081f79a7e7197e59ed16d3553e46feb89ab7739bef52cbd43f95c5f9bc689
MD5 eff1f0967be28b3dcd6e33b1d63f671e
BLAKE2b-256 7925cd55f3cf0d8288d50d0f644c3020ae4d3cbadfd82ab524a5810be1c537f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39333ccc48a53f424ded1c27ce17cd04adfaac723a2d27691d650b409267fcc3
MD5 8239ab5f30fee917c4aa4641d604b43b
BLAKE2b-256 df299d696031d2b06a638353357a0ea85ad66c23c52c9786fb85bc1c06819452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2d4b4778b9f95e742875be897bb3f1f7819eaeb3d635e1cf63111c72fe845cc
MD5 ca79e3bc35c947c481d56309deb6b0c6
BLAKE2b-256 f63e8b67224bb704bc298a27bebb39fcc21add49a77c02c76a5c7b2ff692dd95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f2ab4db456f98a84ab7e355658ea78697bc35179bdba9c42ecc3509890bf413c
MD5 6409aacb6350d826f3a0de68827d3723
BLAKE2b-256 ec40ebab8625049ddfc60d7ef670b9734555db3392349391f963b96eed459996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3f66cc7ebdc7cc1ba85fb922b73268ef308cb0a37c20f68943c47f5eca78549
MD5 d5e20eb79b611fa4f7d77ef72c837d37
BLAKE2b-256 95dc47f1ebc383ae0b347e4e80b57428d788f4372d852c4ae565f536ea16b418

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39cdfa899b83194e0de330de2c87c2cbb681230ae80115ea4a3c00667e02c0d5
MD5 a603a192abdd69deb0df4d97600b8b73
BLAKE2b-256 d6713a4ab411ae41c9f97de74d4dad7e82387e76bea7db07fabdfe4ad42b1c6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc69b6b2ad8f5e648f62d8175021abea99d671b24ddd0d5ea33720c8219b3131
MD5 920425a7e4f45f8ba8bfdb40a5aa3beb
BLAKE2b-256 a5a2eb003fbc7958daa2cf9d54874e478e149208f1ea5aecf815c31d0591738b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed964ed1414e63f20a4e4f0386e6d61d5e6923c52b02009af8e5e85f5ba4eda3
MD5 1a17c3b4eb6e3b59e3552bbfa1be8a5a
BLAKE2b-256 31c1efd4cdf72076c2931a6592f89d58f2613097196343c112a48c17018630b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05bdd7e234525db22fcdff42fd31592247cba60438a74ca96d308c9c15c02505
MD5 d8af325c1542ec85b477d080d0ed20d2
BLAKE2b-256 3b9d118ff83e372de575d1ab53758ab88ed5f6e8d1a2c7c01387eb20fce00cc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.3-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 790.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.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 fa2662b0a9224459a461085bcdf535afe5dcf044fa144d26f23db118288ba6ee
MD5 c9ea82ab33e22f234330d35b50e16873
BLAKE2b-256 903efc6f3367f0210110f4fe71893c3f908ce04f553da26a64ae430f9c4b2aed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sea_query-0.2.3-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.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a4678a2381c2d58233e6270829606aa5f62a701a479bb9ad5f915c518d4796e2
MD5 1817093fde64a961f4bd94a0f0194789
BLAKE2b-256 734761d63eb0e20294a2e9e85f870cc5bcc1ba0ab8800ea74ed355d4246ec172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0fd48677d2c723ae5495e351fdcbcd4525e8004a08c36dfd9723bd0e7408eae
MD5 c6c422bf2ee9295b4453135dd777ffb0
BLAKE2b-256 32bbee9e1b6315e72e072506af47aefaa034973b149cc69def2aadb77d768301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b45f663a6b570be8b26714670620c00807eda2c7d5741b94659070306d64e292
MD5 f59fcdf5133173b8b5853dfd3440e7a7
BLAKE2b-256 eb52870b3c868371c5432cde1d4fe06ef4ca06aed286333a5e2ec01ddc02d944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 09802f3cf249e779d5707b6b265cefc82952b323cdaa38564ad3f6c5404132f1
MD5 1a29d17dba9fedf549ecc06ad329c17d
BLAKE2b-256 20dc2966fea1e3b7e45080696f37d78fb459a7121529376d9d1ca6b5dfdf9276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83dabdcfc0d45703d1cb4ff4dd8fcc5125ae054ec68e3bdf9f76ea207b594891
MD5 156402d04a550afb4e2107ba6c83fac5
BLAKE2b-256 51f5665dd3e8fd3966f30584bc24034082d7b893213733a1d67a9e9eb7982c3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7134fa8e6c757ed93bf7d6fd35b738bbcf450ccb42ee98318e42f34d57ae86d
MD5 bde47ba90ffaa1c8da08de362513679c
BLAKE2b-256 7bfd628ed6c9f19a31992682e302856dbfeede26fee97646249a814557d5e8cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd1f6638fe370b520f539bc61cc11a26bd6405b7f1d90ce6ed76de0017dbe42d
MD5 a11cfb486463a234ca84d118c06c9180
BLAKE2b-256 f47064fc6555499dd80ea64bfdc3aec97518f2f9b65c84bedc87bf4790d0f88f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78f4e2fa30400c24942719f05bf24a7aab71d91f905053a7d9ee6af8cbb5abd3
MD5 1d49ba367e68c38a32e9865b18b30543
BLAKE2b-256 a09f69489a7f5d259fef26f3801d4d56128af55f439095a255fa06dbb5408763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0923aba3dea4b0d0a652a81e1f6b1cf9e3be8d5602d73a7fbb096aa2476cb289
MD5 bd04f98602936ed2a72102438e22d31f
BLAKE2b-256 dd35f7aea2e18295fdc38dfc621bc4c37f6252db2fcc753628133302c0fa29b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da22a8accb2c3bd4098dd71a33f44997d6dbb63fff800ba8a9cadd61cfd9d5b8
MD5 a02d490835e0259b1c2871d292a54171
BLAKE2b-256 03639b534b9c9ad0f11d0948d053ed97d110b65baff41e06fc437eb441de134e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sea_query-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec407984e5c0eb3906d6b415271583859e21fd584f2f2892d6b51894bf69dc1e
MD5 dc0535b48b85f3e0498a27d34a456c26
BLAKE2b-256 c244f8371dd21705a76b84aa068422f78e4e83f50fd41e55a917286062443291

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