Skip to main content

RapidQuery is the fastest, full-feature, and easy-to-use Python SQL query builder written in Rust.

Project description

RapidQuery

RapidQuery: High-Performance SQL Query Builder for Python

RapidQuery is a powerful SQL query builder library designed for Python, combining the simplicity of Python with the raw speed of Rust. Build complex SQL queries effortlessly and efficiently, with a library that prioritizes both performance and ease of use.

Install

You can use PIP:

pip3 install rapidquery

Or you can use UV (recommended):

uv add rapidquery

Why RapidQuery?

Features:

  • 🧶 Thread safe: It's completely thread-safe and uses locks in internal to prevent concurrency problems.
  • ⚡ Blazing High Performance: Leveraging the power of Rust under the hood, RapidQuery ensures your query building process is as fast as possible.
  • 🛡️ SQL Injection Protection: Built-in security measures to prevent SQL injection attacks by default.
  • 📝 Intuitive Pythonic API: Write clean, readable code with an API that feels natural to Python developers.
  • 🔥 Built on Solid Foundations: RapidQuery is built with Rust and powered by the robust SeaQuery crate, bringing enterprise-grade reliability and performance to your Python applications.

Why RapidQuery Was Created
In a landscape filled with SQL libraries, we noticed a critical gap: performance was often an afterthought. That's why we built RapidQuery with speed as our primary and enduring focus.

Backends

RapidQuery supports PostgreSQL, MySQL, and SQLite. These are referred to as backends. When building SQL statements, you must specify your target backend.

Usage

  1. Core Concepts
    1. Value
    2. Expr
    3. Statement Builders
  2. Query Statements
    1. Query Select
    2. Query Insert
    3. Query Update
    4. Query Delete
    5. Query With
  3. More About Queries
    1. Custom Function
  4. Schema Statements
    1. Table Create
    2. Table Alter
    3. Table Drop
    4. Table Rename
    5. Table Truncate
    6. Index Create
    7. Index Drop
  5. Advanced Usage
    1. More About Column References
    2. More About TableName
    3. More About Expr

Core Concepts

Value

Bridges Python types, Rust types, and SQL types for seamless data conversion.

This class handles validation, adaptation, and conversion between different type systems used in the application stack.

[!NOTE]
this class is immutable and frozen.

[!TIP]
Important: Value is lazy. This means it keeps your value and never converts it to Rust and then SQL until needed.

Expr

Represents a SQL expression that can be built into SQL code.

This class provides a fluent interface for constructing complex SQL expressions in a database-agnostic way. It supports arithmetic operations, comparisons, logical operations, and database-specific functions.

The class automatically handles SQL injection protection and proper quoting when building the final SQL statement.

[!NOTE]
Expr is immutable, so by calling each method you will give a new instance of it which includes new change(s).

Basic

import rapidquery as rp

rp.Expr(25)                         # -> 25  (literal value)
rp.Expr("Hello")                    # -> 'Hello'  (literal value)
rp.Expr(rq.Value('World'))          # -> 'World'  (literal value)

rp.Expr.col("id")                             # -> "id" (column reference)
rp.Expr.col("users.name")                     # -> "users"."name" (column reference)
rp.Expr(rq.ColumnRef("name", table="users"))  # -> "users"."name" (column reference)

Comparisons

rq.Expr.col("status") == "active"  # -> "status" == 'active'
rq.Expr.col("age") > 16           # -> "age" > 16

# Note that `rq.all` is different from built-in `all`
rq.all(
    rq.Expr.col("age") >= 18,
    rq.Expr.col("subscription").is_null(), # same as rq.Expr.col("subscription").is_(Expr.null())
    rq.Expr.col("status").in_(["pending", "approved", "active"])
)    # -> "age" >= 18 AND "subscription" IS NULL AND "status" IN ('pending', 'approved', 'active')

# Note that `rq.any` is different from built-in `any`
rq.any(
    rq.Expr.col("is_admin").is_(True),
    rq.Expr.col("is_moderator").is_not_null(), # same as rq.Expr.col("subscription").is_not(Expr.null())
    rq.Expr.col("price").between(10.00, 50.00)
)    # -> "is_admin" IS TRUE OR "is_moderator" IS NOT NULL OR "price" BETWEEN 10.00 AND 50.00

Best Practices

  • Always use Expr.col() for column references: This ensures proper quoting for your target database
# Column reference (properly quoted identifier)
rq.Expr.col("user_name")  # → "user_name"

# String literal (value)
rq.Expr("user_name")      # → 'user_name'
  • Use rapidquery.all() and rapidquery.any() for logical combinations: More readable than chaining & and | operators
# Good
all(condition1, condition2, condition3)
   
# Less readable
condition1 & condition2 & condition3
  • Be careful with Expr.custom(): It bypasses all safety checks
# Dangerous - vulnerable to SQL injection
user_input = "'; DROP TABLE users; --"
Expr.custom(f"name = '{user_input}'")

# Safe
Expr.col("name") == user_input

Statement Builders

Statements are divided into 2 categories: QueryStatement, and SchemaStatement.

Some statements like Select, Update, Delete, Insert, ... are QueryStatement. Other statements like Table, AlterTable, Index, ... are SchemaStatement.

QueryStatement class interface is:

class QueryStatement:
    """Subclass of query statements."""

    def build(self, backend: _BackendName, /) -> tuple[str, tuple[Value, ...]]:
        """Build the SQL statement with parameter values."""
        ...

    def to_sql(self, backend: _BackendName, /) -> str:
        """
        Build a SQL string representation.

        **This method is unsafe and can cause SQL injection.** use `.build()` method instead.
        """
        ...

SchemaStatement class interface is:

class SchemaStatement:
    """Subclass of schema statements."""

    def to_sql(self, backend: _BackendName, /) -> str:
        """Build a SQL string representation."""
        ...

Query Select

Use rapidquery.SelectStatement type to generate SELECT statements.

import rapidquery as rq

stmt = (
    rq.SelectStatement()
    .columns("character", "fonts.name")
    .from_table("characters")
    .join("fonts", rq.Expr.col("characters.font_id") == rq.Expr.col("fonts.id"), "LEFT")
    .where(rq.Expr.col("size_w").in_([3, 4]))
    .where(rq.Expr.col("characters").like("A%"))
)
print(stmt.to_sql("postgres"))
# SELECT "character" AS "character", "fonts"."name" AS "name" FROM "characters"
# LEFT JOIN "fonts" ON "characters"."font_id" = "fonts"."id"
# WHERE "size_w" IN (3, 4) AND "characters" LIKE 'A%'

print(stmt.to_sql("mysql"))
# SELECT `character` AS `character`, `fonts`.`name` AS `name` FROM `characters`
# LEFT JOIN `fonts` ON `characters`.`font_id` = `fonts`.`id`
# WHERE `size_w` IN (3, 4) AND `characters` LIKE 'A%'

print(stmt.to_sql("sqlite"))
# SELECT "character" AS "character", "fonts"."name" AS "name" FROM "characters"
# LEFT JOIN "fonts" ON "characters"."font_id" = "fonts"."id" 
# WHERE "size_w" IN (3, 4) AND "characters" LIKE 'A%'

Query Insert

Use rapidquery.InsertStatement type to generate INSERT statements.

import rapidquery as rq

