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.2.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.2-cp314-cp314-win_arm64.whl (882.0 kB view details)

Uploaded CPython 3.14Windows ARM64

arize_phoenix_sqlean-0.1.2-cp314-cp314-win_amd64.whl (949.8 kB view details)

Uploaded CPython 3.14Windows x86-64

arize_phoenix_sqlean-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

arize_phoenix_sqlean-0.1.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.2-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.2-cp313-cp313-win_arm64.whl (856.9 kB view details)

Uploaded CPython 3.13Windows ARM64

arize_phoenix_sqlean-0.1.2-cp313-cp313-win_amd64.whl (926.4 kB view details)

Uploaded CPython 3.13Windows x86-64

arize_phoenix_sqlean-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

arize_phoenix_sqlean-0.1.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.2-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.2-cp312-cp312-win_arm64.whl (857.1 kB view details)

Uploaded CPython 3.12Windows ARM64

arize_phoenix_sqlean-0.1.2-cp312-cp312-win_amd64.whl (926.5 kB view details)

Uploaded CPython 3.12Windows x86-64

arize_phoenix_sqlean-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

arize_phoenix_sqlean-0.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.2-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.2-cp311-cp311-win_arm64.whl (856.7 kB view details)

Uploaded CPython 3.11Windows ARM64

arize_phoenix_sqlean-0.1.2-cp311-cp311-win_amd64.whl (925.1 kB view details)

Uploaded CPython 3.11Windows x86-64

arize_phoenix_sqlean-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

arize_phoenix_sqlean-0.1.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.2-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.2-cp310-cp310-win_arm64.whl (856.7 kB view details)

Uploaded CPython 3.10Windows ARM64

arize_phoenix_sqlean-0.1.2-cp310-cp310-win_amd64.whl (925.1 kB view details)

Uploaded CPython 3.10Windows x86-64

arize_phoenix_sqlean-0.1.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.2-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.2.tar.gz.

File metadata

  • Download URL: arize_phoenix_sqlean-0.1.2.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.2.tar.gz
