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) andexactindex 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
MetadataIndexandFilter. - 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.
Release files for elips 1.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| elips-1.1.0.tar.gz | 185.8 kB | Details |
Built distributions (wheels)
Total release size: 18.9 MB
Release files / elips-1.1.0.tar.gz
| Download URL | elips-1.1.0.tar.gz |
|---|---|
| Size | 185.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
cf245ec9eedb71e32aefe4a66b2aaca06e0e5cdc5e423f073dd49beb2e3b5f1a
|
|
BLAKE2b-256 checksum How to use checksums |
60b5b81905eace4e2dea488b28554716942fbda8f408c54c0b18977b0f36e6bc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp313-cp313-win_amd64.whl
| Download URL | elips-1.1.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 507.8 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
1b48e8c0ce1d3f2a5a9054a5d26869395006347ac426be7a8754c2b06391b909
|
|
BLAKE2b-256 checksum How to use checksums |
5642561826fe099126f447ef2ead8688b0467099add39a782a27efaf8a4b8743
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | elips-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 1.6 MB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
d6c9cb49cb74c8b0373fa7635b94ded1f98cf28eaea2c377a7a9ae1b10e725ba
|
|
BLAKE2b-256 checksum How to use checksums |
9e96717f8691816d1df6a5f35775a7d721eeb7ed153911422131d9b17c409b2d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | elips-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
fa5ec5253d57332d8ca5b86e1df218be9b0c9f367e9f43e93a1a21f8dfa27c9b
|
|
BLAKE2b-256 checksum How to use checksums |
53988f405b0ab4aa3d677386f2b281da05c132448328a09c90df4058fed0dea4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | elips-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 703.2 kB |
| Tags | CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
9e9facdb7375ed458aeae217b594d87be4501c0e276a36ebebc203f10ddf4c3e
|
|
BLAKE2b-256 checksum How to use checksums |
6eb16604e6125a2e402139bf97e0822ddcd8d693b6ea95be2eaea802cffe52bd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
| Download URL | elips-1.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 612.3 kB |
| Tags | CPython 3.13 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
2599ca65ab3a0fc242a11d0113af527439470aada938a98bac468f0a2ba2d904
|
|
BLAKE2b-256 checksum How to use checksums |
687a69fe3638efacdf7fdcd8c67eba08dd35bce49943afbf3d5ef7ad14ceda86
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | elips-1.1.0-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 608.5 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
bc68339bcd9d0ad978a293493e497a0d9e9a4cb823198b0deddf6668ceaa86d0
|
|
BLAKE2b-256 checksum How to use checksums |
41b9955a3e41ef311510dff98f5b8c292f045113d66341b76e57394f5d03930f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp313-cp313-macosx_10_15_x86_64.whl
| Download URL | elips-1.1.0-cp313-cp313-macosx_10_15_x86_64.whl |
|---|---|
| Size | 649.3 kB |
| Tags | CPython 3.13 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
4047a9f9416a095d4afef2ebda2ba452d1f15bd0e3d7207f10637341bf75bf9d
|
|
BLAKE2b-256 checksum How to use checksums |
417ba3a0b3ad71bc72b6e1c7ed8e1e2bc864777bfa62b7faa6451e0a61b38aaa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp312-cp312-win_amd64.whl
| Download URL | elips-1.1.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 507.8 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
fcf497a3650b8e959622b96ad562df20075518baf7481a854004d532f4b79f53
|
|
BLAKE2b-256 checksum How to use checksums |
4ee873f831806403945ddc9942cce76086d7dbbb5f41be79a88b4e43c147698a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | elips-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 1.6 MB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
7757650a62c2aa4a4486102e4fee3b7f93c51146069c1ef0767c8f82f9dbb273
|
|
BLAKE2b-256 checksum How to use checksums |
4fb154222dd43cafcbb2a6f9365da0d89278487c0c4e65eee1b1ae273fae66a6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | elips-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
9a1a4fcaab67c77cec60ebf4fbd83f0e916eceff6202f21115982560a1699e2e
|
|
BLAKE2b-256 checksum How to use checksums |
ea675b38bd850ad095b41ed8e97e32b0cc451b273bc475d16c5b750ffcc56ee1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | elips-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 703.2 kB |
| Tags | CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
bbf9982bae6be8924fc200f3571f2f08ea4aa5965fa512c2386564bd7b4d20a7
|
|
BLAKE2b-256 checksum How to use checksums |
6ee6fc5372f3b89f99746717670628522d3e49de444700695050ae8f619a738a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
| Download URL | elips-1.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 611.8 kB |
| Tags | CPython 3.12 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
4403c2871ba911f6ab883af743e09ea3fe1613cc5d3a4235e514e66bd223c483
|
|
BLAKE2b-256 checksum How to use checksums |
fc4b2eef844b85da0a6ea0adf182df0552ae4f2740248ccb1680f68f0666f007
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | elips-1.1.0-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 608.5 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
88aabdb49f00770d7f377c58f8253c42354ac85799a0af8147eab8fa10f5acaa
|
|
BLAKE2b-256 checksum How to use checksums |
3538fd9b283d090c4de20ae2be0eb045a39555b7b0043d4bb5474fe70e412f43
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp312-cp312-macosx_10_15_x86_64.whl
| Download URL | elips-1.1.0-cp312-cp312-macosx_10_15_x86_64.whl |
|---|---|
| Size | 649.3 kB |
| Tags | CPython 3.12 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
5446a161a8f37f42ec5f82c5ab9610e8e02ac0976ee0af3420da030963827168
|
|
BLAKE2b-256 checksum How to use checksums |
e0e5e2060fe79e246e07f640ebd15e7e4dc9b8b91f11b9a257f49dfb107a8ebd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp311-cp311-win_amd64.whl
| Download URL | elips-1.1.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 503.0 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
06f73f047bd2133726804e37dbaf562a6d42484ab936125f2a69c8970fb8c057
|
|
BLAKE2b-256 checksum How to use checksums |
53c186edbf7d0a8476bea76374f7ee4ee52d35a3b20c2c89fb0cdc03c4f39662
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | elips-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 1.6 MB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
9d15c2b9ca9d241629ec366870ba3f3e47211e1acd15bdba372c26bf832299b5
|
|
BLAKE2b-256 checksum How to use checksums |
8a9675ddc1ef6f2cc6d2f574a3a620b37bd70585f5de316b8b8b486e88913f48
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | elips-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 1.5 MB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
b990925470f0f2aabe0102bade7196a7665a479167570d373b9dec6ef6364ce8
|
|
BLAKE2b-256 checksum How to use checksums |
94eac2c575e35ab5061b2ed281403413d72c8672d9fc815314e8cbdf972a0033
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
| Download URL | elips-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl |
|---|---|
| Size | 704.0 kB |
| Tags | CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
f6191111b135db57384ea6ce497d7f82ddfc30b1ab1052b495dba022eb556486
|
|
BLAKE2b-256 checksum How to use checksums |
43be6eaad8a723a9d2db3a4b2ad8009e282255319a9095d37b7b6a870637ff9a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
| Download URL | elips-1.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 614.4 kB |
| Tags | CPython 3.11 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
7a00e128183855c7d427e03c8ccf8a92f8e790672af9b462b2874064f04687e2
|
|
BLAKE2b-256 checksum How to use checksums |
9988ebe5d9d036cf9f1afbf15444f08eab93e02c294263c1d47be01ed30aad6f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | elips-1.1.0-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 606.2 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
446b889f2b06be5fc57e73ed8ae2e19ceac91919bddaab22c293a97cd33c9c89
|
|
BLAKE2b-256 checksum How to use checksums |
b317a32a7dbf12058afa88a474f08001e076334a0664b657908754adc67b63f3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency logRelease files / elips-1.1.0-cp311-cp311-macosx_10_15_x86_64.whl
| Download URL | elips-1.1.0-cp311-cp311-macosx_10_15_x86_64.whl |
|---|---|
| Size | 640.1 kB |
| Tags | CPython 3.11 macOS 10.15+ x86-64 |
|
SHA-256 checksum How to use checksums |
a85c350a0964ffa039d2fff83b292a353a01d9f8d629519970bae1dfe37db0ce
|
|
BLAKE2b-256 checksum How to use checksums |
7acf1cf43c27c7a626cc34d16de23306540abaa129ccd85c0390a68d786d1fc5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 9, 2026.
Transparency log