Skip to main content

Efficient lexicon data structures: Trie and DAWG

Project description

lexrs

Efficient lexicon data structures — Trie and DAWG (Directed Acyclic Word Graph) — backed by Rust for 10–100× faster insertion and search compared to pure Python.

lexrs is the successor to lexpy. It exposes the same API, so existing code requires minimal changes.

Install

pip install pylexrs

API

Both Trie and DAWG expose the same interface:

Method Description
add(word, count) Insert a word with an optional frequency count
add_all(words) Insert from any iterable
add_from_file(path) Insert words from a file (one per line)
contains(word) Exact membership test
contains_prefix(prefix) Check if any word starts with the given prefix
search(pattern) Wildcard search (* = zero or more chars, ? = exactly one)
search(pattern, with_count=True) Like search, but returns (word, count) pairs
search_with_prefix(prefix) All words beginning with the prefix
search_with_prefix(prefix, with_count=True) Like above, with counts
search_within_distance(word, dist) Levenshtein fuzzy search
search_within_distance(word, dist, with_count=True) Like above, with counts
get_word_count() Number of words stored
len(t) Number of nodes in the structure

Usage

from lexrs import Trie, DAWG

# ── Trie ──────────────────────────────────────────────────────────────────────
t = Trie()
t.add("hello", 5)           # word + optional frequency count
t.add_all(["world", "foo"])
t.add_from_file("words.txt")

"hello" in t                # True
t.contains_prefix("wor")    # True
t.get_word_count()          # total words stored
len(t)                      # total nodes

t.search("h*")                               # wildcard → list of words
t.search("h*", with_count=True)              # → list of (word, count)
t.search_with_prefix("wo")                   # prefix completion
t.search_with_prefix("wo", with_count=True)  # with counts
t.search_within_distance("helo", 1)          # fuzzy, Levenshtein ≤ 1
t.search_within_distance("helo", 1, with_count=True)

# ── DAWG ──────────────────────────────────────────────────────────────────────
# DAWG compresses shared suffixes — fewer nodes for large lexicons.
# Words are sorted automatically by add_all.
d = DAWG()
d.add_all(["apple", "apply", "apt"])

"apple" in d                          # True
d.search("ap*")                       # wildcard
d.search_within_distance("aple", 1)   # fuzzy

Wildcard syntax

Pattern Meaning
* Zero or more characters
? Exactly one character
h* All words starting with h
?at Three-letter words ending in at
a?* Words of two or more characters starting with a

Consecutive wildcards are normalized (***, ?**).

Migrating from lexpy

# lexpy 1.x
from lexpy.trie import Trie
from lexpy.dawg import DAWG

# lexrs
from lexrs import Trie, DAWG

The API is otherwise identical.

More

Full documentation, the production HTTP server (reader/writer), Docker Compose setup, and benchmarks are available at github.com/aosingh/lexrs.

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

pylexrs-1.0.0.tar.gz (32.4 kB view details)

Uploaded Source

Built Distributions

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

pylexrs-1.0.0-cp314-cp314-win_amd64.whl (232.6 kB view details)

Uploaded CPython 3.14Windows x86-64

