Skip to main content

ELIPS (Python Bindings)

Embedded Local Index & Persistence System (ELIPS) Python package.

ELIPS is an in-process vector and document retrieval engine built in C++23 with native Python bindings. It keeps the embedded deployment model of SQLite, but adds ANN indexes, typed metadata filters, first-class document lineage, hybrid retrieval, segmented persistence, and optional GPU-backed indexes.

Installation

From PyPI

pip install elips

From Source

pip install .

Note: Building from source requires a C++23 compatible compiler (GCC 13+ or Clang 17+), CMake >= 3.24, and Ninja.

Quick Start

import elips

# Connect to database (either path or ":memory:")
engine = elips.connect(":memory:", dimension=128)

# Access or create a documents arena
arena = engine.arena("documents")

# Ingest documents with text and optional metadata
arena.ingest(
    texts=["alpha design note", "beta incident runbook"],
    meta=[{"kind": "design"}, {"kind": "ops"}],
)

# Run semantic search
for hit in arena.probe_text("alpha", top=2):
    print(hit.key, hit.distance, hit.text, hit.meta)

Features

  • Vector Search: Optimized HNSW (graph) and exact index backends.
  • Embedded Deployment: Simple SQLite-like single-writer/multi-reader lock model.
  • Local Embedding: Built-in local text embedding using local models.
  • Metadata Filters: Rich metadata equality filters via MetadataIndex and Filter.
  • Hybrid Retrieval: Combine dense semantic search and document retrieval out of the box.
  • Segmented Persistence: Durable writes with WAL crash recovery and snapshot checkpoints.
  • GPU Acceleration: Optional Metal backend on Apple Silicon and CUDA/Vulkan backends on Linux.

License

ELIPS Python bindings are released under the MIT License.

Download files

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

Source Distribution

elips-1.1.0.tar.gz (185.8 kB view details)

Uploaded Source

Built Distributions

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

elips-1.1.0-cp313-cp313-win_amd64.whl (507.8 kB view details)

Uploaded CPython 3.13Windows x86-64

elips-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

elips-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

