Skip to main content

arize-phoenix-sqlean

This package provides an SQLite Python wrapper bundled with sqlean extensions. It's a drop-in replacement for the standard library's sqlite3 module.

[!NOTE] This is a modified fork of nalgeon/sqlean.py, which was archived upstream in February 2026. It was imported at upstream commit bdd7097 and is maintained by Arize AI as part of the Phoenix monorepo. Original work by Anton Zhiyanov and contributors, zlib License. The src/ directory contains code derived from CPython's sqlite3 module (PSF License 2.0). Builds download the SQLite amalgamation (public domain) and sqlean extension sources (MIT License), which include PCRE2 (BSD 3-Clause), STC (MIT), and code based on Go's time package (BSD 3-Clause). Full notices and the CPython change summary are in THIRD_PARTY_LICENSES.

pip install arize-phoenix-sqlean
import sqlean

# enable all extensions
sqlean.extensions.enable_all()

# has the same API as the default sqlite3 module
conn = sqlean.connect(":memory:")
conn.execute("create table employees(id, name)")

# and comes with sqlean extensions
cur = conn.execute("select median(value) from generate_series(1, 99)")
print(cur.fetchone())
# (50.0,)

conn.close()

Extensions

This package bundles essential SQLite extensions:

  • crypto: Hashing, encoding and decoding data
  • define: User-defined functions and dynamic SQL
  • fileio: Reading and writing files
  • fuzzy: Fuzzy string matching and phonetics
  • ipaddr: IP address manipulation
  • regexp: Regular expressions
  • stats: Math statistics
  • text: String functions
  • time: High-precision date/time
  • uuid: Universally Unique IDentifiers
  • vsv: CSV files as virtual tables

Installation

pip install arize-phoenix-sqlean

Note that the package name is arize-phoenix-sqlean, while the code imports are just sqlean — the same import name as the upstream sqlean.py package, so this fork is a drop-in replacement (only one of the two can be installed in an environment).

A binary package (wheel) is available for the following operating systems:

  • Linux (x86_64/aarch64)
  • macOS (x86_64/arm64)
  • Windows (x86_64)

Usage

All extensions are disabled by default. You can still use sqlean as a drop-in replacement for sqlite3:

import sqlean as sqlite3

conn = sqlite3.connect(":memory:")
cur = conn.execute("select 'sql is awesome'")
print(cur.fetchone())
conn.close()

To enable all extensions, call sqlean.extensions.enable_all() before calling connect():

import sqlean

sqlean.extensions.enable_all()

conn = sqlean.connect(":memory:")
cur = conn.execute("select median(value) from generate_series(1, 99)")
print(cur.fetchone())
conn.close()

To enable specific extensions, call sqlean.extensions.enable():

import sqlean

sqlean.extensions.enable("stats", "text")

conn = sqlean.connect(":memory:")
cur = conn.execute("select median(value) from generate_series(1, 99)")
print(cur.fetchone())
conn.close()

Building from source

Prepare source files:

make prepare-src
make download-sqlite
make download-sqlean

Build and test the package:

make clean build

Credits

Based on the pysqlite3 project by Charles Leifer, which is in turn based on pysqlite by Gerhard Häring. Available under the zlib license.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

arize_phoenix_sqlean-0.1.1.tar.gz (3.5 MB view details)

Uploaded Source

Built Distributions

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

arize_phoenix_sqlean-0.1.1-cp314-cp314-win_arm64.whl (879.2 kB view details)

Uploaded CPython 3.14Windows ARM64

arize_phoenix_sqlean-0.1.1-cp314-cp314-win_amd64.whl (946.2 kB view details)

Uploaded CPython 3.14Windows x86-64

arize_phoenix_sqlean-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

arize_phoenix_sqlean-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

arize_phoenix_sqlean-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

arize_phoenix_sqlean-0.1.1-cp313-cp313-win_arm64.whl (854.7 kB view details)

Uploaded CPython 3.13Windows ARM64

arize_phoenix_sqlean-0.1.1-cp313-cp313-win_amd64.whl (922.3 kB view details)