Algorithm Hash digest
SHA256 9ab8c44b027ad0f52c0c1b1bb8330609595212c10722ebecb7108a7fc0cc752c
MD5 755cc35fa608d389b4481f43645ae0d4
BLAKE2b-256 ffe98cea83548cb35007c7e10c489080dab4133c1851a72646e7ed452c18219b

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2.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.2-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4a510a53225dfd6224ec4078c0c06697165241346dd101dd8419c956c4f740a6
MD5 dde71b0bafce8f63540fc5230e2625fc
BLAKE2b-256 d43412f31fa23533ceb20043667b517efa551213b9f16eb7bf81756499a53066

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 55f50e75b4d469a1bc27c0b2d1b11a37af5e33e4674c656a0ba4e7d5ff580016
MD5 8b1ae748bd2c5adf1619ac7708af5883
BLAKE2b-256 9fa179ee4178909a8797aa7ca0ac8fd6bcb44bb04ccab40419fdc83abd1663e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbb5593069491dd89f3c683d8313884823f6c5afcd4fba49f22ed26eb4201a92
MD5 5ae07eb300223c825c0b02a291047feb
BLAKE2b-256 0445e528ee25c9edccd5b594eab6e90c852f5825c8a9c2befec07902e383fc5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bd3e89af9d21a35040d109b281486cd548f43090fe2a408c595db8d9387fde07
MD5 5d5cdcddea724f0771e9bed05ec62b02
BLAKE2b-256 8d2aa3dcbf3d9d0246d29832fa9ceabb2e79002714f69b6de873883c521887f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd24be2463b6708c27346a846b6d31114615ef7c1d251bd006f3bc7343ad93b0
MD5 701a02d81568cb9236fa4c17ad19a233
BLAKE2b-256 01936ea4877feadc12ea309fe0c45502cfbf49c337c8697be49951cb016f3bc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 019356f5b7697768a52b8b5477a5f93711075ea468bbf8c9ca0d389767b91a7c
MD5 12253871717aa0572d23971c672b6625
BLAKE2b-256 23947e1c9017119679c2091e06c226707f93a406efc893f244c045743eda1606

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a43e378defca0f5b16e0dd0b22b0ea6bda119a8a496d6a426c5cbe34ad7e9f97
MD5 bd75c9661856739a7fe23b83e63806d1
BLAKE2b-256 232d94d46fed5fba5a9ba2c8325c6b6616016e9474bb71e6afd639d1c75d367d

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 67a234cd953fa77d8a1d4682d8f3f7aeeac352b83e2ce4f7315fd11c7ee7c81b
MD5 97b1acb34c5b89a7d610e342a64d53c2
BLAKE2b-256 deb26fe9026626f046a5a87669dd9708979e69f9e741b23ff8c56f3c7e192d38

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4285ff86d0bacd6b2097f1c68035d353ef08cd9ae7410e7e846e4bb11bf012cf
MD5 c88e94dc395d9ae642b8c8d41f136a52
BLAKE2b-256 739d38d8b48c66b36c02337b25d9fe9d608b8b99e40afa495cdefb15163efcad

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc2ccf5483b121b6edd00cf8c85dbef4f34fc8ed2cd68f77d8b0e554469294a6
MD5 a95a088deafd2584a77b0df3ca5efd22
BLAKE2b-256 46061b95efde9401467d0e527df285bcb71bc46d7dd747f108059a122697f2fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b378baa211a2d4331e8bc67507929f9f10b930394a34e7fecb0ab225682f9a57
MD5 fc39e6f6f1dbf7752ccba497159dad96
BLAKE2b-256 9d2115b4690ba8bc486030f82f6207a62580dbbe135950d51d5a55665a3b1fdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2e23c80186e5ef79d24f2438035b9ec4afe0dac8b14f15ffcaca0e028a69377d
MD5 3ff16eef3e0abda4b8d22f9ac0ca0466
BLAKE2b-256 3ab92fcf5c606049840c7592bf07e17e3f437649364b642f7c9d1df26260514f

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a7a345a4efcb1c638ba27a4690eb090c69a79c12be20b949d351991de2013331
MD5 548d3482fd0da0e268a8f65ded2c13b5
BLAKE2b-256 ea0808161b20b4a3f0da976f9137219898b36cd663aef09540c931ae3657dd48

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b0060668b6f2bf368265c53c5f03c1c7246c7355056a3d9655978f794950eff1
MD5 691a5b3ccd10b41706dbd4cf7fffb288
BLAKE2b-256 4dd2f50711b0666d0650bc6ae5e0258b4f5e27aed621c77be68879a7b86795c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3908ab4642bb665398d68528a1de6df2ae23c5cf76f259c74cccaae5206ddcb
MD5 2d41e124a1afba8b6465192a982f0eef
BLAKE2b-256 aeba4a85e4b3590e4a81b45621d68f9f58e3b7d3c4955100e1bd611f567c7644

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 241bb5a1762e87cc3a989acfb602d22f50b2ce401c29bd26c7e02032a521635c
MD5 ca90c26ff25499a6221f90b53ca23a9d
BLAKE2b-256 16a35a108180f858515ab9362545e5102a3957b47f25a08aa109b42970aab449

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66bdaff0190f457536bfcdf6fe9f269bb586660c4787e9df52c40d73a7739ee6
MD5 58078b9526f9a6b5c330719cbca33597
BLAKE2b-256 9f75a67203de838cabbc1603ca8ab2cdc13dae3cb9f69524b7c4a68ba76f0f38

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c1bdd04e429b84c998745eb95957d6dae33e858ae4a64a98ecc6abff4dd44a9f
MD5 2b10d8c6938f083178015b5df2ac9e16
BLAKE2b-256 dbef27403282c2fe2c6c4be98856bc62013df6d3740e7a95a9f077060eb88633

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 42f3acfe0cc763beb6a112ba03d974669bf9f13eccc4523f339a7ff3914a78c2
MD5 6c0f0c373cfe6b76ab1c8bd539d1540b
BLAKE2b-256 50b898dce14befcda7446ca0816674c2220b7e28b20d0b53c7a47c556401b963

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3313e5b965f86b4e84edb08da449a9c34326a7243b5ecff3f9f13576b04d4b25
MD5 9aa7ae876bb1b0b2237ac925407874c7
BLAKE2b-256 23ae61b7f948f35a25bf03541f438349ff7d4ac06245cdfb4df296e6a539f047

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23e69c3b9f58ae9c574bd7a43716bced5ae622c18fb3d8bd79426a01f0823c40
MD5 60a28c3ba218f752b089d72093824bc8
BLAKE2b-256 2ddfbaa19547f930de93dfe2facf9af26de767c0e39c7976cf4bff782760a14f

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 05c0226cad96421dfd86f8deab00d314c70057c36769968080d9d18d2b7524c3
MD5 40bee83281efa9a596c13b0c17698a2e
BLAKE2b-256 d7352a0a7cd86429cc974bf97e83ba1ad894e8f18cacb2dd435d00194642abfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c23a26fe6ab23adcf04f8a9f6e54e7563451138dc8cc1f0fdc33d9d8bb9d2d5c
MD5 136ae53dec9210f84fa9e9515a5d2685
BLAKE2b-256 7735bc88180e2bf1fb9e1ee894ddba65711ce68b75d50d87656edfd88284418d

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a6a63f531756a5d00f4f4ce65278ca269e424099a30c559ad0137d9826d10bab
MD5 8466a76b70ed92fad3dcdbf2bd2dd3e6
BLAKE2b-256 b07cc510ff7714b185cb1adff3dd97b6db889e73b903e9fe0b715df6851f5157

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2ddec8f2592bfb30e9c7a62a2139592a6344a5d3d696e59f8dfbb36efc94f9cc
MD5 6da3a638ab293ba859b4b917b5b223b3
BLAKE2b-256 1e1efd953177057ef4e0f93e0a5fb32ee14396ef9d58767d20c6149bc540d8bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 25ad10f8750e2ce7d92fc71a4b19d1aa45d071f0a91a7823d61d991e72344be1
MD5 3a21587c2412770a5f1999837523616f
BLAKE2b-256 2dbfa8de3ba74256e179c654a1c950ef15454da5de27703d5245aed2187b03e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 982146d81645f09f03fdf7c6278b58c551b3dbf6f7d7585d339c7cd0501a6260
MD5 9405feaa28d3361eaf14941bbcf01c1a
BLAKE2b-256 97fb2625a8ce3ae3258b0e7f2ada9aafe050feec2314634ccb72767bcfad3cd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 34ca98fe8db76268e115cdb269f8e8bdba1d39840e9acd659f5b1cf07423955f
MD5 46c917929d887dea2c974eb4a1f4ab77
BLAKE2b-256 3b44739f4b24a0110c505a5439d116d65bc63b00890ddfffb8af5c7f2066d97e

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f462ab562cdf7b15cf224e93067a65de8313b6bf5b768ec92fd2bb2a5342d67e
MD5 3c7fad3c68ac9651084db2b1d42d6512
BLAKE2b-256 5da202e320905b6ad9aafad2390ee9b594499466e10a01a5d6d6bff806a9b2f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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.2-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.2-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a6014dd719d6675ef339289d08ced128b0c0e9eccf959d633966af98210b5aa2
MD5 d4d34a9a2cf25b0587cef59000456dcb
BLAKE2b-256 69cbfbcebc9ee9ec8c21e569274814fa628d7172e71282430cfc498c1c66572c

See more details on using hashes here.

Provenance

The following attestation bundles were made for arize_phoenix_sqlean-0.1.2-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

This release

0.1.2 This release

31 files

0.1.1

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