Skip to main content

A lightweight, server-optional, multi-end compatible, Rust-powered vector database deployable locally or remotely.

Project description

LynseDB logo

LynseDB is a high-performance, low-cost vector database that can run either embedded inside your Python process or as a standalone HTTP service. It keeps a Python-first developer experience while moving storage and search execution into a Rust backend.

Use LynseDB when you want vector search that starts as a local library, can be deployed as a service when your app grows, and does not require a heavy database cluster for common semantic search, RAG, agent memory, and multimodal retrieval workloads.

Why LynseDB

  • Embedded and service-ready: the same lynse.VectorDBClient works with a local data path or a remote HTTP endpoint.
  • High-performance core: dense vector search, metadata filtering, index building, and storage paths are backed by Rust.
  • Low operating cost: run in-process for single-service apps and jobs, then switch to the HTTP server only when multiple workers or services need shared access.
  • Retrieval beyond dense vectors: supports metadata filters, named vector fields, sparse vectors, BM25 search, and hybrid search.
  • Deployment basics included: API key auth, health checks, readiness checks, Prometheus metrics, OpenAPI schema, snapshots, restore, export/import, Docker, systemd, and Kubernetes examples.

Best Fit

LynseDB is designed for teams that need a practical vector database with a small footprint:

  • local semantic search inside Python apps, scripts, notebooks, and tests;
  • RAG and agent-memory storage where one process can own the data directory;
  • web APIs and background workers that need a shared vector service;
  • multimodal records with multiple embeddings per item;
  • deployments where predictable cost and simple operations matter more than running a distributed vector database cluster.

For concurrent production access from independent processes, use the HTTP server rather than sharing one embedded data directory.

Install

Python 3.9 or newer is required.

Native Linux and macOS environments are supported. Native Windows environments are not supported; on Windows, run LynseDB inside WSL 2 (Windows Subsystem for Linux) or use Docker.

pip install LynseDB

Quickstart

import numpy as np
import lynse

client = lynse.VectorDBClient(uri="./lynsedb-data")
db = client.create_database("demo", drop_if_exists=True)
collection = db.require_collection("documents", dim=4, drop_if_exists=True)

collection.add(
    ids=["intro", "guide", "note-fr"],
    vectors=[
        [0.10, 0.20, 0.30, 0.40],
        [0.11, 0.19, 0.29, 0.39],
        [0.80, 0.10, 0.20, 0.10],
    ],
    fields=[
        {"title": "LynseDB intro", "lang": "en"},
        {"title": "Vector guide", "lang": "en"},
        {"title": "French note", "lang": "fr"},
    ],
)

collection.build_index("FLAT-L2")

result = collection.search(
    np.array([0.10, 0.20, 0.30, 0.40], dtype=np.float32),
    k=2,
    where="lang = 'en'",
    return_fields=True,
)

print(result.to_list())

One API, Two Deployment Modes

Embedded mode

Use embedded mode when one Python process owns the data directory. It avoids a network hop and is the lowest-cost way to add vector search to a local app, notebook, test suite, job, or small service.

client = lynse.VectorDBClient(uri="./data")

Service mode

Use service mode when multiple processes, web workers, or applications need to share the same database.

lynse serve --host 0.0.0.0 --port 7637 --data-dir ./server-data
client = lynse.VectorDBClient("http://127.0.0.1:7637")

With API key authentication:

lynse serve --host 0.0.0.0 --port 7637 --data-dir ./server-data --api-key your_key
client = lynse.VectorDBClient("http://127.0.0.1:7637", api_key="your_key")

Health, readiness, metrics, and OpenAPI endpoints are available in service mode:

curl http://127.0.0.1:7637/healthz
curl http://127.0.0.1:7637/readyz
curl http://127.0.0.1:7637/metrics
curl http://127.0.0.1:7637/openapi.json

Retrieval Features

  • Dense vector search with flat, HNSW, IVF, DiskANN, and quantized index families.
  • Standard SQL-style metadata filtering through where expressions.
  • Named vector fields for multimodal records, such as text and image embeddings on the same item.
  • Sparse vector search for feature-weight retrieval.
  • BM25 search over metadata fields.
  • Hybrid search with vector and text candidates.
  • ResultView return objects with NumPy arrays plus list, JSON, and dataframe conversion helpers.

Indexing

Start with a flat index as a correctness baseline:

collection.build_index("FLAT-L2")

Move to HNSW or IVF when latency matters, DiskANN when memory pressure matters, and quantized variants when you want a smaller memory or disk footprint:

collection.build_index("HNSW-L2")
collection.build_index("IVF-L2", n_clusters=256)
collection.build_index("DiskANN-L2")
collection.build_index("FLAT-IP-SQ8")
collection.build_index("FLAT-L2-PQ")