Uploaded CPython 3.13Windows x86-64

arize_phoenix_sqlean-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

arize_phoenix_sqlean-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

arize_phoenix_sqlean-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.1-cp313-cp313-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

arize_phoenix_sqlean-0.1.1-cp312-cp312-win_arm64.whl (855.0 kB view details)

Uploaded CPython 3.12Windows ARM64

arize_phoenix_sqlean-0.1.1-cp312-cp312-win_amd64.whl (922.6 kB view details)

Uploaded CPython 3.12Windows x86-64

arize_phoenix_sqlean-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

arize_phoenix_sqlean-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

arize_phoenix_sqlean-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.1-cp312-cp312-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

arize_phoenix_sqlean-0.1.1-cp311-cp311-win_arm64.whl (854.3 kB view details)

Uploaded CPython 3.11Windows ARM64

arize_phoenix_sqlean-0.1.1-cp311-cp311-win_amd64.whl (921.2 kB view details)

Uploaded CPython 3.11Windows x86-64

arize_phoenix_sqlean-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

arize_phoenix_sqlean-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

arize_phoenix_sqlean-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.1-cp311-cp311-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

arize_phoenix_sqlean-0.1.1-cp310-cp310-win_arm64.whl (854.3 kB view details)

Uploaded CPython 3.10Windows ARM64

arize_phoenix_sqlean-0.1.1-cp310-cp310-win_amd64.whl (921.2 kB view details)

Uploaded CPython 3.10Windows x86-64

arize_phoenix_sqlean-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

arize_phoenix_sqlean-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

arize_phoenix_sqlean-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.1-cp310-cp310-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

File details

Details for the file arize_phoenix_sqlean-0.1.1.tar.gz.

File metadata

  • Download URL: arize_phoenix_sqlean-0.1.1.tar.gz
  • Upload date:
  • Size: 3.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for arize_phoenix_sqlean-0.1.1.tar.gz