elips-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (703.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

elips-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (612.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

elips-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (608.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

elips-1.1.0-cp313-cp313-macosx_10_15_x86_64.whl (649.3 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

elips-1.1.0-cp312-cp312-win_amd64.whl (507.8 kB view details)

Uploaded CPython 3.12Windows x86-64

elips-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

elips-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

elips-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (703.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

elips-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (611.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

elips-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (608.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

elips-1.1.0-cp312-cp312-macosx_10_15_x86_64.whl (649.3 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

elips-1.1.0-cp311-cp311-win_amd64.whl (503.0 kB view details)

Uploaded CPython 3.11Windows x86-64

elips-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

elips-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

elips-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (704.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

elips-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (614.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

elips-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (606.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

elips-1.1.0-cp311-cp311-macosx_10_15_x86_64.whl (640.1 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

File details

Details for the file elips-1.1.0.tar.gz.

File metadata

  • Download URL: elips-1.1.0.tar.gz
  • Upload date:
  • Size: 185.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for elips-1.1.0.tar.gz
Algorithm Hash digest
SHA256 cf245ec9eedb71e32aefe4a66b2aaca06e0e5cdc5e423f073dd49beb2e3b5f1a
MD5 375756b115822b87a1e6a138686eb88b
BLAKE2b-256 60b5b81905eace4e2dea488b28554716942fbda8f408c54c0b18977b0f36e6bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0.tar.gz:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: elips-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 507.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for elips-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1b48e8c0ce1d3f2a5a9054a5d26869395006347ac426be7a8754c2b06391b909
MD5 f63ea9b8fa863944947749c17c0f0cdf
BLAKE2b-256 5642561826fe099126f447ef2ead8688b0467099add39a782a27efaf8a4b8743

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6c9cb49cb74c8b0373fa7635b94ded1f98cf28eaea2c377a7a9ae1b10e725ba
MD5 e987cf7b132c6018105f2c051e9c8998
BLAKE2b-256 9e96717f8691816d1df6a5f35775a7d721eeb7ed153911422131d9b17c409b2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa5ec5253d57332d8ca5b86e1df218be9b0c9f367e9f43e93a1a21f8dfa27c9b
MD5 217da7d5e2f1a321b35143418d374096
BLAKE2b-256 53988f405b0ab4aa3d677386f2b281da05c132448328a09c90df4058fed0dea4

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e9facdb7375ed458aeae217b594d87be4501c0e276a36ebebc203f10ddf4c3e
MD5 7719ce748c94147029a2818480e60cb1
BLAKE2b-256 6eb16604e6125a2e402139bf97e0822ddcd8d693b6ea95be2eaea802cffe52bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2599ca65ab3a0fc242a11d0113af527439470aada938a98bac468f0a2ba2d904
MD5 acf60c79f4847699c3bbf83494cf8d45
BLAKE2b-256 687a69fe3638efacdf7fdcd8c67eba08dd35bce49943afbf3d5ef7ad14ceda86

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc68339bcd9d0ad978a293493e497a0d9e9a4cb823198b0deddf6668ceaa86d0
MD5 806b7a380cfe7cc3f66206a316cfe2d1
BLAKE2b-256 41b9955a3e41ef311510dff98f5b8c292f045113d66341b76e57394f5d03930f

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4047a9f9416a095d4afef2ebda2ba452d1f15bd0e3d7207f10637341bf75bf9d
MD5 188704b1486fc750752eff1aab306fed
BLAKE2b-256 417ba3a0b3ad71bc72b6e1c7ed8e1e2bc864777bfa62b7faa6451e0a61b38aaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: elips-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 507.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for elips-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fcf497a3650b8e959622b96ad562df20075518baf7481a854004d532f4b79f53
MD5 a4d39b05543b9f26d2ef61e5acb4f8f0
BLAKE2b-256 4ee873f831806403945ddc9942cce76086d7dbbb5f41be79a88b4e43c147698a

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7757650a62c2aa4a4486102e4fee3b7f93c51146069c1ef0767c8f82f9dbb273
MD5 ffd41f7798143614e18b17d5a56e5759
BLAKE2b-256 4fb154222dd43cafcbb2a6f9365da0d89278487c0c4e65eee1b1ae273fae66a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a1a4fcaab67c77cec60ebf4fbd83f0e916eceff6202f21115982560a1699e2e
MD5 3e5261595758acc6337e3450f5afaa05
BLAKE2b-256 ea675b38bd850ad095b41ed8e97e32b0cc451b273bc475d16c5b750ffcc56ee1

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bbf9982bae6be8924fc200f3571f2f08ea4aa5965fa512c2386564bd7b4d20a7
MD5 f9abbd77dd8293da8f75384550aaa44c
BLAKE2b-256 6ee6fc5372f3b89f99746717670628522d3e49de444700695050ae8f619a738a

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4403c2871ba911f6ab883af743e09ea3fe1613cc5d3a4235e514e66bd223c483
MD5 ad467f40c2c4ad87bdadd1a838364d4a
BLAKE2b-256 fc4b2eef844b85da0a6ea0adf182df0552ae4f2740248ccb1680f68f0666f007

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88aabdb49f00770d7f377c58f8253c42354ac85799a0af8147eab8fa10f5acaa
MD5 0b6d2f8ac00485186698daff23a29dbf
BLAKE2b-256 3538fd9b283d090c4de20ae2be0eb045a39555b7b0043d4bb5474fe70e412f43

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5446a161a8f37f42ec5f82c5ab9610e8e02ac0976ee0af3420da030963827168
MD5 7764f1514cfbb332ddd94416a70a9b18
BLAKE2b-256 e0e5e2060fe79e246e07f640ebd15e7e4dc9b8b91f11b9a257f49dfb107a8ebd

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: elips-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 503.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for elips-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 06f73f047bd2133726804e37dbaf562a6d42484ab936125f2a69c8970fb8c057
MD5 102660efe86c906cff9daec728eafcd8
BLAKE2b-256 53c186edbf7d0a8476bea76374f7ee4ee52d35a3b20c2c89fb0cdc03c4f39662

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d15c2b9ca9d241629ec366870ba3f3e47211e1acd15bdba372c26bf832299b5
MD5 39988edee8a4a968f5a273f2e2e009a9
BLAKE2b-256 8a9675ddc1ef6f2cc6d2f574a3a620b37bd70585f5de316b8b8b486e88913f48

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b990925470f0f2aabe0102bade7196a7665a479167570d373b9dec6ef6364ce8
MD5 919afd0cbd84826982a62565de4bf49e
BLAKE2b-256 94eac2c575e35ab5061b2ed281403413d72c8672d9fc815314e8cbdf972a0033

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6191111b135db57384ea6ce497d7f82ddfc30b1ab1052b495dba022eb556486
MD5 04bf8544ec35a3c0139d342ce61c0e4c
BLAKE2b-256 43be6eaad8a723a9d2db3a4b2ad8009e282255319a9095d37b7b6a870637ff9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a00e128183855c7d427e03c8ccf8a92f8e790672af9b462b2874064f04687e2
MD5 04cd044f8a269d8d29fec10f76ad0167
BLAKE2b-256 9988ebe5d9d036cf9f1afbf15444f08eab93e02c294263c1d47be01ed30aad6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 446b889f2b06be5fc57e73ed8ae2e19ceac91919bddaab22c293a97cd33c9c89
MD5 529966e3cc42dccba30ba35f91a9fadc
BLAKE2b-256 b317a32a7dbf12058afa88a474f08001e076334a0664b657908754adc67b63f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on axiomchronicles/elips

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

File details

Details for the file elips-1.1.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for elips-1.1.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a85c350a0964ffa039d2fff83b292a353a01d9f8d629519970bae1dfe37db0ce
MD5 ea5e9f9dd0b714e003c3eaa4c23e25aa
BLAKE2b-256 7acf1cf43c27c7a626cc34d16de23306540abaa129ccd85c0390a68d786d1fc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for elips-1.1.0-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: release.yml on axiomchronicles/elips

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