stmt = (
    rq.InsertStatement("glyph")
    .values(aspect=3.14, image="A4")
    .on_conflict(rq.OnConflict("id").do_update("image"))
)

print(stmt.to_sql("postgres"))
# INSERT INTO "glyph" ("aspect", "image") VALUES (3.14, 'A4')
# ON CONFLICT ("id") DO UPDATE SET "image" = "excluded"."image"
# 
print(stmt.to_sql("mysql"))
# INSERT INTO `glyph` (`aspect`, `image`) VALUES (3.14, 'A4')
# ON DUPLICATE KEY UPDATE `image` = VALUES(`image`)

print(stmt.to_sql("sqlite"))
# INSERT INTO "glyph" ("aspect", "image") VALUES (3.14, 'A4')
# ON CONFLICT ("id") DO UPDATE SET "image" = "excluded"."image"

Query Update

Use rapidquery.UpdateStatement type to generate UPDATE statements.

import rapidquery as rq

stmt = (
    rq.UpdateStatement("glyph")
    .values(aspect=1.23, image="123")
    .where(rq.Expr.col("id") == 1)
)

print(stmt.to_sql("postgres"))
# UPDATE "glyph" SET "aspect" = 1.23, "image" = '123' WHERE "id" = 1

print(stmt.to_sql("mysql"))
# UPDATE `glyph` SET `aspect` = 1.23, `image` = '123' WHERE `id` = 1

print(stmt.to_sql("sqlite"))
# UPDATE "glyph" SET "aspect" = 1.23, "image" = '123' WHERE "id" = 1

Query Delete

Use rapidquery.DeleteStatement type to generate DELETE statements.

import rapidquery as rq

stmt = rq.DeleteStatement("glyph").where(
    rq.any(
        rq.Expr.col("id") < 1,
        rq.Expr.col("id") > 10,
    )
)

print(stmt.to_sql("postgres"))
# DELETE FROM "glyph" WHERE "id" < 1 OR "id" > 10

print(stmt.to_sql("mysql"))
# DELETE FROM `glyph` WHERE `id` < 1 OR `id` > 10

print(stmt.to_sql("sqlite"))
# DELETE FROM "glyph" WHERE "id" < 1 OR "id" > 10

Query With

We have two types here: rapidquery.WithClause and rapidquery.WithQuery.

         WithQuery
             |
|------------------------|
WITH [... CTEs ...] QUERY
|------------------|
         |
     WithClause

As you can see, rapidquery.WithClause includes common table expressions (CTEs), and rapidquery.WithQuery includes rapidquery.WithClause and the final query.

import rapidquery as rq

clause = (
    rq.WithClause()
    .cte(
        "users_count",
        (
            rq.UpdateStatement("users")
            .values(amount=rq.Expr.col("amount") + 10)
            .where(rq.Expr.col("id") > 50)
            .returning(rq.Returning(rq.Expr.val(1)))
        ),
    )
    .cte(
        "teams_count",
        (
            rq.UpdateStatement("teams")
            .values(amount=rq.Expr.col("amount") + 10)
            .where(rq.Expr.col("id") > 50)
            .returning(rq.Returning(rq.Expr.val(1)))
        ),
    )
)

users_count_select = rq.SelectStatement(rq.Func.count(rq.Expr.asterisk())).from_table("users_count")
teams_count_select = rq.SelectStatement(rq.Func.count(rq.Expr.asterisk())).from_table("teams_count")

query: WithQuery = clause.query(
    rq.SelectStatement(
        users_count_select.label("users"),
        teams_count_select.label("teams"),
    )
)
query.to_sql("postgres")
# WITH 
#   "users_count" AS (
#       UPDATE "users" SET "amount" = "amount" + 10 WHERE "id" > 50 RETURNING 1
#   ) ,
#   "teams_count" AS (
#       UPDATE "teams" SET "amount" = "amount" + 10 WHERE "id" > 50 RETURNING 1
#   )
#   SELECT
#       (SELECT COUNT(*) FROM "users_count") AS "users",
#       (SELECT COUNT(*) FROM "teams_count") AS "teams"

Custom Functions

For working with functions in RapidQuery, you have to use Func class. A lot of functions such as SUM, AVG, MD5, ... is ready to use. For example:

stmt = rq.SelectStatement(rq.Func.sum(rq.Expr.col("amount")))
stmt.to_sql("postgres")
# SELECT SUM("amount")

But for functions not provided by the library, you can define custom functions. Custom functions can be defined using the Func constructor:

stmt = rq.SelectStatement(rq.Func("CUSTOM", 1, 'hello'))
stmt.to_sql("postgres")
# SELECT CUSTOM(1, 'hello')

Table Create

rapidquery.Table represents a complete database table definition. Use it to generate CREATE TABLE statements.

import rapidquery as rq

characters = rq.Table(
    "characters",
    rq.Column("id", rq.sqltypes.Integer(), primary_key=True, auto_increment=True),
    rq.Column("font_size", rq.sqltypes.Integer(), nullable=False),
    rq.Column("character", rq.sqltypes.String(), nullable=False),
    rq.Column("size_w", rq.sqltypes.Integer(), nullable=False),
    rq.Column("size_h", rq.sqltypes.Integer(), nullable=False),
    rq.Column("font_id", rq.sqltypes.Integer(), default=None),
    rq.ForeignKey(["font_id"], ["fonts.id"], on_delete="CASCADE", on_update="CASCADE"),
    rq.Index("idx_character", ["character"]),
    if_not_exists=True,
)

print(characters.to_sql("postgresql"))
# CREATE TABLE IF NOT EXISTS "characters" (
#   "id" serial PRIMARY KEY,
#   "font_size" integer NOT NULL,
#   "character" varchar NOT NULL,
#   "size_w" integer NOT NULL,
#   "size_h" integer NOT NULL,
#   "font_id" integer DEFAULT NULL,
#   FOREIGN KEY ("font_id") REFERENCES "fonts" ("id") ON DELETE CASCADE ON UPDATE CASCADE
# );
# CREATE INDEX IF NOT EXISTS "idx_character" ON "characters" ("character")

Table Alter

Use rapidquery.AlterTable type to generate ALTER TABLE statements.

import rapidquery as rq

stmt = rq.AlterTable(
    "fonts",
    [
        rq.AlterTableAddColumnOption(
            rq.Column(
                "new_col",
                rq.sqltypes.Integer(),
                nullable=False,
                default=100,
            )
        ),
        rq.AlterTableRenameColumnOption("hello", "world"),
    ],
)
print(stmt.to_sql("mysql"))
# ALTER TABLE `fonts` ADD COLUMN `new_col` int NOT NULL DEFAULT 100,
# RENAME COLUMN `hello` TO `world`

Table Drop

Use rapidquery.DropTable type to generate DROP TABLE statements.

import rapidquery as rq

stmt = rq.DropTable("glyph", if_exists=True)
print(stmt.to_sql("mysql"))
# DROP TABLE IF EXISTS `glyph`

Table Rename

Use rapidquery.RenameTable type to generate RENAME TABLE statements.

import rapidquery as rq

stmt = rq.RenameTable("old", "new")

print(stmt.to_sql("sqlite"))
# ALTER TABLE "old" RENAME TO "new"

print(stmt.to_sql("mysql"))
# RENAME TABLE `old` TO `new`