Algorithm Hash digest
SHA256 0437552bbe375be920f78c83a78de901fbd7497122aca30aa4e4884cbad1542d
MD5 0c98b48f55c72428f33fd3e9a27d204c
BLAKE2b-256 6258f06009fbf1d35d98836fd2179ca72d1ba5b5f82cfc99aa081e9a2cb5cac4

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1.tar.gz:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0c9b726b8d8b5ad6ae111e3542ed93a61f7b3cf846813d43b61c48fecdea2c2b
MD5 7d33d875d75cb42a595425936896ff92
BLAKE2b-256 45c6b934c0a2e26b29fba257327cda6ffb8ef94db7987ed20e3ca431d20badc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp314-cp314-win_arm64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1c1ac9da3eba8f3a92d03e14bae8c932bbfea6e63e3978a9fd5b0c274742d4bb
MD5 81521e7f86ff3886a81fea063337dd3a
BLAKE2b-256 dfef7fb13a30c96c25ce18b7bcd4112bcbbaf04cb40663b92b3257ad4e18bf1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp314-cp314-win_amd64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 acb2c6403681046eaabd8f97c3a20967a525f6ef866dee584b80937c2ecbea4c
MD5 286dc1ece70a6dca0a248820a6087407
BLAKE2b-256 13bfbaaebf47825c7349b6ca479283cafeb811b57bcaf1252940697cabe2197d

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7742bddf432ce1af502fabb044331e2f7adbf36a5f4a28e1daf05a8a4aa8e3a8
MD5 c8e3b9cdef99d2928b8618b7954fc99f
BLAKE2b-256 2c794e50565770495192dff0fd60c2834ca20a70ea2ebc15722e9078afdc4ce4

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44483f33d89ae9bbcf4e3769e91afe8ba95063cffc641af06c0ed3e20613fc85
MD5 dd96076263cd1209717c8228faa27e9b
BLAKE2b-256 47870228e3412eb1b731497c0b5127cac6268ddcaba206793f6696b3e4a7c829

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 22fb1bf038fb0c6ebec35bdb3a1e15cfa1e94745d1ebafd35de3462b9c3da8ef
MD5 b91895761cbe45c1f43f035cbe8ed860
BLAKE2b-256 c324b4dab36bfeabb26e783161f6abeab08794327b78d88ea9e7accb575c0ba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 61ef0e8e9b7149904a489947671b2490e852405f6fa36f375b72b6554edad538
MD5 6d86cf994a94f1a8e13d0b0669b6f403
BLAKE2b-256 ea4b6c4c615817de93e8b7fa1bd714041d5e65385a0666c121f1e4ce276eb663

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp313-cp313-win_arm64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 65e6fb36aed4b3cee9ccd1a2a1a1c51f36374655e7db6f3730e8936e2d0dd3c2
MD5 4673d2f021456be745c26a606692f879
BLAKE2b-256 56ca5e84b2e627c55e8f17b59b67cfc5a826d2756f88dad0f10fec1aac06b02c

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp313-cp313-win_amd64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15c8485bef067ee35a0908c4520d70e3892ed71e1a17673ddf863deb6f051f17
MD5 26c3fa554d388011c0564b2e937c245b
BLAKE2b-256 9eddb10f59ac5cfce788b7de89b4bc3f74417edfd4a42a2f2c6670bbce4f7f21

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 41594be4f70d21055ef51579f6565ec89d92fcba4fc5676328180ca57ccab804
MD5 70d8a883b65689b3cb4ef79239159025
BLAKE2b-256 44fdb798176f416162c879b87c302ace7b6fb77fab74aee7556ac9987f97ad56

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b84087a4dd68760b5d017699daf87b0e13ed7f3bc7fb26eab66cdc38c95ea1a
MD5 cdc03c3646c5561e550e7882ba327b49
BLAKE2b-256 272abe02d2de7185fc8d5cb45bf134e830f69176e9e1ea5ce51c92863bf61be8

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 45cdedfd9ca6461fc15d39e599978a7028d2d8a84e0879ac2e6a1e03d1e34d78
MD5 0bb5e3950e14b1896435f69a35385140
BLAKE2b-256 88a07e2ca22aab090574b8a22137d4090e9704831fbcf16c66afc2596cbd7c16

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 317d39d15bcd4187827dbc7487512f63ebf309d708418010a5d98239f0470f56
MD5 036307f1fd8a7e5c0b3885e7c8b7d1c5
BLAKE2b-256 20704466828c7f0b44bd9d573547639ed2a68def2eb43eac80baa5c9c6c39721

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp312-cp312-win_arm64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0a2ca8421414eb7967be4e424bb99474b8e86e16522b5ad37a1cc099306e5c18
MD5 34101bf93cd0ee3b373d7d9bdb5ae21e
BLAKE2b-256 05cfe2e88e392ba9e5bba007b9a870c072fdc763839cf240efe8cf380aaf220d

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp312-cp312-win_amd64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f40d800d385cb888c2e52ef84cdcea09c3b08568679a3306b951c6b1ad8205d
MD5 66b02ded213fde26fee9fde35648dee1
BLAKE2b-256 b26ccfe13a4b47f51576cdb884ec5dcf4edf65ea25547e9cadf0aa9b5eacc61f

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc4f5c40268ea5b86962b30926ed9fc0a3f877252c5a6a20194c0b3e6267f674
MD5 01ce49e7c249b8baf70968fa5e3d903b
BLAKE2b-256 6c2a1f2b6305db5b68707dd0f3dd3f007676d01e892919f5b759a385c6a93ed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 990c3ee4d5a7370e37a80686d7f94483594edc6f641c23b2212fc7f4b681508e
MD5 ec8d011eb08561aa7b036e6ffcca4eef
BLAKE2b-256 5d4d964ac4a6fe4e54f1a1a3a563aac2bb87e8ea73928860584a2fcffef4fe69

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e0097277089eac93f387ab3b8a16da29cc054960e482694a041f4c43a6dba0ea
MD5 434389fe63743346d052da5b4ec7dc4c
BLAKE2b-256 004a4ecad675c186fb624ac7bdd1ff25145b03f1c9405507f6f092d3df5b7e03

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4e398e624b3f322d1ac73486b41df7bbc47cd3eca6f2890f994bba81b09e94df
MD5 b51ce628646aae3d9a9e6b5e3ef5994f
BLAKE2b-256 6fcf07c089e1b7fb7c1005d16741076db706a18b7c4a1baf0669908ee214949d

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp311-cp311-win_arm64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ab7966279b95e1669ac1c530609cb0f585020a26bcf1aaacaed15fbfb1883c61
MD5 9d24abaf9264fcef123faca37eab0ac8
BLAKE2b-256 90e9c4ffe340809d8785d894d2febda16ab28735d0c14383a2daf90a6f2519a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp311-cp311-win_amd64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7eaf59e85b26e9a10179c0345c8a54dbc1cef09d589fb69a6331383144720e7d
MD5 bb9a3c84a7fcc90fc4970bf7e60d68ce
BLAKE2b-256 f0635449075a9ce040f76d5aaf938dfdcaf0371fda7c2ec3967fc991cd2bd75f

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbd6844ddea7e4814d9822b79317d2a32e3558354d14610d51951ad2dbc6bdc2
MD5 ba5cedb6eded09cff9d13a4990787005
BLAKE2b-256 4a4b7593f15a0a78649a6543afbdf33dd690663c80a6b5f70c394562d4cfea73

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23b764bd6161b2bf85ddb1c5c89ac792f55447721ff9f217e4413350f78fa2af
MD5 5f3dedc82e74ba40aca599c95932b4b5
BLAKE2b-256 7ce20338e5597abcbe22b55003bdb600ef8160829c0cbce482952d120d19db6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 352da12cf7382ad8b7fc65c9e31ca742d7a102c0846314e6dd06a9119844d7fb
MD5 82250745d67431980fef6bfe3bf50430
BLAKE2b-256 7af78974e271b6c51d4229981922972da9c7bbbce5bed809f1747b9f62a6598b

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d989f162afc11bbf9c0b7c73cc6a48e219ff12cc9d86dde54825c24291b516b1
MD5 19000b2b6041cdcefd9aaeb1005a3036
BLAKE2b-256 2f2a1ffadc62e34a34d2b0ab5144469e171ed9fb856a57b8a8fdf15ced2967de

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp310-cp310-win_arm64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 133e38d51e5360a21e705c8ad9a7824e85612cbb2161a9beb73a2281588da641
MD5 dbfdbed7b1fc1bf344c013d73f9f9192
BLAKE2b-256 8e54e3c0f3599de636958273d8f9188f687040b66ea6a6412a0228279ac931d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp310-cp310-win_amd64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 371d64375b5a4c3ed061c4e948cbe686141ae9e242bfa8ca5ff10767e72009bc
MD5 770b8651ce9e80e8837374cbe30676d6
BLAKE2b-256 6748e221982651b1b5be53c8a2865d8f79f3987ff53a78ec54d448f91bebe506

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc45801b4ff61fab549ccaaf03f80b9d5bbb500437c9ec2a9b0c54001a347745
MD5 fe351357c8975bf8ee93c5b63dfa7127
BLAKE2b-256 467b227e052dda2296950eb7574d53ce8628723e39892454c305089ee985a8d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb99a4cc1dca5508a17fcbc202c95791833153b488549c667da5f323e2c6efaf
MD5 9479420d8d4f3d36b2a9d16cfcd7a441
BLAKE2b-256 715417dc643af99a3f245a6309031da5873f35f780bbdd61b253c7568b0232c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arize_phoenix_sqlean-0.1.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5c9f655c5ba3aa5e782253369bd0cba3f63a26ae92b1f53ec463e68cf02b9c06
MD5 e223e654decc7e00618213a0e6925430
BLAKE2b-256 bc6dbebcabf69157765f3a73ab09202fc5b0ee368988b44bb5f2d5f1fcb4de69

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.1-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: publish.yaml on Arize-ai/phoenix

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.1.2

31 files

This release

0.1.1 This release

31 files

0.1.0

31 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page