Skip to main content

Static memory-efficient and fast Trie-like structures for Python.

Project description

MARISA Trie

PyPI Version PyPI Status PyPI Python Versions Github Build Status

Static memory-efficient Trie-like structures for Python (3.9+) based on marisa-trie C++ library.

String data in a MARISA-trie may take up to 50x-100x less memory than in a standard Python dict; the raw lookup speed is comparable; trie also provides fast advanced methods like prefix search.

Installation

python -m pip install -U marisa-trie

Usage

See tutorial and API for details.

For immutable str -> str mappings, use marisa_trie.StringTrie (implemented as two internal tries plus a compact ID mapping table).

Current limitations

  • The library is not tested with mingw32 compiler;

  • .prefixes() method of BytesTrie and RecordTrie is quite slow and doesn’t have iterator counterpart;

  • read() and write() methods don’t work with file-like objects (they work only with real files; pickling works fine for file-like objects);

  • Trie, BytesTrie and RecordTrie provide keys() and items() methods but no values() method.

License

Wrapper code is licensed under MIT License.

Bundled marisa-trie C++ library is dual-licensed under LGPL or BSD 2-clause license.

CHANGES

1.4.0 (2026-03-10)

  • Initial free-threading support and testing (#128).

  • Added StringTrie: an immutable str -> str mapping backed by two MARISA tries and a fixed-width 4-byte key-ID to value-ID table (#138).

1.3.1 (2025-08-26)

  • Set the Cython language level to “3” (#126)

1.3.0 (2025-08-16)

  • Updated libmarisa-trie to the latest version (0.2.7) (#116).

  • Dropped Python 3.7, 3.8 support (#112, #120).

  • Added Python 3.13 support (#112).

  • Rebuild Cython wrapper with Cython 3.1.3 (#119, [4d564de](4d564de332191c3fe33aa2240cae2494c597bba2)).

  • Moved static project metadata to pyproject.toml (#120).

  • Updated metadata license to include the bundled one from marisa-trie as well (#120).

  • Add Cython as build dependency (#122).

1.2.1 (2024-10-12)

1.2.0 (2024-06-05)

  • Added Python 3.13 support (#105).

  • Rebuild Cython wrapper with Cython 3.0.10 (#105).

1.1.1 (2024-05-06)

  • Publish Linux aarch64 wheels (#101).

1.1.0 (2023-10-06)

  • Added Python 3.12 support.

1.0.0 (2023-09-03)

  • Dropped Python 2.7, 3.4, 3.5, 3.6 support.

  • Added Trie.map() (#90).

  • Rebuilt Cython wrapper with Cython 3.0.2.

  • Fixed benchmark documentation typos (#89).

0.8.0 (2023-03-25)

  • Add Trie.iter_prefixes_with_ids() method to return (prefix, id) pairs (#83).

  • Rebuild Cython wrapper with Cython 0.29.33 (#88).

0.7.8 (2022-10-25)

  • Added Python 3.11 support.

  • Rebuild Cython wrapper with Cython 0.29.32.

0.7.7 (2021-08-04)

  • Restored Python 2.7 support.

  • Fixed README image references not working on Windows.

0.7.6 (2021-07-28)

  • Wheels are now published for all platforms.

  • Fixed ResourceWarning: unclosed file in setup.py.

  • Run black on the entire source code.

  • Moved the QA/CI to GitHub.

  • Rebuild Cython wrapper with Cython 0.29.24.

  • Updated libmarisa-trie to the latest version (0.2.6).

  • Fixed failing tests and usage of deprecated methods.

  • Expanded supported Python version (2.7, 3.4 - 3.10).

0.7.5 (2018-04-10)

  • Removed redundant DeprecationWarning messages in Trie.save and Trie.load.

  • Dropped support for Python 2.6.

  • Rebuild Cython wrapper with Cython 0.28.1.

0.7.4 (2017-03-27)

  • Fixed packaging issue, MANIFEST.in was not updated after libmarisa-trie became a submodule.

0.7.3 (2017-02-14)

  • Added BinaryTrie for storing arbitrary sequences of bytes, e.g. IP addresses (thanks Tomasz Melcer);

  • Deprecated Trie.has_keys_with_prefix which can be trivially implemented in terms of Trie.iterkeys;

  • Deprecated Trie.read and Trie.write which onlywork for “real” files and duplicate the functionality of load and save. See issue #31 on GitHub;

  • Updated libmarisa-trie to the latest version. Yay, 64-bit Windows support.

  • Rebuilt Cython wrapper with Cython 0.25.2.

0.7.2 (2015-04-21)

  • packaging issue is fixed.

0.7.1 (2015-04-21)

  • setup.py is switched to setuptools;

  • a tiny speedup;

  • wrapper is rebuilt with Cython 0.22.

0.7 (2014-12-15)

  • trie1 == trie2 and trie1 != trie2 now work (thanks Sergei Lebedev);

  • for key in trie: is fixed (thanks Sergei Lebedev);

  • wrapper is rebuilt with Cython 0.21.1 (thanks Sergei Lebedev);

  • https://bitbucket.org/kmike/marisa-trie repo is no longer supported.

0.6 (2014-02-22)

  • New Trie methods: __getitem__, get, items, iteritems. trie[u'key'] is now the same as trie.key_id(u'key').

  • small optimization for BytesTrie.get.

  • wrapper is rebuilt with Cython 0.20.1.

0.5.3 (2014-02-08)

  • small Trie.restore_key optimization (it should work 5-15% faster)

0.5.2 (2014-02-08)

  • fix Trie.restore_key method - it was reading past declared string length;

  • rebuild wrapper with Cython 0.20.

0.5.1 (2013-10-03)

0.5 (2013-05-07)

  • BytesTrie.iterkeys, BytesTrie.iteritems, RecordTrie.iterkeys and RecordTrie.iteritems methods;

  • wrapper is rebuilt with Cython 0.19;

  • value_separator parameter for BytesTrie and RecordTrie.

0.4 (2013-02-28)

  • improved trie building: weights optional parameter;

  • improved trie building: unnecessary input sorting is removed;

  • wrapper is rebuilt with Cython 0.18;

  • bundled marisa-trie C++ library is updated to svn r133.

0.3.8 (2013-01-03)

  • Rebuild wrapper with Cython pre-0.18;

  • update benchmarks.

0.3.7 (2012-09-21)

  • Update bundled marisa-trie C++ library (this may fix more mingw issues);

  • Python 3.3 support is back.

0.3.6 (2012-09-05)

  • much faster (3x-7x) .items() and .keys() methods for all tries; faster (up to 3x) .prefixes() method for Trie.

0.3.5 (2012-08-30)

  • Pickling of RecordTrie is fixed (thanks lazarou for the report);

  • error messages should become more useful.

0.3.4 (2012-08-29)

  • Issues with mingw32 should be resolved (thanks Susumu Yata).

0.3.3 (2012-08-27)

  • .get(key, default=None) method for BytesTrie and RecordTrie;

  • small README improvements.

0.3.2 (2012-08-26)

  • Small code cleanup;

  • load, read and mmap methods returns ‘self’;

  • I can’t run tests (via tox) under Python 3.3 so it is removed from supported versions for now.

0.3.1 (2012-08-23)

  • .prefixes() support for RecordTrie and BytesTrie.

0.3 (2012-08-23)

  • RecordTrie and BytesTrie are introduced;

  • IntTrie class is removed (probably temporary?);

  • dumps/loads methods are renamed to tobytes/frombytes;

  • benchmark & tests improvements;

  • support for MARISA-trie config options is added.

0.2 (2012-08-19)

  • Pickling/unpickling support;

  • dumps/loads methods;

  • python 3.3 workaround;

  • improved tests;

  • benchmarks.

0.1 (2012-08-17)

Initial release.

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

marisa_trie-1.4.0.tar.gz (261.5 kB view details)

Uploaded Source

Built Distributions

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

marisa_trie-1.4.0-cp314-cp314t-win_amd64.whl (199.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

marisa_trie-1.4.0-cp314-cp314t-win32.whl (160.7 kB view details)

Uploaded CPython 3.14tWindows x86

marisa_trie-1.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

marisa_trie-1.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

marisa_trie-1.4.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

marisa_trie-1.4.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

marisa_trie-1.4.0-cp314-cp314t-macosx_11_0_arm64.whl (203.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

marisa_trie-1.4.0-cp314-cp314t-macosx_10_15_x86_64.whl (214.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

marisa_trie-1.4.0-cp314-cp314-win_amd64.whl (173.3 kB view details)

Uploaded CPython 3.14Windows x86-64

marisa_trie-1.4.0-cp314-cp314-win32.whl (143.0 kB view details)

Uploaded CPython 3.14Windows x86

marisa_trie-1.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

marisa_trie-1.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

marisa_trie-1.4.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

marisa_trie-1.4.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

marisa_trie-1.4.0-cp314-cp314-macosx_11_0_arm64.whl (192.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

marisa_trie-1.4.0-cp314-cp314-macosx_10_15_x86_64.whl (207.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

marisa_trie-1.4.0-cp313-cp313t-win_amd64.whl (186.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

marisa_trie-1.4.0-cp313-cp313t-win32.whl (153.9 kB view details)

Uploaded CPython 3.13tWindows x86

marisa_trie-1.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

marisa_trie-1.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

marisa_trie-1.4.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

marisa_trie-1.4.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

marisa_trie-1.4.0-cp313-cp313t-macosx_11_0_arm64.whl (202.0 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

marisa_trie-1.4.0-cp313-cp313t-macosx_10_13_x86_64.whl (213.4 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

marisa_trie-1.4.0-cp313-cp313-win_amd64.whl (168.9 kB view details)

Uploaded CPython 3.13Windows x86-64

marisa_trie-1.4.0-cp313-cp313-win32.whl (138.7 kB view details)

Uploaded CPython 3.13Windows x86

marisa_trie-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

marisa_trie-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

marisa_trie-1.4.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

marisa_trie-1.4.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

marisa_trie-1.4.0-cp313-cp313-macosx_11_0_arm64.whl (190.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

marisa_trie-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl (206.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

marisa_trie-1.4.0-cp312-cp312-win_amd64.whl (168.5 kB view details)

Uploaded CPython 3.12Windows x86-64

marisa_trie-1.4.0-cp312-cp312-win32.whl (138.9 kB view details)

Uploaded CPython 3.12Windows x86

marisa_trie-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

marisa_trie-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

marisa_trie-1.4.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

marisa_trie-1.4.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

marisa_trie-1.4.0-cp312-cp312-macosx_11_0_arm64.whl (191.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

marisa_trie-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl (206.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

marisa_trie-1.4.0-cp311-cp311-win_amd64.whl (175.1 kB view details)

Uploaded CPython 3.11Windows x86-64

marisa_trie-1.4.0-cp311-cp311-win32.whl (140.5 kB view details)

Uploaded CPython 3.11Windows x86

marisa_trie-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

marisa_trie-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

marisa_trie-1.4.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

marisa_trie-1.4.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

marisa_trie-1.4.0-cp311-cp311-macosx_11_0_arm64.whl (192.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

marisa_trie-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl (208.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

marisa_trie-1.4.0-cp310-cp310-win_amd64.whl (174.4 kB view details)

Uploaded CPython 3.10Windows x86-64

marisa_trie-1.4.0-cp310-cp310-win32.whl (140.9 kB view details)

Uploaded CPython 3.10Windows x86

marisa_trie-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

marisa_trie-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

marisa_trie-1.4.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

marisa_trie-1.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

marisa_trie-1.4.0-cp310-cp310-macosx_11_0_arm64.whl (193.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

marisa_trie-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl (209.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

marisa_trie-1.4.0-cp39-cp39-win_amd64.whl (175.1 kB view details)

Uploaded CPython 3.9Windows x86-64

marisa_trie-1.4.0-cp39-cp39-win32.whl (141.3 kB view details)

Uploaded CPython 3.9Windows x86

marisa_trie-1.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

marisa_trie-1.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

marisa_trie-1.4.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

marisa_trie-1.4.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

marisa_trie-1.4.0-cp39-cp39-macosx_11_0_arm64.whl (194.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

marisa_trie-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl (211.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file marisa_trie-1.4.0.tar.gz.

File metadata

  • Download URL: marisa_trie-1.4.0.tar.gz
  • Upload date:
  • Size: 261.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for marisa_trie-1.4.0.tar.gz
Algorithm Hash digest
SHA256 20dd1a9035c5cb225c6eeb8e516ebced9497bf0b48d60e9b556f38d8cdf76df8
MD5 8b70f8836365f9e044b2a31ef165544b
BLAKE2b-256 d0d0048804753e2e5f12dd426e8badaa4a938a085cf00316df092b619863bef0

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 184742d267e56549c08d54083f874a5b8756287c4528b17e376058797a459b66
MD5 1d27dd6de9b482a66a32256ad7f2a2f2
BLAKE2b-256 840b413006730c6e62bdca754cd1128c02f30b748fd877b26829102afa18fe51

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: marisa_trie-1.4.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 160.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f3b632ed61b9e19e8ede7e35dc8d483a5650b552d17c25e9fdd9c40f7c9acab8
MD5 05836dc75111c47b7a6804d8bf2ab4b8
BLAKE2b-256 eb1748b8de3fe391a06df8cacbe5933a55e6520bb1c46731f0323af8c624371e

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b0f6af2195fbc11a7fd9798236f41722239adeaa79ea5e27a51a9a27951ac75
MD5 38567f3e16df443305d3bb72819a67fa
BLAKE2b-256 6c6bc63f4e5e3f076b211e165bbb32fdf1344168b6c31bf771d4193eae697aab

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ce444c5823dd1c6ac3db0f49acc78bc865e33d845a40688deea1cc7e663bcc7
MD5 cc880736400c773b432a3197cabf690d
BLAKE2b-256 89535dbb1129faa46f3e42e10fad246d19153397ba38d6931bfce5a3031a2965

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0107d847e1a706f50ba2f61c3d22a8d17d3d7581418a8e56217d5a02ce661cf9
MD5 14ad726383a3f99af4bde811aceca935
BLAKE2b-256 f4a9ea3fed259f0cde397b72e21b7cc415b4d0651ef0d923ec17081e2050da2c

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e14a33e56880d5da83acdac263442ff1175ae7406fa44fe68b6b8ba328511002
MD5 e00fc66ca57121f3e627426355bbe124
BLAKE2b-256 dcaa402820104ec4d7731c3ebc9540f9b6190f60d567d36004a56da79bf43ea2

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29cff29bf7bd41c8761d9fee0b972c784ae167d4c8bc85564b7cb607efe2b21a
MD5 70bc621a94392ef1a489d5a74af1ce2b
BLAKE2b-256 02ede3c936ef2149c727d30c7d8900c354867acfd48b15d7be025392dce8c221

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eee9ed0a38eb33d2f5e6ba15f71081afe9b167e884f177c6eaf59d3929bbe5e4
MD5 6024eefb236b57bdbc60eb64f25f1205
BLAKE2b-256 4fd2c4687709ce8425c51dea6d0850702aaa953fac7ea69f16d1d3641873a69e

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 26a4ba5f249bfa5a403c82149d4458804ee7f2017dfdc329164199a6f4434d7a
MD5 30174deddacf560f3ab4dc94cfc08490
BLAKE2b-256 4a3d8aceb6dca15725db302e2f69986f5de1d70f95c162c16bfd47194a853f0e

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: marisa_trie-1.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 143.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 47435b3348766e1adc431d273cf569d2236a9e044c429207b11c3e2cf31abb30
MD5 4717277e21a8d26e5670f8dd4f2bf897
BLAKE2b-256 6f8b2c633370272dc15f2b2094cf14ecf2a47870a711bd0117ba506941ea8d91

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b570d01a5520d15224fa83651b9b9d200981c40c1114e815fb3452d9e2562cd
MD5 ff52100af1e7b28be9535e2f062f7008
BLAKE2b-256 552f715f96fa1eeadc48ae372a8e2e590509b9ec5fc8adb79c8369f450d52822

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e637b999fb0681e8eb5d031297e38c265d2a93a556d20c9e2b885d8730e3baf
MD5 20a6af432dd5108937008d33d195dff3
BLAKE2b-256 8611cd917056269dfe68c9b88ff502257974e6fc33f39018d15b8adc40fd8c12

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1bf64c51302f473d7e252f47434c221acd2a0c78dd7d71a62e11d4442f785ca
MD5 ea22b0c9a93d420792f2c4b20ad4a180
BLAKE2b-256 6d32231f92dff5baf85761e97389b5df082a317638446376a989dc5e96a911f7

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2bfb1af5af7834d89232628434e0510687e8e34ef0f0e0843999e5f23ee83bc
MD5 71fbcf0c45e6c64737276161bf8e5846
BLAKE2b-256 fe4075cf61b11b30905ea829756305374edeb482432ca77532fa07f4be53f31c

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 095d49ff69b139bdd24f45d437c28545df2764d29d2d921fae55a2a224272dd0
MD5 3d134c09243a7ec0ab71c4a48d079d15
BLAKE2b-256 b2d2938449db4b83c93303d3f83b267b35186c532f1d75bfb22dad7c7c28523d

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 36e3bf3b68862d2a229c0a5efc5b7879924cdb42e035d1aa4bcc9b96ce129e38
MD5 d26325bdddf5c62f0586e25e1a0b63bc
BLAKE2b-256 7e3d90d01d17d6dd65057197944625eb15f7d4d841d0eb33919df847ee05aba9

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c55830565f53abe7fff9e4a3cea9c4bf828e19da0549b082addff704e2a1b2b3
MD5 ced1a03123e3f82a645886094246e685
BLAKE2b-256 d14cc4bf8eee002ef58bb503e6bde0ab1c9720ac16e67587216bd26716099718

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: marisa_trie-1.4.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 153.9 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 e8f23a504d1cd5c310f69fbb4638dd5b5a1626b4ebc523fb741716be8c02d4db
MD5 11b4ff83e8d14c885415233cb29d6446
BLAKE2b-256 7b3bac6a8ab64eeecca770b61ceb39ef21eaf4ade810182bb10efa5127015a79

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5352f1a2b7faa194df97fb2071f6ac5de0f13ead4162beba6f45a1d81d20fe3
MD5 7c65096669cdd0b2c1aa0de359ca8940
BLAKE2b-256 ee59c6d93f123ba5578c3e5f57dd116622d35dc912a38b725ed4cbeebac5b4bc

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9866f6dcff7e5ba714b1ca21aba6da881efab5b2bec656de5dc67d05cab300b6
MD5 a7a06c4f69bf2426bd12a88ab60826e0
BLAKE2b-256 724a67ac5fa636e8ff7372e773d979d49427bcecaa2e4a2beb2f7f69517d0daa

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5d945b832b9f61db5840ba01f7f54022780fb2826fd134672e63bcac3e56a0d
MD5 46a2f8808e558c4f4a105b1ebf99a54e
BLAKE2b-256 f70f8957f0f4cf0024c2d1d33745f81822de9c71409b2e1f08ebde88c6b6f133

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02f087ff7d9a48ff03f7b05469e2311fcdfc324c70e7e06789c311d7986de56b
MD5 e3a5cd0deb6376e1f4aa4f466ccf5b27
BLAKE2b-256 66ca6ca2a7dc013bfa782f16137328b6f33ed7c2926e25f02d7f0bdb3864ca81

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df838cb2e41823cf0aed75282b8d071acf40f5513e22713e98bebf9970a080dc
MD5 f092258d0ac554fb45b35f5872b15dbc
BLAKE2b-256 2ea99b11fb7cc512ddcd8dcd4217e52e70fd7cf8af290c6c6a7163f9e4c9dc4b

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7b438b9fe4d599bb4c199aa973c91221579d167655df2f90f4da8fe3e67e6757
MD5 0168697c1e9815ec97e678b456baf3c1
BLAKE2b-256 3b34b98a323653348fd67e108ae74a4360af2405cbc83a93bc4a5a46e9457b05

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d89a8f5e805c4c416591724890cd6dd1f851a9019ac79c2cb3be565b3612d3ce
MD5 2b4d57a75c99b2cfe63106564a11f49b
BLAKE2b-256 25ad8562d030685071e62c1502619e58d2c44d2729f18fb5f1d5c1514c247f07

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: marisa_trie-1.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 138.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b9056b823aa4f5d4fcd6535b2dee946c3dc9b208453ab46f1f86ab73845be287
MD5 92b44c74840808993fcaebc1e1a899c2
BLAKE2b-256 e05986ad4efd87ad053001d07ae7a1a6d35c797d04966bfe2484f4a73388e469

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0516c3aa096e687cf4cd073be5d4c82a82a3e1e1912fb3140f67c556ac6df814
MD5 883662b94ec190a7898b88d604057369
BLAKE2b-256 9655f78d4b6ce1a51e0daff4e1ba2ec6250d88a1600e9667f9c2d1dfb967c554

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73e61bee76e9e329a45a95b5fa5d50ecd06d9186d628b5e5a6b15c8de73b0789
MD5 414bcfd55aebcdc2eac703ec7bf2e7ce
BLAKE2b-256 bdf825e15c3b9909208a9efcb2e16dfdb6b1fd5960571124bf140c1490d0984b

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33cca20e60a78da01650d67ef97d60f3ec8a2b60d4dea2d65306fb418d17039d
MD5 2f917818fa87c0274b99bfb8a605da7e
BLAKE2b-256 508b4d579938d55150ee3f67ad51db9fcd3f52c6c149afd20c9acd58d0f33e53

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c143fe4cb246de22d22afc6ee71a1d706255ebd05db0e245ade6d3c61a96d3ad
MD5 37b571dd1dec1e265ac7ae0af2c87a22
BLAKE2b-256 af8e783cbd69bf9eeddc68f2489d9f290cc8bc69e6b540a46aca2850a6af4b64

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04e25e6b5b96d16711b94f77b5903368034c9dff93217e246e7d35ddf1f3b922
MD5 f2c3678cf676eb3944e54181764f3e9c
BLAKE2b-256 fd64964fef9f214ed605ba1f7d5f4f5bdc268259a7791063a955248a2b2a291f

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b115df26be8baabdedb755e422aa7c4a0bfb03b08711bc99c71d0288e9e8f43f
MD5 372b6c5084fc118b93e902f09b315027
BLAKE2b-256 fac65dc0629abc08767d33b77dc45813a4ba9a84f6a5827326fb5a4f148a81a2

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bae747cf7b8d3431c0769e385a326bc94a30ecc7df05f5c66cd8e26bdfb38bfb
MD5 76f228997d03093ad028f39e7ba9ee8e
BLAKE2b-256 477736995e4db2b0439ec228ad077a617e95a9d399c866223bffcaabe83336a5

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: marisa_trie-1.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 138.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for marisa_trie-1.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 13cd029f783ded1a1387ecdedbb893d2419cf074ff84ca26698ca9115a12471c
MD5 118e249d031e5b518b9517c5efc37171
BLAKE2b-256 a9bdf911ca551e93a6fbd8b13aff886b14ea635b683b30794f9bf7a9bf5c464d

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 237713bb512122a28165c2a3eef227f98bffb0ce0c4baecf507a47e96a84f3d2
MD5 c40efc25a9fe69f9c12656271b71088d
BLAKE2b-256 24dcb2a4cfad6065f6d207030949fede6cec00fcaf39740a5b433644102c24b0

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50f20203e1738928556a1c7193cdf7863787f5739d7af34aa5c10a7e64fa4062
MD5 797016c078ed29034104d522ab614ec5
BLAKE2b-256 ef5a08bc04f82e2a0196135529698ce6c38b9a6029cf7fce7b8aed8d8682dc0e

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20bc1a6936ba13b6b69684df2e41592f39f700f478e62453bb07fcfbefe1aa30
MD5 c9db5da065dd02cf2376ebbbbef327eb
BLAKE2b-256 15c23842d8e39006b5b03384418b55108a3f3931ac6fe9b998814be81267acec

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc11658ff7eb5888e7a2bd5c9a98f73a2e03dbf252f844032d7181627e59017b
MD5 e1a33b5f64619f42cc4ca9a0b29396ff
BLAKE2b-256 a8a21e0f0665a98968b0af7067cf2dad569e1bd8c1f13a97670b74b5ac5153d9

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45e31d2d4c7fa9492a3828c9620544edf714f11a86cfede85fff61c5de2a5ec1
MD5 481f73c882d738925d2206a7c2e1a14b
BLAKE2b-256 fcd536468e1696adae313fc2da07e3983dc131640e1739ccef08589e4c2efce7

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9a7c27b7ea89a49003da477fc07e6ca8ab8da79cd005c177bf9b92daad0244de
MD5 3fb0029ff73b482c5dca330c75336306
BLAKE2b-256 7b871cb41b7bed959804e5b43cd071e14ea4199cd486f20a37e282d8eb4b8324

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4309258b8491f23e966cc330cfb07469cf1943dbc067cbac0ae656a16ce448f3
MD5 8f8782e055e5bb554be5a942fdd207a6
BLAKE2b-256 0729a4c332abb2f5cc1870508fb13f618d76e130c5756a9b51a0021667567450

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: marisa_trie-1.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 140.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for marisa_trie-1.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fcb611618d3c902837a0d03fc8c68b7b68cca45c87e588aeae392bc3b92a2a0a
MD5 bb57af5f35cfd83651473abd8de19a8e
BLAKE2b-256 3ab307c227a433a8b7176ef90c92b8fe8d8d1922f2b6f86982f532f0b0790194

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af79b6a73f1cd7034eb08081791bbaf9d264b8dac0a5a03933cec46e1316934b
MD5 889fa999859e34dff2c7654d1daec1e6
BLAKE2b-256 f3fd0b6b74f4ded9bcc77024cff904b518a360b0155f4454d4e044a80a909bca

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b167d612804308d52bf00743480e17c67b5145bbecf3487def30f46295abd53
MD5 4af5d730639fd71f3f67fc71b78508fc
BLAKE2b-256 ebe644b9291b4ab74503a937969ba5e12eefb92350cccc0d5d1a5decee831f23

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e849538057044cd8ce08c824f9a1c211cfda31c756690ae0f21a068196a0a8f2
MD5 3f96d478f2299e83befd7755b23dd1a4
BLAKE2b-256 c274c9935db6c56a16653e1ef07e1cbc872a9d08b56aded44a5f3d7a3618f7ac

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49559095f152ee1184a6b322a30818a89b02d60364932d606d330442b3935fc9
MD5 ef7bd298fc0cc3d0fc84d8111e60a700
BLAKE2b-256 7bb92fbd4d9a78eb0ce8663581bc7d83eb8d7e1ab52adf866c985e424abfd55f

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23847dddec4151ed0da6e064087c2ff744d5110548781373e64fa01bb9c1a074
MD5 0c4c70e694d6dbc7ca2b1a13abe4c073
BLAKE2b-256 89197152a319f5608578a41c0fe488575442cfb4491560b65ac7ffc393e39635

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5db435f7f5018f225e875ce00997bd341480b57c53634b9060ab29cae32cf9a5
MD5 ff6819ddbaa07e6a5da410a518d8d2ba
BLAKE2b-256 c7dbc44833d411fb50a047d758993a34fc3fd54e56417e6cbbe56d4b9297c11b

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eac07bf101763aae91d1d62622414a7a57f9f9f86bff13851fe0aab56bb36e12
MD5 30f043205a97fb0efd7d9f2bcc672b84
BLAKE2b-256 dffbec8f28d57b78fc36732c9ab3d56f6f58bca4808800c90df4b1cafea5e3e5

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: marisa_trie-1.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 140.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for marisa_trie-1.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 460df94a079d46e2c5e33a8cdf687d801bce67ec019765bda440f6800e2a69b5
MD5 9a2831473da1bd047763f4c82dd9ce97
BLAKE2b-256 78162e1d6a8a6e57260e73870633364863ca28ae59ad43f6ef74750b64ec3026

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c10e047eaa249b4cd2dc1fec497d8731b799f9232f25d02e1b6a86c4f0aa9221
MD5 7f2f6d744acf4ef8f63f2874002f3524
BLAKE2b-256 349a14095a2301a2e5f868b5d780b8f31d0e207495ff8a90c60e27718096c894

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70a4d63dbe2e73df72fba3bc12b4054eec4b9329430ac7209f8aa855163dcdf4
MD5 bee87c0cfd11be185d8946bffe19ebda
BLAKE2b-256 234858d4432f5e61f117b80fdc97fe55f07feb5a478bb3467ed87059356dec82

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 908fe43cf371a40168efe8809c831ac6a8622cb6d050e656fb75caab1b424542
MD5 e5f9a63cc9a7b9b9309d6a13f36bfa39
BLAKE2b-256 a7a6bdc9d434ca1d194890bc190dc95709cb6e52b68a2523fe660ed8883bc382

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b9d8bfce41110f8434cd937bea7cdca17d56f7eb71d52f9663215a921ebad5e8
MD5 5d805ae1afbfb91a7a128e2214a05b7d
BLAKE2b-256 31c2af0c7176e128815a278d295181cddff8d7476c9d81be190f6487f3e1f5e1

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06c5f4adbeb0bcaa6f451862b1aef8babe1b997d1e94281b69ce7c14bc369ebd
MD5 c8fc8fdc8a687c115417caf95ab1ddf3
BLAKE2b-256 8428c8f7c8319c65fb4aa77360979a1f4d062a50fc38610bb2e6b29f0a80a011

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85a776df7b369402d1b5f76af0ed4bd66f798c22fe0de90225c179dac40530a8
MD5 1fae8ca5e47074e0900f771e0039547a
BLAKE2b-256 5c846500d4955001bdf3368d6023f7ead3e0a32686961e05cbaf389c8b6f0789

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: marisa_trie-1.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 175.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for marisa_trie-1.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 065bb04bb08ad2be4131ea5219c7bf9d4b5eba11405eb05dc3251a654bf1a2e2
MD5 218d45dae4363d38781274c06c54cdd9
BLAKE2b-256 cd5952e12bc06cd7de0182f9ee18715c55e8709e1c7193a5e03fd2031e073455

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: marisa_trie-1.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 141.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for marisa_trie-1.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b98a7c7692b548220fa00dbb0af15a5ecbfe69b29ed46736a056711f9551811b
MD5 f37d0742147561b6f779b2b406d079d7
BLAKE2b-256 2eaeed4bf0db78d4413cb0b1230f61a9a69011aca70b6df5569abe6bd06432dd

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb0e216f670c57ecee208c859f5b8105a84f18401d43531d1f49fd9a27ac1db0
MD5 85d85665db5c83a13ab7a2917444cd94
BLAKE2b-256 21a279dc6ad66eab759da1b2b2060480b2421694700fc1830661b154a0c87b99

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 623c5c4eb5c63f117d877b76b3a6a239fde0aeed91eccb17422a2de741f614a0
MD5 990c7d499a5e1805992a0fc342382809
BLAKE2b-256 58d193f218ef7f474533eac0d1fb7d3c3a91466c7e7a513cd316d8f6980feb1e

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e15ffa567fbdf4cc1ca3f3e5646849bd61d37196e03b422467674da5280d762f
MD5 c9dba92a1f325eb65219e405cc3a67de
BLAKE2b-256 f649a8511240a740dda7f50d369c81b8442104db7da8b3a0cb186701219e2cd3

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74b915983a5d46fd4a3b0ad55b8b5f7f2eed7aa2c24388f8298c83afeacb5bd4
MD5 fef5d52eee4dc1459ad6d0caa2992851
BLAKE2b-256 d9aff2ac7027a206310b77f7b3209a1823135d7097fc58e03c8def6b43baaf0d

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3061214ceb9fa9dda7b2ca23be3b51acf4ab872670d2b4b515906f57079b603b
MD5 9c785c263038ae84c078fd99a9273e7c
BLAKE2b-256 23bb3c2ae2986c2329e0fb0871502eb6cd734a9cadb2a2f55806585042f649d4

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89725a46007f4355d5a0ca7d75663433b416b2ff2f1099908042259f3eb4b6ad
MD5 8c71ff95ef31b9f007fb5d072649952a
BLAKE2b-256 1be8db49965930a46db322b2d0432135a10c052a3d9ffcefe8e9d3862959ad22

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