Table Truncate

Use rapidquery.TruncateTable type to generate TRUNCATE TABLE statements.

import rapidquery as rq

stmt = rq.TruncateTable("old")

print(stmt.to_sql("mysql"))
# TRUNCATE TABLE `old`

Index Create

import rapidquery as rq

idx = rq.Index("idx_glyph_aspect", ["aspect"], "glyph")

print(idx.to_sql("postgres"))
# CREATE INDEX "idx_glyph_aspect" ON "glyph" ("aspect")

Index Drop

Use rapidquery.DropIndex type to generate DROP INDEX statements.

import rapidquery as rq

idx = rq.DropIndex("idx_glyph_aspect", "glyph")

print(idx.to_sql("postgres"))
# DROP INDEX "idx_glyph_aspect"

More About Column Reference

Let's learn some tricks about column references.

In RapidQuery, we have something called ColumnRef, which represents a reference to a database column with optional table and schema qualification.

This type is a final type, which means you cannot use it as subclass.

In generating statements, we have a lot of situations that you need to work with column references.

❗ The Trick
For the parameters which accept column references, you have 4 ways:

  1. Use ColumnRef:
col_ref = rq.ColumnRef("id", "characters")
# OR
col_ref = rq.ColumnRef.parse("characters.id")

stmt = rq.SelectStatement().columns(col_ref)
# SELECT "characters"."id" AS "id"
  1. Use str: The easiest way
stmt = rq.SelectStatement().columns("characters.id")
# SELECT "characters"."id" AS "id"
  1. Use __column_ref__ property: developer-friendly and expandable way.
class IdColumnProperty:
    @property
    def __column_ref__(self):
        # Can return ColumnRef or str
        return "characters.id"

class IdColumnClassVar:
    __column_ref__ = "characters.id"

stmt = rq.SelectStatement().columns(IdColumnProperty())
# SELECT "characters"."id" AS "id"

stmt = rq.SelectStatement().columns(IdColumnClassVar)
# SELECT "characters"."id" AS "id"
  1. Use Column: It's possible because Column has __column_ref__ property.
id = Column("id", rq.Integer())

stmt = rq.SelectStatement().columns(id)
# SELECT "id" AS "id"

More About TableName

Let's learn some tricks about table name.

In RapidQuery, we have something called TableName, which represents a table name reference with optional schema, database, and alias.

This type is a final type, which means you cannot use it as subclass.

In generating statements, we have situations that you need to specify table name.

❗ The Trick
For the parameters which accept table name, you have 4 ways:

  1. Use TableName:
tbl = rq.TableName("users", schema="archive")
# OR
tbl = rq.TableName.parse("archive.users")

stmt = rq.DeleteStatement(tbl)
# DELETE FROM "archive"."users"
  1. Use str: The easiest way
stmt = rq.DeleteStatement("archive.users")
# DELETE FROM "archive"."users"
  1. Use __table_name__ property: developer-friendly and expandable way.
class UsersProperty:
    @property
    def __table_name__(self):
        # Can return TableName or str
        return "archive.users"


class UsersClassVar:
    __table_name__ = "archive.users"


stmt = rq.DeleteStatement(UsersProperty())
# DELETE FROM "archive"."users"

stmt = rq.DeleteStatement(UsersClassVar)
# DELETE FROM "archive"."users"
  1. Use Table: It's possible because Table has __table_name__ property.
users = Table(
    "archive.users",
    ...
)

stmt = rq.DeleteStatement(users)
# DELETE FROM "archive"."users"

More About Expr

You learned here about Expr type.

❗ The Trick
This 2 tricks are notable and very good to know.

  1. First, like ColumnRef and TableName, Expr supports __expr__ property, which should always return Expr.
class TextClause:
    def __init__(self, expr: str) -> None:
        self.expr = expr

    @property
    def __expr__(self) -> rq.Expr:
        return rq.Expr.custom(self.expr)


stmt = rq.SelectStatement(TextClause("WOW!"))
# SELECT WOW!
  1. Second, same as ColumnRef, Expr also supports __column_ref__ property.

Performance

Benchmarks

Benchmarks run on Linux 6.18.12-1-MANJARO x86_64 with CPython 3.14. Your results may vary.

Iterations per test: 100,000
Python version: 3.14.3

📊 SELECT Query Benchmark
----------------------------------------------------------------------
Library              Time (ms)       vs Fastest      Status
----------------------------------------------------------------------
RapidQuery               245.44     1.00x (FASTEST) 🏆
PyPika                  4327.18     17.63x slower
SQLAlchemy              8818.33     35.93x slower
----------------------------------------------------------------------

📊 INSERT Query Benchmark
----------------------------------------------------------------------
Library              Time (ms)       vs Fastest      Status
----------------------------------------------------------------------
RapidQuery               640.63     1.00x (FASTEST) 🏆
PyPika                  4655.51     7.27x slower
SQLAlchemy              7085.74     11.06x slower
----------------------------------------------------------------------

📊 UPDATE Query Benchmark
----------------------------------------------------------------------
Library              Time (ms)       vs Fastest      Status
----------------------------------------------------------------------
RapidQuery               557.21     1.00x (FASTEST) 🏆
PyPika                  4488.96     8.06x slower
SQLAlchemy             11839.85     21.25x slower
----------------------------------------------------------------------

📊 DELETE Query Benchmark
----------------------------------------------------------------------
Library              Time (ms)       vs Fastest      Status
----------------------------------------------------------------------
RapidQuery               441.38     1.00x (FASTEST) 🏆
PyPika                  4517.16     10.23x slower
SQLAlchemy              7924.52     17.95x slower
----------------------------------------------------------------------

Known Issues

Unmanaged Rust panic output in building SQL

The library may encounter errors during SQL query construction, which are correctly raised as RuntimeError exceptions. For instance, this occurs when using a function that isn't supported by your target database. While this error-raising behavior is intentional and logical, the issue is that unmanaged Rust panic information is also printed to stderr. Currently, there is no way to suppress or manage this panic output. We are working to resolve this problem as much as possible in future updates.

>>> import rapidquery as rq
>>> stmt = rq.TruncateTable("users")
>>> print(stmt.to_sql("sqlite"))

thread '<unnamed>' (14206) panicked at sea-query-0.32.7/src/backend/sqlite/table.rs:58:9:
Sqlite doesn't support TRUNCATE statement
Traceback (most recent call last):
  File "<python-input-3>", line 1, in <module>
    print(stmt.to_sql("sqlite"))
          ~~~~~~~~~~~^^^^^^^^^^
RuntimeError: build failed

Missing __init__ Calls

If a RapidQuery object is instantiated without calling its __init__ method (e.g., via certain serialization tricks or __new__ alone), the internal Rust pointer will be null. Accessing methods on such objects will cause an unmanaged Rust panic. Always use the provided constructors.

Join conditions are not optional

Currently, JOIN operations require an explicit ON or USING condition.

Supported Platforms

Pre-built wheels are available for the following platforms and Python interpreters:

Linux (manylinux)

Architecture Python Versions
x86_64 3.10 – 3.14, 3.14t, PyPy 3.11, GraalPy 3.11/3.12
i686 3.10 – 3.14, 3.14t, PyPy 3.11
aarch64 3.10 – 3.14, 3.14t, PyPy 3.11, GraalPy 3.11/3.12
armv7 3.10 – 3.14, 3.14t
s390x 3.10 – 3.14, 3.14t
ppc64le 3.10 – 3.14, 3.14t
riscv64 3.10 – 3.14, 3.14t

