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-0.2.0.tar.gz (30.8 kB view details)

Uploaded Source

Built Distributions

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

pylexrs-0.2.0-cp314-cp314-win_amd64.whl (166.4 kB view details)

Uploaded CPython 3.14Windows x86-64

pylexrs-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pylexrs-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pylexrs-0.2.0-cp314-cp314-macosx_11_0_x86_64.whl (272.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

pylexrs-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (268.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pylexrs-0.2.0-cp313-cp313-win_amd64.whl (166.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pylexrs-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pylexrs-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pylexrs-0.2.0-cp313-cp313-macosx_11_0_x86_64.whl (272.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

pylexrs-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (267.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylexrs-0.2.0-cp312-cp312-win_amd64.whl (166.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pylexrs-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (306.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pylexrs-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pylexrs-0.2.0-cp312-cp312-macosx_11_0_x86_64.whl (272.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

pylexrs-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (268.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylexrs-0.2.0-cp311-cp311-win_amd64.whl (168.5 kB view details)

Uploaded CPython 3.11Windows x86-64

pylexrs-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pylexrs-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pylexrs-0.2.0-cp311-cp311-macosx_11_0_x86_64.whl (274.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

pylexrs-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (269.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pylexrs-0.2.0.tar.gz
Algorithm Hash digest
SHA256 0c7757e120dd74952321e9a7c0490e94b133ffbf1cde01cd846b10b3473b627d
MD5 6febb2d1cb4ab7a0a58d35eee3d81846
BLAKE2b-256 3633880e2ac93c7006946bd6ce5d5350f71435bcfd21514252c35a7a4023c02e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pylexrs-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 166.4 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-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d90109cfe3ea6b8eb2d819c71947487f3dd3780dda3c8384de5ee5247f9c2c56
MD5 4a1b1a74cc6be1ed571af85ed12a0127
BLAKE2b-256 d137270dd3a6e22a141d053e1252efc99397ab883337a1f5d8646ddbff1960d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6984f8bce0b9059c02c0181ad997dd2cc51065020cf83ab5773d914923a560ea
MD5 5b7a1d47c5574e370539baa3f0af6c1c
BLAKE2b-256 2d84075fe038896e035bca105429e570b796264bc490cd41809f980763d45ede

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ed9288ccca3747dcda1f280a887ccfb4f9d7e705c7ef13acbc2730d17fc1526
MD5 b1942377b45222addd2227126d29dfe3
BLAKE2b-256 715b42730e21bbdca0b156723945ce5a55f8617cdf45380f9fbccde4d43186fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3da4ce7af6da20a697079d8279022386855bc2ce5d6525fc134dc9b75326133e
MD5 1bcdf29e6c38c86472eabf703c9ddd00
BLAKE2b-256 afbf1539db42cfa77cf9094e8b1a326d32ffd0f71cd5d07794cf9b99ccf721a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21a27891756a0a98bc6d5a0139287cf2f76ceb8742bdd92162907b4d957b9a33
MD5 99f39fde77a6f56dfbd022ce9251ef1c
BLAKE2b-256 65d74f073daf4e48ccfe92d9e7e1f33c17a6ef092500e809d7fb3ab304efc943

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pylexrs-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 166.2 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-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 901c11b4d2b0789b6d47ec2f62e5d13907018d30969df79dd1f317a1ed8d6f3d
MD5 3e28ef9c7cf4de6dd8e483b93d09f4eb
BLAKE2b-256 cd629bb3205187eb69ea36560bcb395908faab611ce2c32203a2871cf36108cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 525bcda3b0bb7469f1426d948bcc7cdeab00ab4c3faf105ab6564ac9d8ffe4af
MD5 edba47fa04ad380927f3ee615e92ee48
BLAKE2b-256 42a4c0bb110c286a7fba40325caf8b7d6339a33a84e01099a88758d8ee87b3f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e236ecfcbcbbf780c5a34146d786e7c3794e3265f3b7043be62b789c6c45327
MD5 00a6bb2973fe683f0be20218cc7ee94c
BLAKE2b-256 a94b9872237e662cd7804241340fb24d2f16f75f09093ac0782aeb796a82918a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 67a9bec32cdb3f1cc275bd1e3ce004ab17827aac7857571e5bc91e5b03b979d3
MD5 7fede76f2e5fd036e4a4dc75b117f311
BLAKE2b-256 9994252246f73ba0448736c46937659aaced11626d34fdc0642c1332c33b6396

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e19a601f1ada40a234f652949e3dd88fdb132c576943bacd1389f6a3362f991d
MD5 cb18b96c50f1f1cd00f05b460c821a17
BLAKE2b-256 8b16ab5602c8dfcbcdd13eaf37b138f46514e06e5db203fe9c7f04f9f0990541

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pylexrs-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 166.7 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-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 839fa13704a94440fc2faea404c63908a4bc4e087144acd16e1907970f371326
MD5 fe00705b9011a4546712f0f38c8a8a89
BLAKE2b-256 dd91f459c498aa42b6477440339c073c8bb3385970b3cfa96c7edc7f32ea8e0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3dd394cb1873dc465f19ed8bcac64f1433c1d3dfc41bdc1cfa49a825f6fa421
MD5 f9b528b83c9079d0f77a5acce97854d4
BLAKE2b-256 cf8952f76e068cd3939ff4fa76e8ff5e2ce439468a9e066d92e719fdd7321c3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84814cfea398d9ddd6ac3326e61228b7bd3db25ffde5d06753cb5957438903cc
MD5 0318a6e3548ba6a5425ff7e52493cace
BLAKE2b-256 c7e9f48cf120942195a603da579f17020694a299ba803704000c500c5a626f38

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9ac02863db603d53d73d26de6225fe49f374f8ac017fa48028c3958c2bcdb39d
MD5 9de39f05380bb0d5a1a135f261d0c0d7
BLAKE2b-256 8ea630bdfe0abada7c300ef5de53f72b6e49fc9bfd46e2093c2a4c64a75f4572

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a0e81ed28ede136a311764f3de3d1080d9ab7eb23023115b6734e98b743d66b
MD5 0e3f4a5279ca204398e7933d97eb9309
BLAKE2b-256 0f5401a5b026a5d161c8a67fe6a36175d1b25c20376937cb4400fa4d043ab539

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pylexrs-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 168.5 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-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8aa17f05a3cffdb1469df8b937ba705ec9b07ce116aed6b01598526bfb2081b8
MD5 4af9d70d568fcb413c14fb6289f9a655
BLAKE2b-256 d8bfe6f8650f296fd8eaf2cb9878cc555d5acd93a0d54e6fa2838b21e8888c7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38e3f9133fbf0d11fe23bf2a2944ccb543f53fb6b0956428f1d5ed742616106b
MD5 00740df51cadb4c5cd82f21dd3f22d47
BLAKE2b-256 08ae4b107737608b56d468918de2df0e88ef0d46e64108602645c547679e598b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01af73331afab7ce8d9dc19db3ab2443cdfbdee6beacbb745521ad265280d339
MD5 93fb109e8c6efc162dae4d34ad0a0ec6
BLAKE2b-256 166d21e021cdca69f5b7b7793b493bc2371e9963ba6ff890455b609aecd77e85

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 089c428b12bdfd0cc5f92a1c7fdd7af1005ecc37209a3ae4c8fe084136736330
MD5 e6de281af7231650de5831fd0d7485d4
BLAKE2b-256 b01b36460430a6468c9bcdace5956995597383702969a5819c80fd1ad6298eaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylexrs-0.2.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-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylexrs-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ede51f2a208ac98833bfe80efc9d8b5a1ec5f6e76d4dd27683fddb9ad359804a
MD5 a379e5c63293e7a4722dd54960744619
BLAKE2b-256 12812079be65992574ae737ff6615b48cfd1bd131534f5375f23eea3eed6d3ac

See more details on using hashes here.

Provenance

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