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

Uploaded CPython 3.14Windows ARM64

arize_phoenix_sqlean-0.1.0-cp314-cp314-win_amd64.whl (945.5 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.0-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.0-cp313-cp313-win_arm64.whl (854.1 kB view details)

Uploaded CPython 3.13Windows ARM64

arize_phoenix_sqlean-0.1.0-cp313-cp313-win_amd64.whl (921.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.0-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.0-cp312-cp312-win_arm64.whl (854.4 kB view details)

Uploaded CPython 3.12Windows ARM64

arize_phoenix_sqlean-0.1.0-cp312-cp312-win_amd64.whl (921.5 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.0-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.0-cp311-cp311-win_arm64.whl (853.8 kB view details)

Uploaded CPython 3.11Windows ARM64

arize_phoenix_sqlean-0.1.0-cp311-cp311-win_amd64.whl (920.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.0-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.0-cp310-cp310-win_arm64.whl (853.8 kB view details)

Uploaded CPython 3.10Windows ARM64

arize_phoenix_sqlean-0.1.0-cp310-cp310-win_amd64.whl (920.1 kB view details)

Uploaded CPython 3.10Windows x86-64

arize_phoenix_sqlean-0.1.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

arize_phoenix_sqlean-0.1.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for arize_phoenix_sqlean-0.1.0.tar.gz
Algorithm Hash digest
SHA256 a7248b8530c44d1d3861c580b610bf0312eb6f675883cf4de18c35b2d9acdc98
MD5 69ffb2245717a1016defcea0f23b4941
BLAKE2b-256 619d57f4a702fc81329db31d3fb3db64fa01514a71d044311bf80f0438185728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 095e999463423ec58a8b1648803e6b1431b46c872b2e74400849baa3923e420e
MD5 88a7636f543d044e2d004bec388d14ce
BLAKE2b-256 d6dfa6debcfb1c09daf9f80449e9ceb462a1481f4d6f0847382b30f6b11b0d1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3b13e1b1fdcc98108d2dcd6ae23da09a522d76b4092ebb04a3f4f0fcf2daabc0
MD5 e1c521cb318cff1a4db14fab68cc5421
BLAKE2b-256 65fd8b15c639c4c431fe58dee20e1e3bfe52a3508828e84687590fdea38c6c4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6555874ea65263675a22a39b0cf37b37bf445bf2e1f449eba7db407a7f51f08b
MD5 18eca2c02c16bd32bc790dd66ea4684e
BLAKE2b-256 a77dab732d708f628fc60515a8363b19c562018a47f9f7273027469cb61de455

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de92614a27a1bc26af4c98fb02eeede4fef1b64cfd7a3d15a791ff45743ffdd0
MD5 6d9cdff0df98e2a6c73ce1ed13c38cff
BLAKE2b-256 ac7083fcf53e46040fe24d2cffbcd2b200d9c99522ed0817598efb1ff81f438b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 682bf9ae7abc2d9067acd3ebbf80f660438952061765da818a5949256f1f1eff
MD5 980fe70b94441dc09cdda8a7de43fae1
BLAKE2b-256 444749c8104a51cf57f42c875027fcdc38c478b3e9bf14ff39256edc7bcecd0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 13329de9986213ab041829501b90cf34c88dbd0f8ddabd3ecb14952651f8a498
MD5 0004583bbf024d0b73d2b850d5f200df
BLAKE2b-256 2350de42cbaf9745e28baff4eef4cf8158607d1083b564303829458d9329d060

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 27ae24989aaaad7e96ff2489f8faaaa9f569a7ffaafdf5e6c558bdc5373ddf37
MD5 7cbaddeb57cd554adf2ab512ed3fefcb
BLAKE2b-256 b36cff466af7f7222231bd662999f9185edc82121cb9ecfd1a19934ab564c06e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 250817990d7bea9d8a8d0ecb518d1dea14a097788e1eb5c79aff216143311ba7
MD5 96f2f0259efb5f1fce057d52940c5e7f
BLAKE2b-256 6c262f0ba2038eb850d648e08895cc3f84925764da0fc4548016c229a60d2b5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b66238d95d6853405ab0ba8a994835992360c3c8f5704587a4c7c5c6fa81f004
MD5 00e02654f68da5591655d229df5c736b
BLAKE2b-256 1e52d1cd20f70369b5bd98289d6eb05556cfd237fe5f453f5a6fb8bd9bbeaa44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4bde27c20c4f5a24640345fd187366536383dc0dcd089b822508fb9cbab4315c
MD5 74dadaaed186d3413a7503d7323348fe
BLAKE2b-256 c1ddd9b9b2c0a7a9a0e5df71882f58a1bc69cfb1532c817d39097835bc15e94c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f80d33b2d7095ee61d0dbcc4ee34ec788f7e345861a3b22b55cb30c8e595e3f3
MD5 44ca1bccf12e0f0877fd176504b738f7
BLAKE2b-256 3b7977773a573b2d39a7756372fdad5b1d118014f4dbcd23fc84b022118b10d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bb8935434efd2b7da447c8dec487365daa23fadc3ac521adc1e6e1d73b801ec8
MD5 7ffdb89164dc949e45588ef32d8d6259
BLAKE2b-256 7d4eb24a5d3671e653f77346b229c0edddfda4bc9a6ef62f6fd690c2f9c15f86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1cce6ef53c9cdc5e8f177ca3592075c315750fd01c3d0bedcad097d5f9ce4238
MD5 72d0a9bab165183e7822cff9a5b15ef4
BLAKE2b-256 511cf2aaa88d227b927890be93d17dd2ea1c6d6b61e8f113d22358895b6c481e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dce5fa4bb09842aa4dca700bbc28aabd3f6c8c8be78030151e54c98ec0e0f3fe
MD5 84a150ba5469c2cec17cda4cea8ffbf6
BLAKE2b-256 3e641f460ba9f8219f3d3db497dd8ee51dde798c11c8760ebf47310450d5c177

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9a6853475fd0c52d162d0214b99557532e8c42ce6fb5eb1aefd53238cafad97
MD5 e76a5d921442959f72f7882d5eacb6f6
BLAKE2b-256 4c1e621a84ac2991437b5a7fa1a0c4d90e1b0435deec6eb202ab5bf197146654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5d735a38d6d89cce57e70b1d0deff3693591d44fd71648c719424fd44c81da9
MD5 9dd84c6a0c945d4813c28d28da3901c0
BLAKE2b-256 797c0af4ac52dbb56568be10df5cec2ad824281a3b8f69f26a8171e2f322bfd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6586d84b78c990ced9c336147cfe082c6e12647824bb868af9e9b03ae52b48e
MD5 c92575281eda84f4a32b9f5aba9a4f4d
BLAKE2b-256 1028737f96dccadddea710d05139f4e6e313a3f89982874773e43a978b7319f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bb838dd848841cabd2ca055aaf2625e353fd90324e560b6ac4125a9edd593d7f
MD5 426e69d579a7214129019a35ed3de2ba
BLAKE2b-256 0251ed8cbb6457c060c8e329f13aa855da7c3d66f99fc671342667ad8d6d5e23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c32eb9262a9e6d5783e59c5a807505a1c88d62b0ff1aa0a3b6977f1e1e76d5f6
MD5 1789d8513776173ad9cb603e6f5242cb
BLAKE2b-256 6bfcacb50b0bfd6d387c1f02468f612e59456280512ac3ff01060d8420fbd65e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df54afc5b29aa10645ba50424ea2e56bac564e34d85a1c1f50834d401021a232
MD5 8b4ce22c7f9b5034ae68f58e68cdb298
BLAKE2b-256 0a247928c028eb6ab4be7bca2cd103fa26c2d758727640242b9063e937298db3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6aef263f56316227f1f882a046600bf44003fb498ea2114128387a330e77cb2
MD5 f5dbb0ce0ce55b47342d06df1b8c3136
BLAKE2b-256 2f1b2fcd33328f25dfc0450438594faa3bee411bd48cd684a1829b23985ffa66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e42b4e79e6819894d65ff0a282d8ddb3f80e720d6165480e3acf9f90e55d45c
MD5 8718725eda80bb9914cd50f5c011ef5e
BLAKE2b-256 064b71a0857a4857b21afe7c8b593f60f95aae86ba210f0af105c17b94c991cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e93efc2f7d60a22379bac683e873743598fde0da5f1708a517ddcea78cbf729f
MD5 4f42749edacaf79bd6fdd14bf0032e7a
BLAKE2b-256 a3b8fb4c6244835a830a3d4e5de1f77b4629f5cf8dcc900abfe5f129edf9e1de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fc04fe2b983e4588eacea7c0b4d4c55447f93a924c046b0ae5d6a6c1d81ce59f
MD5 668a7c71d14d162cb7c749bbf2536ca6
BLAKE2b-256 056f537231578570d138d0375d72f167e9e65e8d2fca19591cb13e65ad616278

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e7fc27b5e32983806895cb004aa299733c36ce5e74a3ef7dfbfc435e9e1c27e8
MD5 7408f9405e47f0031cdf3c0f69bd94a2
BLAKE2b-256 49fd6b2d40aea82d26842b4fb8eaac3edec3829c3db6e390cba0f65182c5eafc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ccf8460711bf8a8011fb05aca85c9ed24e0a48961e51f79b6a36f8172b790867
MD5 b323cc916f643c4763401906bdda79dd
BLAKE2b-256 c2adc4fa9d262cf2770e3e34743785d4815e1027db2ba44c5bd41629bbc380ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4683d089350fafc4763a5c65557f3e63250f5185e83702fe146d5b9f90765770
MD5 41f6107eb611a6d9a8c63f472b867245
BLAKE2b-256 47ff0f2345d78252380274088c14a603adca721b8cd53b9694c04bc046b3bb72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68251eb081c94d7f5a2718663fdc5d987dca8fe44f084ae7af5899951e3f9d90
MD5 e175203dd2cbdb8529c46fe53e54ec84
BLAKE2b-256 bae5ee9fa735ece0a1a9b3465214b0222192de1273b8f33cdaaad4814efb6644

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e24b1ff27f6ce41c3a224339b1bce3ea2e6699e0b5f462db550f0fbb505871d8
MD5 8b7193ddb025fa947805f2d5c1afda75
BLAKE2b-256 07f27c267030724171851cb38e4795190a6095b18af561ed2051063c766d4e08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arize_phoenix_sqlean-0.1.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 662e4e82f1749d8e1381637e9ef8e5abee2499b86eb1588643dc5e19f8536204
MD5 3eb7485155809d3b5db7c121eb5ffb0e
BLAKE2b-256 ef2bbbd4051b7b381415873931fad620d091ab53df9b790c5b7fd5aa57f9b03f

See more details on using hashes here.

Provenance

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

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