pylexrs-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pylexrs-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (390.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pylexrs-1.0.0-cp314-cp314-macosx_11_0_x86_64.whl (351.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

pylexrs-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (342.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylexrs-1.0.0-cp313-cp313-win_amd64.whl (234.9 kB view details)

Uploaded CPython 3.13Windows x86-64

pylexrs-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pylexrs-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (390.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pylexrs-1.0.0-cp313-cp313-macosx_11_0_x86_64.whl (351.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

pylexrs-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (342.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylexrs-1.0.0-cp312-cp312-win_amd64.whl (235.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pylexrs-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pylexrs-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (390.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pylexrs-1.0.0-cp312-cp312-macosx_11_0_x86_64.whl (352.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

pylexrs-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (342.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylexrs-1.0.0-cp311-cp311-win_amd64.whl (234.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pylexrs-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (399.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pylexrs-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (393.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pylexrs-1.0.0-cp311-cp311-macosx_11_0_x86_64.whl (352.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

pylexrs-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (344.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file pylexrs-1.0.0.tar.gz.

File metadata

  • Download URL: pylexrs-1.0.0.tar.gz
  • Upload date:
  • Size: 32.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pylexrs-1.0.0.tar.gz
Algorithm Hash digest
SHA256 c83958fbe30488739faa03ed4dbd3ee32631fe56cac7c9e1d784b261544f6cc1
MD5 edbc8f65ab975f9d0380c1e0c6788599
BLAKE2b-256 839e1dba13b11f5e9469b985cfe2764a94a7b4a76e029869eeb8e77fcfaa2c59

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0.tar.gz:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pylexrs-1.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 232.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pylexrs-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9002a105879fce4d939e062d68b01d95ccd24b301953021e35c997bd4a7f58f9
MD5 147c3e1c91a1035a81ef7207d52ce23b
BLAKE2b-256 d479871199488e3d56e787406182df8f322136f53ca9de2d5b39a96825e3dbf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp314-cp314-win_amd64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a24232fe5d15eb969693c24a7886f58739b9c6ea8fc4bb2670318c58eccd43b2
MD5 385fa8b36631f4350894c0bd0d84ad9b
BLAKE2b-256 428888c213a569474f07257ee5274311cf63702d71e1466f6b081e2276c1f6c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5353594417d3e174ba2e43d584638df76b7d259574b157662e2ab01164360592
MD5 992463718e5001d13cf67396a04a1905
BLAKE2b-256 5343e8058e4aa9a8d05a58ba2ae28e1d13244fe0ce88658a8269c1fd8a53bfe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 51592d5ea0126dab43e4058cdae20d0ce751c1274438e6c1040e784a4c97c0f0
MD5 c90390ae96037788603006dee85927b2
BLAKE2b-256 9740de1c69fd4c8c09b43e5dcf3797e34417471ed4c71c65014da3726dc29d3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp314-cp314-macosx_11_0_x86_64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d64fe48e07e49d98eca67e6bcb12fb6b8abe3cfa2fa4378e3a21b2c689e47b77
MD5 b42c0532d0f498fe0c940f30737e3c63
BLAKE2b-256 a9c8a43634a55a4ca1396df0fe3ae47ffb8e9e46f545b02f6d5b17aabd52874f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pylexrs-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 234.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pylexrs-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f283b58696843fcafb382817822e1617cda3545118beb73d90a20f6cedf75c87
MD5 8bb1d153283c9951ad1f2989bca4e2af
BLAKE2b-256 fdd2a508588ba6ab4332b43abda95abe6838fa2ec041d8d4878dc7812ae141f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp313-cp313-win_amd64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1447526e11246134e3863f669751901a1479af548bbe73f42053b69294200cbc
MD5 392556417fb0266b644a7516177c1307
BLAKE2b-256 cb812f5fbd7bec56807e6f6ed92401cafdec03fb3c794e4fe2be45978d3b2fad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 652d5f164eb5dfbc0a800d685c3857dbc60cba60c8ed79ffb597f63df2cff8dc
MD5 f9473d875202d8f99b149139605c85de
BLAKE2b-256 268f44994cb904214135c858b9dc6d840be279d0f0dd095976fba69dab8c1b6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d29a238e06b1900c81bf82520899bdc6f7fa0325e449927e4dbb882f7aed3ea9
MD5 4173ac5a167f291e6aed5e1f30d01d4c
BLAKE2b-256 74702fd94236b3a723341fba6752d9ce4a28993f2b2063518ffc9e090519c4ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ce5d07e44c57b21f208d6d848c59a25109572e6926b377d5cd3b0ab4cbd5768
MD5 547436a963aab06abf5aed60d6f664a8
BLAKE2b-256 ea475be2e7e6c2127c5be7bdf50f4e9fd3cb4bbd69509a8346d67757ded21012

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pylexrs-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 235.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pylexrs-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e770b8fb7d65b0c4280e9e31ba97a189aab8dd0a4ccad235963a13999f8b0d02
MD5 bbeb75d993c37b40cd5c5bb68b8aad18
BLAKE2b-256 852ccdf72b5192a915e465a9517c4a7256f026deb6cb822f754993147272ecb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp312-cp312-win_amd64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ac6fb31a151c15d0bd4b574630596b8be50b36ee99be30c1b9c222651fc1242
MD5 c9ae9a037da513a4b35b1759deb9e0bd
BLAKE2b-256 1e61030043f3640f6e08dbcd20c2dda95197cf1799d16243c2d2a9baeaa6db24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3733dc1fdfd0bbf4a6d9686621f18a18fff3b331fb9e4b95e6d74234e438d427
MD5 5b4f51d9c38c935c606d54a111e58d24
BLAKE2b-256 44c5eb4f7b8340126302d30d81fdf6b621a40a04bd17b6a38a2d16fb9fc94268

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 73954ef0b4603f0a224e6aec020daa9bf9a92b3fc217bdd7d937e6ad3937aa1e
MD5 e23d752a4e9aee40e4564acc23ef9fb3
BLAKE2b-256 28f6fdb262353d05fbf022b9d89e257c46c7a4dc11c9cd5d4e25c19d78344057

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0584d795961b60d95b04cd9949e5292c8a7b5460c8b4f4ad87e9561b10549b7e
MD5 133eb52db5fe7c620b8a01e8ce9976f4
BLAKE2b-256 e0614d9a55ff5df95babc5cad4220ece057ca1b16a429f498a397397747c50f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pylexrs-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 234.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pylexrs-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a8e0c55ed2d634bf2b0efc170897d81b97397472ce739971a870a9d92c9d4af
MD5 5970e5ff37db065d08c73c2fbc157243
BLAKE2b-256 9b0f6404b26fa676d97f26c2aea96c0e0800a355aa28d6bf68a97eff04036757

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp311-cp311-win_amd64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac8dddffbf5594938b4696ee982a5882c6ad0d3887279b75ce6eca93259f8c85
MD5 8c79412130b23a6b84e1315d01ce9620
BLAKE2b-256 d336618d99eefbb23ed80abe71dc5643401bd5c95c5810e90469a6a124d4b471

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4266b1b9adc109ac80356c1aafbd1cd33f7867c4d9469ae91ba450de8057ef5
MD5 9eff73efeeed115f2a742c67907fb14c
BLAKE2b-256 67fc054a04c821b465103c182366d2842f68fc2fc16fc0bf505f1f595f7c2b9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 81baa6f60a2bf2185551c1fe76b1f5041c4109fd869267b6640ca8d44f1f7122
MD5 c072e6128d0b6d23511c7100863b948d
BLAKE2b-256 f3fca93ee45918001d25f7eaeae0c97350d3ca6a7e7c18c31b8613d0829e7ae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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

File details

Details for the file pylexrs-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylexrs-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca57a3f28c26b74e6ba4534d918328a034346cdaf4ac32eb5b4d2b12b9d94cee
MD5 e36f32c634f29cdf5460a647f4f6ff39
BLAKE2b-256 7609a42bbc37dfcb6969e71fc57e5a2a98492db398311156deb5909e59013cca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-1.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on aosingh/lexrs

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