Linux (musllinux 1.1)

Architecture Python Versions
x86_64 3.10 – 3.14, 3.14t, PyPy 3.11
aarch64 3.10 – 3.14, 3.14t, PyPy 3.11
armv7 3.10 – 3.14, 3.14t, PyPy 3.11

Windows

Architecture Python Versions
x64 3.10 – 3.14, 3.14t
x86 3.10 – 3.14, 3.14t

macOS

Architecture Python Versions
x86_64 3.10 – 3.14, 3.13t, 3.14t, PyPy 3.11
aarch64 (Apple Silicon) 3.10 – 3.14, 3.13t, 3.14t, PyPy 3.11

A source distribution (sdist) is also published for platforms not listed above, which requires a Rust nightly toolchain to build from source.

TODO

  • Write tests
  • Update & automate workflows
  • Write CTE
  • Complete README.md
  • Bump version to 0.1.0
  • Complete backend-only functions

License

This repository is licensed under the GNU GPLv3 License

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

rapidquery-0.1.0.tar.gz (171.4 kB view details)

Uploaded Source

Built Distributions

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

rapidquery-0.1.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

rapidquery-0.1.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

rapidquery-0.1.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

rapidquery-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rapidquery-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (972.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rapidquery-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rapidquery-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (944.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rapidquery-0.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

rapidquery-0.1.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded graalpy312manylinux: glibc 2.17+ x86-64

rapidquery-0.1.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (965.0 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ ARM64

rapidquery-0.1.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded graalpy311manylinux: glibc 2.17+ x86-64

rapidquery-0.1.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (965.4 kB view details)

Uploaded graalpy311manylinux: glibc 2.17+ ARM64

rapidquery-0.1.0-cp314-cp314t-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

rapidquery-0.1.0-cp314-cp314t-win32.whl (889.2 kB view details)

Uploaded CPython 3.14tWindows x86

rapidquery-0.1.0-cp314-cp314t-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

rapidquery-0.1.0-cp314-cp314t-musllinux_1_1_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

rapidquery-0.1.0-cp314-cp314t-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

rapidquery-0.1.0-cp314-cp314t-manylinux_2_31_riscv64.whl (993.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (980.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (962.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rapidquery-0.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

rapidquery-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl (931.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rapidquery-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl (993.5 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

rapidquery-0.1.0-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

rapidquery-0.1.0-cp314-cp314-win32.whl (894.0 kB view details)

Uploaded CPython 3.14Windows x86

rapidquery-0.1.0-cp314-cp314-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

rapidquery-0.1.0-cp314-cp314-musllinux_1_1_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

rapidquery-0.1.0-cp314-cp314-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

rapidquery-0.1.0-cp314-cp314-manylinux_2_31_riscv64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

rapidquery-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rapidquery-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rapidquery-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

rapidquery-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (985.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rapidquery-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (967.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rapidquery-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rapidquery-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (936.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rapidquery-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (999.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rapidquery-0.1.0-cp313-cp313t-macosx_11_0_arm64.whl (934.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

rapidquery-0.1.0-cp313-cp313t-macosx_10_12_x86_64.whl (999.3 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

rapidquery-0.1.0-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

rapidquery-0.1.0-cp313-cp313-win32.whl (899.7 kB view details)

Uploaded CPython 3.13Windows x86

rapidquery-0.1.0-cp313-cp313-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

rapidquery-0.1.0-cp313-cp313-musllinux_1_1_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

rapidquery-0.1.0-cp313-cp313-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

rapidquery-0.1.0-cp313-cp313-manylinux_2_31_riscv64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

rapidquery-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rapidquery-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rapidquery-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rapidquery-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (990.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rapidquery-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (974.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rapidquery-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rapidquery-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (945.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rapidquery-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rapidquery-0.1.0-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

rapidquery-0.1.0-cp312-cp312-win32.whl (901.2 kB view details)

Uploaded CPython 3.12Windows x86

rapidquery-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

rapidquery-0.1.0-cp312-cp312-musllinux_1_1_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

rapidquery-0.1.0-cp312-cp312-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

rapidquery-0.1.0-cp312-cp312-manylinux_2_31_riscv64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

rapidquery-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rapidquery-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rapidquery-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rapidquery-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (992.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rapidquery-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (975.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rapidquery-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rapidquery-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (946.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rapidquery-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rapidquery-0.1.0-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

rapidquery-0.1.0-cp311-cp311-win32.whl (903.1 kB view details)

Uploaded CPython 3.11Windows x86

rapidquery-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

rapidquery-0.1.0-cp311-cp311-musllinux_1_1_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

rapidquery-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

rapidquery-0.1.0-cp311-cp311-manylinux_2_31_riscv64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

rapidquery-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rapidquery-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rapidquery-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rapidquery-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (989.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rapidquery-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (971.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rapidquery-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rapidquery-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (944.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rapidquery-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rapidquery-0.1.0-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

rapidquery-0.1.0-cp310-cp310-win32.whl (902.7 kB view details)

Uploaded CPython 3.10Windows x86

rapidquery-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

rapidquery-0.1.0-cp310-cp310-musllinux_1_1_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

rapidquery-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

rapidquery-0.1.0-cp310-cp310-manylinux_2_31_riscv64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

rapidquery-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rapidquery-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rapidquery-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rapidquery-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (989.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rapidquery-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (971.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rapidquery-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rapidquery-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (944.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rapidquery-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file rapidquery-0.1.0.tar.gz.

File metadata

  • Download URL: rapidquery-0.1.0.tar.gz
  • Upload date:
  • Size: 171.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for rapidquery-0.1.0.tar.gz
Algorithm Hash digest
SHA256 ae0506a7f5e90679bba3cdc7118d7d6530dc7fbaec8c74b99922484cef5ba653
MD5 96b4aeadb05ba9bf93a1713b3ca2e37e
BLAKE2b-256 9170abae191e125515baeb9eb3af62ed1e2107eaaefea5460301585e6bc5642e

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d69fe972d425071cace3a56d55f03e16ae0bd71ebdda80d5283ec64bc934be30
MD5 e23d560156a1f983f3d41d739b965411
BLAKE2b-256 ebbc88b5b18dbf9f2c804b8c78fb918c4e199eb8612ac81413eaded28c33cb76

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3b5fedb61df0fb1d950b4fe2725318161d22976713602ccec1ac2b13c8754952
MD5 7422420fe22ebb557b68a1ac4f30dcbc
BLAKE2b-256 939e0109336b9deace0e48ab13a2972d2fb9b0074e5277a510332ce704becd5c

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 094b398f9afa3c3267041575c30e6d682a096b1917d7d00b2ee42a81eea38901
MD5 fc7bb4b4c2d82e991622af8f6eec1631
BLAKE2b-256 89c967ede2b9da4aefbb6761df55f1a33e057ae4a71ebd9cd3f8bbe6dd2e118c

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28ee11ace0595952e63cde38bf86eadb0599635a51e12cf8165f4acfc8d4d93a
MD5 eb9a01ac86da40175530acf4d183066d
BLAKE2b-256 1930fdf187e2372290b4bded35e7d0f0d940d79b1564757c08efabdb0d4a2940

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3da9f6c33089d2eeb887390201eb24d869c17a028d0e2afc7a454679f8773ad
MD5 fbcc621f00799c069894448351eec5b1
BLAKE2b-256 b32ba5492c1b68fe29ebf38577557db56f0de6e1a3337c375e6688c571fa20a9

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cdc89624ec273634e7086371b1aad9c2fbe805ee0734e7bc1165a85dca314537
MD5 7c7f7ac9dbcbaca558a3ca8e1a8d97c6
BLAKE2b-256 b7ea9733b930ec86513011c223b0b03f9a3616caa7fa4dea08ef0dc9c5f48c15

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58e332df67c85315309221391acbe654c79824022c225f6ba679038d413fa50f
MD5 c661465c9e2a8759888a9e58932ffbfd
BLAKE2b-256 cde2d98c1f1f8ac57fb51d0b999440497c4fd141cbe69e18c8ff82b72a9a00ad

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cbbaa3670d1b0727df7564d547f956f30472c9f5a025fee0f16f697a007b03e8
MD5 5066da90d6cd073ec0f84519c8080aaf
BLAKE2b-256 dd0e2a6a49f7068a2192baaa5153630c47a1e9e507b61e22ac14f8b5e4394e83

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd0e4f0e906c7073b29cb1f3f395106dd08fb3aa3ea81230bd26e72801cd1704
MD5 edb6a6971ade8d23a84eca1e665a8e7a
BLAKE2b-256 d98b4ca8aac39094dc6e5542aecb577b1f1e6d804e4be85a2d5834f26fea191d

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21775cca0ceffb9621a5eeed5d939bb815f8cc642ffb5fdc1efc19fabdac1e71
MD5 cadc1282de97fed6624f61dc43e1ad6e
BLAKE2b-256 6f0b63b67e10c0a29196924c90e705db676bab5e16548bce157cfeb951bf2c10

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46c1046d7fe15f67a699e2650bfa6946330f2699cc55c961cc1af3dcae462df6
MD5 d88e09c9f2273b8634c8d3a797481c61
BLAKE2b-256 dcb87c09c7d0f9a56460667b3b5799298e0de8471c3a0234b908486fdbc8799f

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e99834f4a7a055150e472fea28ff0a24ab8644b369659f76473b9d6e4cba763
MD5 68a819c6dfba67d29d6097e55957398b
BLAKE2b-256 03237f33f735b935e402e8169c91be526ff3b4bfaabf9c350587cd5d85ac433b

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8ed15a57c4534abeea95f3a997cf9c2fc142dded40fadc9b30973f7d9af827e7
MD5 9c046abce3f370669fc8e748c3a7063e
BLAKE2b-256 6272ce713dc9e3f6f0869e1526851d1c547c1d8477740a2d612f42fb55ded75e

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: rapidquery-0.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 889.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a44dee1b0274037f94cdd03174fb1786b303daa1f7f0a73480d2834a763dbca0
MD5 7bb8171154acedc0e037ca7b267f6317
BLAKE2b-256 aa3336e4b09a2d060896efd4d592ce91c4d520ab941484a4c76bc38ef740cd8d

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ad20863f5b65c8b24593570d643ad111d55ccd8ce66fbef740c451ec5c232581
MD5 80dd0d7c3331aa591290a8db9c6c2e8c
BLAKE2b-256 3882248f054676810ccf6f6c09db497488a430f39e2cc23aa671a3444200a462

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 12c0462bbeb7cc36db0fbd9c5666f2488bf54b00dbe36b25d0e4d3cdd7829130
MD5 8ca1ff59c21c75fc1e215dc98f2a71e6
BLAKE2b-256 c670b0ebab9ad20e103fb79999d704e572f70155e45f3b3858a355ef9eee9b05

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e4ab9c698a1b5eb6524b9ab9dbb42da2355101428fecbec7e00cd542df330525
MD5 b5f56c55360790bfdb5f049339e07c9d
BLAKE2b-256 6444766dad00f80cbeaee40bd0c6104ff7e6b58ec73d06a324b0150ee7aacfd1

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 9fbe8f27efec34360ac27fb6f83b4d474158d4471b69dd21d6a780d4ad2d34e5
MD5 74ac03f66d8687240b0d78fa0f484db7
BLAKE2b-256 4e37c47b518c47cbab4a02c5dee66146c22de130a1bbec4ff5e801e58a09d6ba

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f45361538beff3397e1a97ecf33d2ddf24fd756fd753f3b06465f6309a25489
MD5 262379e8fc80ee1ecdd9e902e80ab229
BLAKE2b-256 72419bf71ee4cd8daf887e71120ea3801d6ba7ef52a40d7c45193161bac8ba7f

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97bcc881da3bf73cc8fdec66a6173e55a26f90b5da223f514f9eb9b6e8c4d36c
MD5 91907410c4f1ced27eec81c08803a56a
BLAKE2b-256 1d9eb83fb2e7fe227b3986a0d68e98fd53b444018d2d25bc44da7d2ab8664bb6

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 99c497da4a2607403fe620af7e3887870df09ac0ea7f767daa04f70dcae85bf3
MD5 2017197223654fd8bc68cad981654e73
BLAKE2b-256 04ef799e7a5e304c0771fcdb31f4dd95c0abbfb5b9f1d5d8576d90a8ea199d2b

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55b899d68b938e846741471f933550ad273ed6faa9f8644503e410c7389f99db
MD5 f3a2756ae8e0e85b9d3971b693178cfa
BLAKE2b-256 3efa899482d910bf984594ac9fe587e9931d49552a09469d175561c57d7449d4

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbe1abbf37dfa8e89e96545319f2efbf16549958967d412d3d39cbc9d90444bd
MD5 99ea9624800208f2c6086a8e9d89553a
BLAKE2b-256 1b6f2b687788ec8ba27824a0decb46acbfe38d436b91710e4801d1750d4da563

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e4a14d49ab51aae4a28085568ea3b21814c824c8ff607c895812e5119f3730d
MD5 47ae6139b4d14fb90319a3501a9c7c1a
BLAKE2b-256 16e87b14a5ef29eda5bef1e86d73fd279ab8a0b758ad565c6023715fb9747d35

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8beff81da9d2a7cfa7f497340ee1569185778bcd3f402731d2a8786df1b0267
MD5 85afe1a7788c47abd67e3ecea9b854bd
BLAKE2b-256 2692296901d76cfabb5dec386d0d65482cd70bcee830519c4a1f6e71658a7851

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f6ae1cb3ddf7eebadd4e53418c6b1a594e9dad217663bcb22c5222fa41d42f7
MD5 1a5e57721282f131ff66bcb36a28f51d
BLAKE2b-256 4d4ba4b6b2dadf692d66461169c56e341bbd99dbc779ed3705aaf9e0a03a5bf6

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4a7f62ad946bd0ae44da9b7d01303b3620b96533382f60477f412e27af2ba385
MD5 8602afd5bab630762b263ca35058a43c
BLAKE2b-256 31a4716b687dee5064cfdbd404aee44593bc7e181a98ad7bacf30ceab9f75e50

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: rapidquery-0.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 894.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5edccf4be045fd92f385e4315b18872b06f00ea40bde26ad36a9d375bb1517af
MD5 f517d6e9301783dac62cb4c49cce9e44
BLAKE2b-256 62dd85ca54bafd572f7e697a077b89f4c54861d84f6c59116256dc7feda5b4de

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f30bc0220c77c180a2a3e296a513037e092ffd37a713053dbb9e52bdf4d287f2
MD5 6377baf571a84f3f181faac20f42724e
BLAKE2b-256 f72722a4594f54b62b03b100389714341383e7eb1d86dd4a7262d3446121fc41

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 66cfcdf5aed52042a810af32c757a3f96b8b8e054bb23fba40811a16be597f99
MD5 368361f00ef4ed4cd628f6d65dbc853d
BLAKE2b-256 9576f6afe31837a3d8a4c599126e223ddd153b547794ad5fd84e7c47a4bf34d5

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ffb48880935dfc18e5edd2cfba26f2f41d95d48d47bd0ab2e72f55177758128
MD5 d3c7acd46b0f5d91eccd6b335383dfa2
BLAKE2b-256 640488b8652e5d6b5833bc9039ed7ae289bf02af701e4ee42a9336e5c58081b2

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 eb7ce089107a5e3c25dbeba8f9f903d9318ef880c26b4c77d037704fc769fc3d
MD5 b2cd3aabfe915b073b5f59320a511efd
BLAKE2b-256 664b3e7cb6799fb07b35ccb376ffd6118fcb057e73a79302433a1fe6e2147e83

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 152a6e2a124aadf6fd5aa3525701bfec0c0e962956807ce3f5b70130695e56de
MD5 249de6db7d53876e200de05f13859037
BLAKE2b-256 1fd4fe61893ce7c77b7e529feee78037314c9e498c4b6639656987e2784b7726

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 29d216218de1090d1fe8ebb4fd4d84b7ce8d032aaefc348f67741444f858fcb5
MD5 c00e1470cd544cf97823e4db037066c4
BLAKE2b-256 224122a324396823de264e4c81a69d08610934260cb134311b4179e4ada1cf90

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c77b88e92f624bb84604ea2afa01affc37513163da63b82b4c3741f5d5ca9e66
MD5 bccd12d26734da642d93be5d103a8211
BLAKE2b-256 48a4a2216e09906464fa6c751cf1b7c79eec3cc40831eec91893d629358d5bda

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de3a3368feae61b3a4ec89e85a404157bde3503505351c4f3fb7e79d05043dbb
MD5 5be8a320cea9627bcdb841c25c85c7de
BLAKE2b-256 81a17c9e0139b947d23940cec2f4d752eb3da6677b108c906969191c1a15df88

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8941812da58161d16d69306984558c4b57bd40aa5c028d25c619d94bec91f19c
MD5 5165d571cfa07e0dd679417650cf7b5d
BLAKE2b-256 ef1169f3fc75b88f19057a5f7a5384b4c4c2ac76b05981b9db575305860b1195

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 39143d951c5d26fee7edb6239e23427a068e0d74c0551669d2626967c19866b9
MD5 5689e0bf9bc1bff9a5812f17e162cac6
BLAKE2b-256 059ad6a12d5565425928e0bc20a8adef633700272c9f6c4be692cd3f994b1594

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e32589c6be4e66285081ebab2cb4208692e2bf74018be728150cec16b126b30d
MD5 79019a6499823f7eddb3f83a33bb1d74
BLAKE2b-256 77a48c38db90b25b70679a6166a6c7cfa13a5f40cfab703c1117bbbe249c3ba2

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e98a7535a727bbe1d665880fce4c70f8cf9cbf665a72d651aa25bb35878bc6a8
MD5 66913f45bc38fd0925bb00dfd1da028d
BLAKE2b-256 f6660e68f759cc0c241dea3f82173b68f761585c8250f5eb9a3b898b32591fe4

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27b70b49b7a81b59be54c8241d7af2d23bccb50e33d34a9365fdf2275598f640
MD5 9acc16c7b790813eea21f21c219b6fb3
BLAKE2b-256 04fdb5785c20795e607a0cd796bf274a3909047e3fbc55ba642063b87bc2662b

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7905795bef1e4e34b48f9f81e0b1a041a2dcf18ca6d244106dbc8715390a5b22
MD5 e545c3eb94b1438672a21c595c6eb757
BLAKE2b-256 30ca07cb0ab4401aa8f21d10104d0a095bdf5bf2a32c5af0a16eb18690ccbfa4

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4bff85c1795834e79c84aa97407e4eddcf5b2374f11cccc73c4bef50bb7c44c2
MD5 89a8546cfcd6068f4a568e2e3bd05897
BLAKE2b-256 2292db5819a06d218814c230dff6d623a9da84619bcc277dbf7870f9a18e8a87

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: rapidquery-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 899.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b821d717a9472ab7a521cb0095d7766c17c4cd073efb7146b8caf964b4407ea1
MD5 98d863da896b1b4f3e81e18471318235
BLAKE2b-256 6965475bf0a7f261425e2c141629ab4fd5d7f2e896736276e8281683bcc939b4

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f32cc27b5798afefadf3000377d78d310c48cf62d99cd752362e3d97da7f4929
MD5 ddd69ea3b4baf245143116b8815d4862
BLAKE2b-256 e2cf641f4ef165435972e982725b5bfe9538061c287b464de2b12d266a4dea80

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e9e82719480d33377e9b6d2e13acca47f6ff20bff2d244b8d11123660f521e17
MD5 426f12033566db27e01eb4cd87d43bb7
BLAKE2b-256 b8735a1456d322aad4c5ad52fcdc2fa51be518ba1e7aea68c6c7434fad6f89a1

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 24adc59edc92bdbb5b60b91a5b90b7ad983306fa0c7de08805eb3cb26a690e70
MD5 53fcb7bd709a4a2adc14b109e44b5090
BLAKE2b-256 9ff56e41dd57e67a5f6a90f068faf6fd2ca7baca5cf00a05fc9db27a42671c96

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 abd64f80ae219567711a84ecd5228d73e0b14a0ecb55cf9d3e57e1a2db61ab16
MD5 312197ab1748727be3a3877aebc88f83
BLAKE2b-256 ae7d5ffa3fc3586f1e2cfad941255a6be4eb0ef4b5be7a5a446947919033914a

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1641954e5d57e8a42d60c0fa5e6f8f720ca42cc4f8959fdfa0251d2ae6387b42
MD5 d99d3dcbc3ea89dcf99068068a730d3d
BLAKE2b-256 895eec354f23f9b61dea1e6d21b122dfd6e133f9e9406c31bae12fe3bef94a84

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c83b0fecd945392044e72195a48b1ff6c5720c7a912578544434c343215fbd2
MD5 b69b0445e0537e77091ea416bcd5a6a0
BLAKE2b-256 60d7ac19215563d1a50bc177b301116264b9c3682917454dcc85d984a6c392e8

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed79962dd8ae7f3c839b71439060b74121bb4c2524c6c9a87ba9b3b0e5937b53
MD5 094a5b532d0cfe8cb502ce9e462e995d
BLAKE2b-256 5ec4bbe5e5602a39799c0c7b3982effde04bf091dbfcafde9297de95257dd464

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a082f62707b3462b924eccf47ad0fee3bc3d04859787dfa1653a139af807b900
MD5 3243a738ad6bbb720026183ce2e2ce50
BLAKE2b-256 9c5991e743b6c0415d88b8810623378f5f16909182ea03a5f7bf99f5d0bee8a8

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 878e26962a79357771b1d7d0b9313995392a67fc1f0ecc757ec61219adc3b2a9
MD5 012902ee03e25d2d9980faac211e6466
BLAKE2b-256 142ffd92c378643855a054adab987137da39136296abdf6a012eb5c3da592108

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a5ed2e929eae7342e8abc5a9a18394b12c2f8b22eca4b75a6a8b2ee2a1daf4e8
MD5 dbdaaa61d304a7ea82e2e867701ab46e
BLAKE2b-256 46ff7828504e84a53d99fbec4ac25aa01e2767a5a4f01c71ae727b8e6cfd361a

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d373f8239fa5dddd789ba9d1b43b506d5d0ac0be94408e6b308dc3664db61513
MD5 2c24c065ac26531cc0939d11aad90fd7
BLAKE2b-256 1157a8254be3a056c2681ea2669783f78595297f25734b423134d175c26eb01e

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 65613bcd7ad353da5d31f886821e41c3696ea6a60f01c9af269345e6a034afcc
MD5 dc2d3d72bdbd16fdf8c877359f409c7a
BLAKE2b-256 17bd6d975c1623aef85cc7ae1eef1339e687efc37ec9cf7a51cdc54204504763

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2855056189ce8da4c9169933d90b4a6b552d543478ca51ecac312d41ba93159c
MD5 4d1ae3583385a870daafb2d676cb1c58
BLAKE2b-256 0b63459407f4cf3b44342f5cfad5d76c0c80cdd6922cdfbf33dc78dd78592b13

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: rapidquery-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 901.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1e468c99abba7a3c8b133f15f89aedf0fb1a399bd8341dfce6dbef321c74e1ca
MD5 a97adf3b8a6f9dcdda89d5258fc1f632
BLAKE2b-256 2617a0086e9fb44932cdb6f4099d1fb0aadf9631b1407089c7d39a3937aae830

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 435cfa8ec2e0c59a11e9fa6ce3b5f5d4742d97ba3e64b090556e3630cfe078a9
MD5 77448f26b2243285b4eba922fce922f0
BLAKE2b-256 0c5e243c8dda2ef87499feeb1c04e7134da4e4efee58c96004939e285475b945

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1e2c4a5ab705a8fdc981fd3f08dc5137a6159a88a7724397fbc0ce3bbf99f1a4
MD5 b78d7c16ce1be1a243f9ab34aab1692f
BLAKE2b-256 b2a86c9e1f245f55aef83aa4b74c1e984333102999c44bc5923a9616f9464bf6

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 926476b176a80eb3fc8afa7cb2701e40f1e8d6377c0ea3ed756b3339dbac6ca5
MD5 fa0a1808258d3478c2f733f3a6c8070d
BLAKE2b-256 53d2ffe9fb5eeb86ab9e5a659d3a112a127d9d042ba4f25e9d304984408083ea

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ffe3ad4f983a064831fcd5bb3168c9ebb201478c9fca564c3ed1b86abd2602d1
MD5 42d54d051786762c6cf606089c195bcb
BLAKE2b-256 83093d1e5ef07e77e0b444b688b6a640c92dee00dcf7c2316943687bb32c34f2

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5644016f124477b2cc25595e04cb3619fd83586b308d472020ab7f9f1e0b11bf
MD5 a2e932b3fd16751c4c5c9dd89647dc3f
BLAKE2b-256 97156774a0a09af336110aedaa108fffd33e3bcbd2eea759af54d290f28b7810

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d74baa929db81a3068d022ec8f88e86574c86c3ae59c23db70f8711a2549688
MD5 f69bd430a33076425c470d8570dc84a5
BLAKE2b-256 356b5be5dbf5bf49aeffe280ebe77bf9b175637780fcec8107a58bc1e5089585

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1dd6638f2b15e2e70232d19b7211ccb646dffae4c960e5041e7bc1a56dd304cd
MD5 44e7aff5852466d210adc933d94244e8
BLAKE2b-256 9656ae0369cb822a88b530faf35b316d5dfd312904207beba65ffa40bc61ec1f

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 00419a55943b927c96d4a2d6dacc71d324cf07e60ccfb10aa9fd168487fcf1e6
MD5 d8b70f198bc175111d9da93925e4937c
BLAKE2b-256 738f860dc4c3e6454844e410c9e66b0e51512ad40422ab4239acc61e948bf9d9

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8e19980075be87d3e21dcaac46aeb82cbf3fbb75bd091f80f780af9905ce4ed
MD5 fd5997d2b4fec6fe32548e7018bc7941
BLAKE2b-256 6fd2ef89f9e9b4bc85a8d433ae4645591239fb899726dc00664e15d9588c31b1

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 236ded1778ae3ccd344c30b87bb5025b095b4c898feb883ddb28fdb7035c1938
MD5 81076582a60b156b31a30536fbe75c0c
BLAKE2b-256 56578f09877c8aaf6c049850c212528334ecc85700a2987450e1281bb6c03f9d

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f639db3c40cd0ecd4c6a9b2be521b571b9239c382ac2bb22b251d951975f1bf
MD5 9ca801cda5b7abc88d2442b69d18b54e
BLAKE2b-256 1e3d1d1454d4083714bf131f4dd90bdea2229a0c1273aa403694fcac067d6d8d

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6d76ef3dff984d009893beca5171310db1c0a69a267bad12e25970563a4fd473
MD5 5394e1d658b62542724e3ef67a8697d9
BLAKE2b-256 458d619554e2e869358f9d144759b5a2dea786fbf20daeb9d458b712be795f93

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 83d50209cbf1b0b3109bda86f4cc800e3394e8eaf4abc46a98f83fe0515b7baf
MD5 c875dfed8b08e29ba66f793e6947473a
BLAKE2b-256 f9b54ab90226e26666899f939cf11a469d27f41d5e91a55ddf90b22ac1f9c106

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: rapidquery-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 903.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 225cfe3614cb12e7e63b75ef368b5e2dac14e28a65292b1ded6dcf8dde0ee37e
MD5 86b706121ad9a5cc61157716a7f957b6
BLAKE2b-256 c64310338ab7e026b3170e525f997bd09e54ba2f284b6640bbddb4b2fbb136bb

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5080987f4c5c141a0fe7bfd8c4619e72e3619415695731460f8fc3d14276d33a
MD5 9fe026e05237ee6ab042c3a4c67284d8
BLAKE2b-256 785dcfa78c55575f2f797dd7d56dccaf98ca0cf05662859e9a09caf60616ef7b

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5f818cbbdc730da181703b80003b41a21169aff70bc009d1470d15a82e1cf0e8
MD5 f07a3c1f86b4a347492d4a8ef7624cbc
BLAKE2b-256 6e1712f51e6b6717564fc0d87b667d580e349d37e8defca3112b85d1e49eb104

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f45ed88e2753c44dbeb2c02340f8af8689e9055a39e1f6f23b8bf90415b4a0ad
MD5 3e8d2a2a62d9fda85880447c9ac6e92b
BLAKE2b-256 08baca539ec6988e79e2167cf0d4787c6c0777760cae9bef46e35e90ce8ac89f

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 c0ab2ffb6c89a41d3074b1f2222c071c6ef8d94befea412b95e59720f88ba54a
MD5 9134d8376abc305d87f4f9f7b9eff03f
BLAKE2b-256 f83c40dccf4ed29333d8d051604048c040d077e0254a7a4c50962d3499195769

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6c880c40b9f5053bbd61544aae6a4ad5426a3e785e41ad30420af2669c5830d
MD5 dab5e34fd327ca73fd0f9574fd131750
BLAKE2b-256 c48ac2ff0fabaa4ae9b28df07d41ee53b85554a621d40b8109c8292a308888c6

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5da9bd821da3b4979321eadad1ac458f4bf35387d83b5444a30c76698cc52a05
MD5 9e66e60a32ff005b88e04a5f1da03c4e
BLAKE2b-256 f69d13ec5122d85232b0222657b9d76997e8e93ca45b73fc0de81f5caff024a3

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bca6b21cf0f5164f1f882988fe68a919c8331de28482b77d921f8de471a56adf
MD5 22b2c33c149a6d9ea6f87e1b4843001c
BLAKE2b-256 939e82f1805052a53ff1b44473e0682cec22aad6863fae15438a68232ecffa73

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19bc270bed41a5b9fade020ab0cb21fb3d9577766bf3ffc258bdcd3bebea85ac
MD5 3e1c96aa9bac07afba079b31c90825b9
BLAKE2b-256 99902c19fa8445ebb9ed8dd0b3e4a0ad613fa97085aa8f9ea8ecc60d55fb3543

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 599c39066e7b42c61a1bdfd06de8de09472f8670346885d62cbb0b31a49679eb
MD5 5ad80c83684d14d4cadb441479fa4e42
BLAKE2b-256 0121e14f514302846556dcafb0a50a371758d2624a8bf0f4b6f16a234f7ffdb5

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 db0aa4ecfd252ba4719955e7b089f45c311916eb6cacc38b669107610d3dbf85
MD5 d414f3aa77355204ce45f54dd94c33c7
BLAKE2b-256 d4c1aed9db7fd1696fc0204d8b7d025c6650f941252705933e1a87ecc582c752

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b8c9de7d1f6dbfbfc39a50d344da51f9e3e760f99676d57d0523b9c1af6ba79
MD5 c03f9e88edb4ff2cd1e3b8dc33eac412
BLAKE2b-256 c23af589b27e64dc2231bc054c83fd964becef6371a10124dbf662234fb5789c

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d82ec3c925084cdc5d8c3352885d3f7fdb7a313ed35b42228929b6c05c6cb9ea
MD5 4e3a0454cfb8117651755ecb79728bc8
BLAKE2b-256 b87ab0c782862c33a0defa884139da942d5d674e07d64e6b467c2857fe05f825

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5081498e58af0d58b571a29352659cd03939cdd3c2276bdadd7bd10507545a60
MD5 114ec33cc5b5fc775f9f5b06d73b960c
BLAKE2b-256 fe1973a64e1d72a503c298141cdffd007fc0acc75bca534e971a87f51ee47c36

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: rapidquery-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 902.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7ccba83eae2bd8feacf04f846962dba377219fe487a0fb145a288a87da99b831
MD5 bd2408263775eb5b6a813a6c20f7bbca
BLAKE2b-256 fe5b6c8d8e7e75194556dd584d1634d8b2e26c51dc8882b4e8e9a288dfa258c0

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b4748483f1db69308c9e289a1967a7693a6faacd33614d753092c6c45114ad4d
MD5 d6e722cc11ff650e15a4ac0053f88390
BLAKE2b-256 98ab6da0a7a067ebc4f7c75a3661d62ecb4bd6df82aa18d524d23fcf63fef4f4

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 cd6cfc304f1040ff77e211e1f7b8efa2dab478b612b8ab306b2ce67c6a10c46c
MD5 3f4205dec81bd281c69ab56b8133e2dc
BLAKE2b-256 420eee58da64269744c31f69a201d8fc22d284a3d3197fa94322bb1f1adb6ed6

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fc8805908a1358f821589c7b855d2a39ddc297e4045ef2014c8809e771d79020
MD5 07088d88d6c41f2bfae150717bd3053a
BLAKE2b-256 1c32209ba93790d5caa3aded519278d86fc758f5d85f9b0c05b4c4829dbcb169

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 800f2c2d1a67b3f64cce4fd6beaa2475d7d2fa7f71d6df189670850c47046a03
MD5 306bafe6c55ee1fb4c02d0b4ef3f5ce8
BLAKE2b-256 b4d3d72a10e8dd381b336587e75fb4439d872e53ad7b2149fefcbac940e58f9f

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 343f6c0502fe60c580f5dbde75294bccd41f7f14af76eba28e76ad13d55be9b3
MD5 c0c8d95a3a72907248664eb81aabb901
BLAKE2b-256 78f43a2a11f03a666b73dcb81ae50ba4af7abbcbe7dd02ffbb5d3ffa598c9e7b

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1678e3a9faa64fc49caeafcff65d30fe79fc714e1944f127783ca1a5959f7bf
MD5 8b4b83d31c30ddd61e8b08854a3c0481
BLAKE2b-256 08b48596d66487c6a0e9cfc9f4d917d92a0fcd63cc8b27b4accfbf8eab6efa98

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2bc19d7c8f43a3157488b0df6f1baf1a7388776db612c4eb39ee0005e2377d9d
MD5 9f07c0bfecad7a3da34bbe8e977f2dfa
BLAKE2b-256 335ecfc6500d2abf9a31fee8e9ce3bbd2ec8882668d8c10c79a176538d67ed0b

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 349e75ac225b80529668b464335af2d4480daffebf020ed701b1022d1199d898
MD5 280423e97864c424c784c13032067490
BLAKE2b-256 bf9beb8c25163d6aefe6f66f194dbffb4120649d72d374d12ac0b7b89dc85914

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b28cb46b1f9799ca21bc7ea8cbe39f5371088cf6e058287c42bb97ebfa5674a9
MD5 a1cc5113b234aa50f79426405fa50993
BLAKE2b-256 d696bbf5d60734115ace6c2b159efd24035b08ff294dea82de83632d66482948

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fff730a1ba6b572dec4835a688ab711a3a2b8c72dd53f355e039d8ed4cf704b4
MD5 9e490a4c905f9da4ad509d16fc88b8fe
BLAKE2b-256 2e2342df3772afe61da09d8a9c2125e37900ba9f57d5f1e962079c921e98f39b

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dbfb639c230323e5f57b9440d219501162a9b9798719359ec23e04a5e0fb842
MD5 395efcce4e44fdd12922f92a3a2bb5ba
BLAKE2b-256 95173b7b2986a1aead51abb6f086014f8350403700c00e791019846dd9f00eec

See more details on using hashes here.

File details

Details for the file rapidquery-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rapidquery-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02b1493688498ac1c1059775b676ad71df16d4db23e1fc13f6c1294fba06d8c4
MD5 51583620df781d87166ea8cc894d6dd7
BLAKE2b-256 29dad7bbc3db797fd4921e49d58fd73057b7b74da6c53aa4818e36cdada9b5b4

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