See the indexing guide for metric names, nprobe tuning, binary indexes, and quantized index variants.

Docker

docker run -p 7637:7637 -v lynsedb-data:/data birchkwok/lynsedb:latest
docker run -p 7637:7637 -e LYNSE_API_KEY=your_key -v lynsedb-data:/data birchkwok/lynsedb:latest

On Windows, use this Docker image or install/run LynseDB from a Linux environment in WSL 2.

Deployment examples are included in:

Documentation

Stability Notes

LynseDB is still evolving. Pin package and server image versions for deployments, and test migrations before upgrading. For concurrent production access, prefer the HTTP server over sharing one local data directory across independent Python processes.

Project details


Download files

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

Source Distribution

lynsedb-0.4.0.tar.gz (904.4 kB view details)

Uploaded Source

Built Distributions

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

lynsedb-0.4.0-cp314-cp314-manylinux_2_28_aarch64.whl (8.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

lynsedb-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lynsedb-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lynsedb-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lynsedb-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

lynsedb-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lynsedb-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lynsedb-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lynsedb-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

lynsedb-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lynsedb-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lynsedb-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lynsedb-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

lynsedb-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lynsedb-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lynsedb-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

lynsedb-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

lynsedb-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lynsedb-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lynsedb-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

lynsedb-0.4.0-cp39-cp39-manylinux_2_28_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

lynsedb-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

lynsedb-0.4.0-cp39-cp39-macosx_11_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

lynsedb-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file lynsedb-0.4.0.tar.gz.

File metadata

  • Download URL: lynsedb-0.4.0.tar.gz
  • Upload date:
  • Size: 904.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for lynsedb-0.4.0.tar.gz
Algorithm Hash digest
SHA256 26a1704806202dc39713459aa4d7e47a078f0618746a3bd58c565078c3ab4254
MD5 4a4b887ac5af9ac2c6d6a0a62a95ef2c
BLAKE2b-256 8e1d475ab45cb59acbe78736cec4fb3035d0fcdf2e9cb8ad13df5083c66a8de0

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a5a8727df29503509c806d00b0854043050d3f3e05142d7aa3acb35b21c720e
MD5 b22674afc94543a4250a011f9d3914a9
BLAKE2b-256 5e8c37206d510f8f48781d9823eff4eda7b29f329d44c0374b414a4180a9bd04

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcfc3bf65168242d7ed71058c1eef25519616a91ac17cbfe2208b3aada5f8a9a
MD5 f903cde757f2de684d76393c931cf1c5
BLAKE2b-256 337129f6ff7f51cbd1f876c7a1cb557a27ccd2d4cf5c8f5aadcac089c09310d3

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b5cc5497f59ccd187558e366f6e5b1fdc9787f2410c60c86c50626c41249ae9
MD5 f45cebe2cfa9ed518bfcc68b7758bc53
BLAKE2b-256 da0da85b9c90204bac5b346e6acaaf4c5d379417c37628d25f4b7032ff6aa788

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7c02c6ba3f082df173b32e9bd32c2170091555ccd0eaad501e7dbfd64939977f
MD5 2dce3d19e35eb2ea77ab6c9e22b6794e
BLAKE2b-256 9780e0c4857c5b9b7a8aa339f4b1deae4fcceb7d1e7d29a9bc6d19d6b3918f31

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89f8cfaa83a2b8ba30da40f6810e728be29459df10c8c88f6d1bb35039dcd811
MD5 381723ea231efa05e214c19e34aec047
BLAKE2b-256 8f4b06ce6fe07ae5623d6c712e825215fecc608d07eef5ab98e18501ebdf5705

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e03f94383c815602cb7a7c2c03e02424fe91e7a29cc47cd723bc566a12ada26
MD5 df6e828d1e7100a4d6c30a936cefe562
BLAKE2b-256 3fc3442a40278b2ee88ea5a458be6f686ff68549002dc0d0198d23847aeacb15

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ad447c15ecee86093ed8d2e09101c4a3e6f3fa899f0b4ef56258b0a91e5cf52
MD5 9edcd3998f40dadff0f4ae276c6338b2
BLAKE2b-256 e320320a9355ecc6f03e8f8ca0f1a11f3a27e1a08b81b7b6949f462fb9f780c9

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c96614ef52fa28c8da680b07fe28dfccba41e1b4a9ab0f9b9d1249ebe84c279b
MD5 4727f8007686939ae5135e42e2bcbf2d
BLAKE2b-256 f767fa1239985c2f17b1f1e90ad902342b4ef1e3378e450f72b96fce49310307

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e4c604ce57662d2650f56808f9055bbd37e56e44dece6c96252280d62d6f07a
MD5 a244e3a4b7f03f343a3bd16abef97bbd
BLAKE2b-256 0f31b8bd8055e81024c05c17c3de5871d781bf7154299477c2f3e0c0cb23b81f

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e022fa5b58e0468c44c4dc829db912d11ab5b9e41dcf0a4b917ddf3ea478740f
MD5 7775f8757a610c264fcc94165b7ef42e
BLAKE2b-256 4271335e674dcad594b31efc6711f573f77d15b2e2e6daa20e2a406212aecae9

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3f72758cb480cb0028e62fe9dc3aad94c0bdf792b51c7adcf9aeed5ba5750ae
MD5 b9bef0538799906ca66a6c9607d5898c
BLAKE2b-256 5ef76e4996db4127d7e2269026203eb6d12aca3d687bd4b9d758b7f140c5fe43

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e722638aea58fd2b93cac1e294f9c38f35f006f6a302bd84204bc37f9f1fc499
MD5 77d52b88002e69b1c1ff0f1590f876da
BLAKE2b-256 ccb428e51d48532a5d9fc39906e320532ba8955268af58841fee32151495bcd3

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 457c43d71d0c66dc5ced17255d9fcfbbb3829f791fb4ce25581944c5830ed34b
MD5 9d3ee5c11882141570b4deaedc73044e
BLAKE2b-256 67030e9625b844601b40e7bbe8e290bc246d68895f99a6fcf33ebf9326218ef0

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f15c7298f16ccb6d3c047c526517fcaea22b27f8c57d386b9ccefc71323369b
MD5 d3920fa4380036c0929d70b31f8ed37c
BLAKE2b-256 18c5cd50fdb3d93cf90cb6fe0d5ec8e63c24c3862b816a8560958ce5a889b6b6

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 917c8b1db392b604473e0f89f478ca897cf8a18ded8cb8ef3a34972abf6c9d2b
MD5 dfe1df25acb3b3132b752d2381f53fcf
BLAKE2b-256 06742c752c50e2ff3d534ebd32cdb4b030b765323cfebc93cd7753dffba6d44d

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a918fb99a7716fd31d6fc63fd56c1fff6572bea193a0a8a58f2ef030e04b92a
MD5 640d7b3e2d0a5bb2220eaad9c80849c0
BLAKE2b-256 e6a268db45bc8480ee21edd33bc108f69ee01aff656a90b2b1ed350b1b261f19

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf56b105f8a25e75803ec552e43b2fa28fbcf1e4ce516f0b0f4e3f04a4f19c4e
MD5 0c95a3c3b5581918c936fde4980efc67
BLAKE2b-256 9ff23ff7a679ac8fc405758bd793eab23e15672ebbdd6e7717b882d6d28ff903

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c87af5ac4fb3d1ce13a81b772dad1b8781c84234f652c9481ae2947e3e562f6
MD5 5d0b528bc768547c877b0aeb113a3ca0
BLAKE2b-256 88c4547dfd91829fd7c339c70c1ef32682bf41655844c4b9ef914c40b70276ac

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b1726ed895f529526c27c67590b1c2c2116aa0a1abfe4ffea883dcccf190a5d
MD5 818094fbead88c71400f4aeebc96000b
BLAKE2b-256 ee8385be4bb0d868bb654259e3cf2dcf8da039e7b735d5d36c97df946930db66

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3e79eb8580da7d85a72610ef232b868fcf64a1964866aa7619c90a391f7f1a0d
MD5 39f92609ccc364ecdc7e6d490048caa6
BLAKE2b-256 a0493606f2ec18f8db88239a943a84f4f617f568858b3c454660f459b3ad3fc2

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8098efd566d44d404d378bf90b0a674d4c60701f6e8d0fa954caa65a289f571d
MD5 8100f91d7cff1b29e1228f355b371f83
BLAKE2b-256 092c23664e3a15090c8e7b4e4c51b9dba6591d58b4e7ba7746c847994a8400d1

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b9d932f4484a2518fb25a115bd4cb745ecf0a617684dbb2586cee30ac5985a0
MD5 a037f28c9fc23ed42247f728a8046f36
BLAKE2b-256 ae10e73f93b205b31a59abc8048972717111d5417b3527ec1af0893d32c8eadf

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd572ad9fbb9b3d4c480204bba46bacc89ab35dba3b270a99968b39cbaaabb1a
MD5 601b8855496c93b1be6475b8b68e9d7e
BLAKE2b-256 6dc24a99610bd87426be95e6f358aef5b826882bf6d45e8017540e294ffeef7c

See more details on using hashes here.

File details

Details for the file lynsedb-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lynsedb-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0fea6c9c647e48d2e6ca11730fae023d2a0bb3f5d97ceb0180402d4414d5db48
MD5 711925ff37cb8f69ab13e557301bf908
BLAKE2b-256 cda18d4fc040066b07cafb7fd5e28ab5972e0f9762774c1d69c01ad53f20c896

See more details on using hashes here.

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