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.1 (2026-04-08)

  • Publish Windows ARM64 wheels (#140).

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.1.tar.gz (261.6 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.1-cp314-cp314t-win_arm64.whl (151.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

marisa_trie-1.4.1-cp314-cp314t-win_amd64.whl (199.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

marisa_trie-1.4.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

marisa_trie-1.4.1-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.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl (203.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

marisa_trie-1.4.1-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.1-cp314-cp314-win_arm64.whl (146.1 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

marisa_trie-1.4.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

marisa_trie-1.4.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (192.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

marisa_trie-1.4.1-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.1-cp313-cp313t-win_arm64.whl (146.6 kB view details)

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

marisa_trie-1.4.1-cp313-cp313t-win32.whl (154.0 kB view details)

Uploaded CPython 3.13tWindows x86

marisa_trie-1.4.1-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.1-cp313-cp313t-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

marisa_trie-1.4.1-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.1-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.1-cp313-cp313t-macosx_11_0_arm64.whl (202.0 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

marisa_trie-1.4.1-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.1-cp313-cp313-win_arm64.whl (139.6 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

marisa_trie-1.4.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

marisa_trie-1.4.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (190.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

marisa_trie-1.4.1-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.1-cp312-cp312-win_arm64.whl (139.7 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

marisa_trie-1.4.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

marisa_trie-1.4.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (191.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

marisa_trie-1.4.1-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.1-cp311-cp311-win_arm64.whl (142.6 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

marisa_trie-1.4.1-cp311-cp311-win32.whl (140.6 kB view details)

Uploaded CPython 3.11Windows x86

marisa_trie-1.4.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

marisa_trie-1.4.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (192.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

marisa_trie-1.4.1-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.1-cp310-cp310-win_arm64.whl (142.2 kB view details)

Uploaded CPython 3.10Windows ARM64

marisa_trie-1.4.1-cp310-cp310-win_amd64.whl (174.5 kB view details)

Uploaded CPython 3.10Windows x86-64

marisa_trie-1.4.1-cp310-cp310-win32.whl (141.0 kB view details)

Uploaded CPython 3.10Windows x86

marisa_trie-1.4.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

marisa_trie-1.4.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (193.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

marisa_trie-1.4.1-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.1-cp39-cp39-win_arm64.whl (142.9 kB view details)

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

marisa_trie-1.4.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

marisa_trie-1.4.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (194.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

marisa_trie-1.4.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for marisa_trie-1.4.1.tar.gz
Algorithm Hash digest
SHA256 44ce3bdbeb7c950d463e460184fc3e18702df9ef0edb826bac672fd789fb1d20
MD5 787418faab813bd55387eb1b0eb3a631
BLAKE2b-256 775de235921b5b74818cb65b557fa05cc6201c2c1612d4866ff75c835bcf808d

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 41b789fca01625288260a1db113dfb958866ae0d02887610950fd8b0c9e5dcfd
MD5 4fe07c6a8f3fb222a1236abab2a3900a
BLAKE2b-256 baab693f98813cc0484c99da4fe9b73ca65b7dd15ab8eb4f23d9a6a77c8852f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4d04ddd3b1e909fed542cba20cc0c2ed4534b479ed2e8809a5182417b8165e29
MD5 951b861c8d7c10d91540e388eb714f92
BLAKE2b-256 6132dcff70d08a146ca94a2934ca9e3ff641bf1f0e5a7785714874ac5f085c57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: marisa_trie-1.4.1-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.12

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5154262cc60f88950f6390218e2358b4894cfcb5f22d366dfe9f2f5a7baa4b54
MD5 4b13e0d828ad1944fdd3b4d742a03647
BLAKE2b-256 539db553a2a3b1809f376a5ecf03b1e3f267e3c95c39fd0448d275b1b5399452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f38aad7e083d2dff8916571f31cb46a761b2d424a0b40d35881b8f108646574
MD5 520f7349c30773ccb94d5fee1c39aa37
BLAKE2b-256 ec27e923abac9c578dd6b8726e03c433af6847538fb4db252befd68b9f5a0550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe64ef107dfad7caeb1f3b49be4893572833f6c3b52312c33b40b80aaa3e9fb8
MD5 174220a75afa51d34ec2090b98fe5742
BLAKE2b-256 05d6b4d74f2575df3be12cbbab084dbf1db70ca6c9934ca3946d79fc45a8e83b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 faa9ec37e2393e86ca3cb2e568447730654dc3292097232cec1c646f257deac5
MD5 42e2d38a3c6bcebe82d4418f75da8754
BLAKE2b-256 b35714c5a667663797add840a755bef63b82eca1a07e64fc046875e294af5af0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 05dd3921622063b82d0c7fc51e79ba509d69a5ee72a6a2c24ee68782e5152c46
MD5 b0c352047062022951372dd12271669e
BLAKE2b-256 54a6ec11c67e5914873aa5e464c0a83f8b31b3bc6961a71d72a8cafe3591dbcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d52339b0e879f60c8d3f52affc4a4f9acf27692c0bde63d1bd0f9f59b55dc8b
MD5 d406e5146f836366bbabf32271a7a3af
BLAKE2b-256 6cc3a11da7513a7eb99e9dcbe46eee97e53c9cb66f4ed253caed46f5d2492f0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 faffeed161b22e343915afb2765a1f6d3cf49faa032a0725abbc69a3b22e0fba
MD5 3c99ac3c39489d08b5a76b1fc92a9df3
BLAKE2b-256 30f13e9f3be8ccfd97ddde488a4eb9c7b7a603f1f7ee73d13814483146238c16

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4bc5d9f65d4a126dc14e32656dbc57a817ac619de731c4a64653285bf3b5e2c2
MD5 fb55c516a43655f95c1b093a1d8b01a2
BLAKE2b-256 3dac6a9415c619b3b6fc3bc5a2cc93b3e5e8d61804c95604f20379468ee2214a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e2c8bc2e6ede8f0ea697b050017bb65d43542507c71b32af6e6f1e14a613f9cc
MD5 7d97eaa893bba3b5cc609f38e07640d3
BLAKE2b-256 137facb58830aed8dac2509a06ef476f6e59767eca09f08e23f3c8eaf7cfc323

See more details on using hashes here.

File details

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

File metadata

  • Download URL: marisa_trie-1.4.1-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.12

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c6fbfa7f7c2f59c48be942bba848f2e378c69286abf93ecbe0b068feb1c22fbc
MD5 a8b424528809f2cec0321c8530c44aa2
BLAKE2b-256 beeae79d0471e32a0681d6f9f59560f5dd9748202e1b415340cf8bba338fe123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 554308b2b5b034a703c64a0c146383d9aec98538a834c4d985114cbaa987a013
MD5 38a7c114197be6d26adee97e5d9d2fa4
BLAKE2b-256 72ecedf909d5770c75aef4c94bae7dbaba56e9877b822ef6fa82b07958dd45bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 880606b64b776c0bbd85f89cbeabf294a33dd3820971618d28bcd12fe4d1406b
MD5 83d77fd94c2ce2300f0ff4d57667bd69
BLAKE2b-256 51341fbe625a8644ee49a6829dc2a2a22d6be6ad2d26b8b06ffe22f8aa50b6eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0b99c8e692cec4e172a8362832d0b1149dc126591e49643dc0c128505ea7a1cd
MD5 ad1285167445501832575e24442d6478
BLAKE2b-256 6661a4f1e474809cbb08df715d63f7680568d457c2b543a53964b969d94be7b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5a6215df91c16ce4e2f674ee92a3352d4a0be30b0635ec60f4c2ef55cc7f0e2
MD5 5b7cad09dd3d11e4859f5c54cba636f3
BLAKE2b-256 3360fddeebbc819873e3f23a09d01226e12911ee5d23252473bdf038aaf1c928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 638fb84afc3219038648ea4814e4923914790d7e4491679ef14023459e4a8148
MD5 4847cad9ce9a22a7b3287e2dee0ed3a2
BLAKE2b-256 520b2a670dd3c163836e516181469e34d9abdd9fee7e88183bfd66dd3cdc0ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4d8f3b6f7e93922d1a71c67cf285ddb5f7bc551407db2e12ba76a5f5df326449
MD5 6368e5edaf6158759928f8c71a56d7c2
BLAKE2b-256 af9483532d3ddb47db51571f6005bf227676abb9f0b490e56faefeaa74303ad1

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.1-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 0b2e53f87c01b99c59cda37411a234c704a95d12f4787aeb29572fa9302f2b93
MD5 fd243dcca878d4bf981a04dc0f23cd4d
BLAKE2b-256 8284514da5bd3ee051e800caf1ce687b7727a92b643416cc678dc47d3eface97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 932e97f23815c999d8d641f79c934fe1c841eab34bd01051552822e78bba919c
MD5 c1541246f42967787db662ec60129c67
BLAKE2b-256 02e589ae70c984c178a5cf0fa95c8c47aab129b73641ec3729ff56cc5039abc1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 50b2bbfc6612e0b5f7bd399c3097e166e5dab2b79a58e9b956ef9127b90d2d6e
MD5 b5f21f6f4ca96a8ae7795b08bd9849ad
BLAKE2b-256 6400ad53cf35464937b7719ed7a6e21354418f998df9002944cfa5f14903f460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e494d5e88da58695fa9e2efc222de808ebd36b306a2c7162256d00fb06e733e
MD5 ba3f7468be13da7fffd22da7439cc63e
BLAKE2b-256 288bf9cb7fab4a0053dd9caed573791ab292f8b890a31bd5f159ef21dbe40e63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0666b071851fff8b687bc6c0c899c7ce1cb6119399ed8c3c4f4526aca876a5e2
MD5 285f50f891535a28f45991a0620bec0e
BLAKE2b-256 60422d80e091d2b92f7175be488f554565d0e0a432b1d61c4804177e0ec9ecce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e759fb722a16b7db6a5fcb2ffe8c2feabf4a6143b487d21388bc5c156a79e90
MD5 18a40c691ad3a438f4bdc1ac804f2b0b
BLAKE2b-256 8aa9fe6aa360eba3178cd74796b5e0d6d07a1afabe5b09b54fa8c2aa693a53c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc68d4cdd7f1be60786888497f50c6fb8ad4f17bbec1d7accfc3fe69e725a329
MD5 27a867182333edfb4cebd3ca397c38ae
BLAKE2b-256 2a0d0ea5e7f0aaa11c29aadaf121b6de275a6807d9712ef28ea4a6025bcab2e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8775892a5a96df359fa8853e6132b9504dfcc2ecebd27bb617cc5be6ffeb13d
MD5 1adefe601c47ef5573699ad1521998bb
BLAKE2b-256 aef15c77eea2ff285e47e8a523385f023075a452455ffa55804df95e4b569a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 efa5b4f8202c199ef7f4afe00ca4e406ea77b3940355595aabea8e9b393a22b1
MD5 92b3ee766181c9072db54245be4b0ca3
BLAKE2b-256 75b53823948064c63fd76777910b45481c6e251c9d4c3f261ca23d51b758dc91

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ab28fda06ef2e488240a17d3f9947447e7f1786ad04fb29584ab4a27fde656f4
MD5 57cc8f69c147930ed5fe08e8aff121fa
BLAKE2b-256 da91bd06914afcb70710f684be44cf5435742d175d49c3de021ee62f7eb8c4e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6a5d45561a5e6563a0f934899a097d69e74111181b162de4b64cceb31f1bf44b
MD5 d406a5da910cbd2998f6efdc0ba0b771
BLAKE2b-256 6867b35e8b14757ce5daffd5c4c1ab0bb9b3e3c7611e82fe5ab2707489a176c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: marisa_trie-1.4.1-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.12

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a56d6daf4449ae5f6825a03f9fabb97e56527fb44bc4a608944a872794f662d5
MD5 73efe4bf09fa18df80f389217100f68d
BLAKE2b-256 fed150c0ed09c99e4cd3ff7276f1a50a148c7bd4e585271215d3a05f74228bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 658f49e4e825b4e4257f53f455e214cd0e161ab326e569562cc8ff8f67a48506
MD5 8d58936ed3a4284f140c7c3c39d988a9
BLAKE2b-256 49a32596d55ee48ed15a4d0de5a9ebd27de49888a029ffa521717c282df63efc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71ab0be7b380d65871986d61839814153f55307ff593bac22109e65e804f07d4
MD5 723a8c578b3cc3547ea821eab51a2254
BLAKE2b-256 885ced86ad8683237dff8cdeb117b3b0664005e05bc221535301621ed474857d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eaa3db575cb757f98d2754bcab5e1e0b2a884dc611964ac2659be13b58ef32e8
MD5 d06b5dbd178f499a39bd80c0dd327954
BLAKE2b-256 1bdccbb5e8416ff5d193847b0e838b0b525773af7b6f4e1e4a33728d1b097fcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84ce9b69a0516a52169d28e27ea14f015f6daf467fc8cb661eb841565d728ccf
MD5 cfd14efbc8e97bf053d158cfb8855616
BLAKE2b-256 dc416ae103ef7448320a7324f9866a253d595159ffe367c11e06baabb92ca4d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21ff39c29d900b44876913c96d0e2c550417450340fef5c8848111796a7f9de1
MD5 5ea689d84e30343f7ad9098c0b68054f
BLAKE2b-256 4f1b7b03330888306166e96801acb5086eaf5ddc112d2ab8c03c8de478da7346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cde5209f0904209866e5c2ff5bdadc3d57bc9368ad3e26eac72a16d863e83dc0
MD5 2adcdbccdec03faa83b28297ee062800
BLAKE2b-256 91dfa6b189cfdfc45fc402833fa067b1625a8ec4ef5446a8d7c08c5c84ea835e

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 59375ab1e4e4cee87d318b6b3dffa91c599c89afd920ef53428235f4326ba1d6
MD5 d8eae7a38186b178c5c7e897a3c3574f
BLAKE2b-256 8ff8ae0dcbf79498b7aa00dae740982c9812fa95339bc6549ea63b4ad15eeb58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fc9bc6de7197cdd1f32b72566cc7ac75c465d6f2191bba51d17edfae2b5ca8b0
MD5 95109be4625e2dcb9df7823ce135c389
BLAKE2b-256 737d419114325f1bb4c2202c20f19f424f9dea1cc38de7cd1fae60d991e99b69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: marisa_trie-1.4.1-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.12

File hashes

Hashes for marisa_trie-1.4.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 63cd2870f3890f2657610ed437110713e87972da0dc4d3e6303d370c9b28d215
MD5 ea1ad67fcc149da3bf6e77a2990a890d
BLAKE2b-256 23effa342fdbc0c055030b93007dff5393675705071a14621e3f81bfb52eb970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7f9603cc8a57dca847febf45349c51916c3e1340eb6ee064baabf181398dc79
MD5 46ec04c7b767706f06785b5a2c7c1d07
BLAKE2b-256 5cd70ba8bcaeee68a8e6cbc61b47825370a6c8a523ab16ea42e8728dec2213bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8da4dea083209301430d80c8a33d0a5ecb6a270c904743505adceaae4fface2
MD5 2c031b7d4a48bcc39ddd6745e781741d
BLAKE2b-256 5173339e8fab2e8cea88e9e0fd78aeb8ccdd3f8656d228dae2cb698f667a0fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d51bdd22a7238ef4d681effd7c224a267ddae054b64b1cec9ce95bbcd2b6a88
MD5 154a943a00889d0d7f6ccb732c6c35a3
BLAKE2b-256 bb95cd6e73d0857608f2946f3bc5ccac86488073b96fb37bc1b45b0184268bed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7bed50d39ff1391a67b9383a7f3c458a1a0cb40fe8dd16952f813fbf8939eeff
MD5 3b37679f3c13e16f841c6210ea9f9e61
BLAKE2b-256 150c376e21c62bd0e658a5e9f6b8912f3116591778c639857ad374c7639ceebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87e65dff37d1b9edea7bc7a8e935c851ec4934f2e56071a4501ce8db97b579a4
MD5 e5838bceae4cebe9603ee7b22395d7fb
BLAKE2b-256 f78bcc34313149486dfc13e84303e12d61fd55788b37d92c3e082cc3d142e776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 63964dedbf49ef0d17cb32d368f13ec71ca0ec026976b1cc24cb6a993d05752a
MD5 44912dcfed9d944aae2b7b03fbc954fe
BLAKE2b-256 b3b789811f7eba6e92386279376df81cfa281ab99e30f7e4f5a5e04d8dba6b99

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 59a5c286329a5defa33c40cce1f16c9829e4128b57ecc851ac32a7d1071913d5
MD5 a93ffc1c72a91f8bf76e1c3ad10388a3
BLAKE2b-256 fe8cac1851b7c9ce881343bf0639c902aaa2b767a31dc79d6af5950413a6ba66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c74606bd7e0066f20cf7187de44c955ba3b4ce85159a43f8cd8b0ee982ea4c4c
MD5 5b24acb9af378844fbe2437bdfaaf5e6
BLAKE2b-256 d5b03f793c5f7727ca1d36f9d53b9fc48804942918a9f460b6d46988770677b2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for marisa_trie-1.4.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c059562d5aea86bf623a2c440b8595a86c0de553ca96986e4d36f25d07570d5b
MD5 12b20da068a713bc3da3ea753956a78e
BLAKE2b-256 325684fe4788b29a81e00efb4c97f3c1b7cae0dbda14369dc7ee2659823bfd83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7024c2cb001442fe04b9720be105bbe01ff2d7f357b70fa44d42272abf7da1f
MD5 a931a79008be4987d8d7b0ece8780608
BLAKE2b-256 fdd7c5f5cd9eb32a34447971ee3430410b19087564137d62da7bd348b40e684a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ac478766ff9381f1bc18f39f694388f64c20cfa8cb2b308e41ece2b4ce05467
MD5 14270d864ee14cc5663f0c2b2cf0d51d
BLAKE2b-256 b8a0c717ffb7697f059cde03b75c9facf6fd4ee18ce720513156bb03e875d215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 29eb718078431518d13037830c50023333721b146ca58eb78889aabfa60f4c33
MD5 d672d14c2eac9b850fb1819f3da23f3b
BLAKE2b-256 da23086b81133baccbc05feb2fbc4113c70775352f3b9851dc8a20d69b2db44f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 284ff4b2a63f00e175c7fe88d18c23a556c988ce705eb8e15a65e60ad7f86a98
MD5 87f94c69052ed8f713d036b4c03e0f4d
BLAKE2b-256 b73fd1d67e1ae5058dfcbb3756f75a26ea203acae875584636d360fd4a38b248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a6404610eca835cf179c4407bcaa00d7acfbf3fd7aafcc1413d3adc262b554c
MD5 f6c6e112451cd5464f963dfbc2e7685e
BLAKE2b-256 11672a8870ef1c42412ace3d656830902893fad6239434cde749f6654f907b41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 579d1498e6b9e8f139b36601d2ea35e9239e849ff1615f3c3fc8df8ce4d3a936
MD5 a892e1883fe9d4550c22963ea4f4a229
BLAKE2b-256 3d941ad851729ba0cdbc269bdd72b4b725cfbf5a25e4186fd12e56836d2d52ba

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.1-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 b10988ddeb8a37fd85ab03c043c5dd6fcc8f63d54af770bc27cb9722292b2a8c
MD5 7ddfe1c5d9d5906963250ff76ca77c79
BLAKE2b-256 1e87c65aeaeed6d8563a7522215bdc9d676a6978f8bb27071d7b59a5337a2ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1bbdad06145ee68dd8c9280318339a401d671844420add7c48eeeddd1cc61fa8
MD5 b0b4f6652dfa480863642087930c715a
BLAKE2b-256 fa81bdd4ce80ab15bc422377f123ac6c49b91396a71623cac7bc8198f1c4e016

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for marisa_trie-1.4.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b8315d2ec3fd52a7c439d8cf3b4fe5ea67dc46c1fd66d7bc814d2c699e831e18
MD5 252f5ab738a159aa51780f1d28de5696
BLAKE2b-256 124c64698d167825e53f1cd375db6d9357a87ecec1a00d12f6f3651f8a858457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0ff2ea31a3f2ee5fcabcc77db8e5f5967d8e5614daa537262fe7617941fa262
MD5 467047d59fbb1b5231d307d2e91a2ac0
BLAKE2b-256 c3cc726372806ddd3dd4f7458b15ca890eb52f4a33e86260cff868ddc4a0f797

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef8f430292df0faa6a639bbba64a5e2ac09dfb967e8752d51f0bf9dd11f16b96
MD5 f601ea347d67593a069337752632a44e
BLAKE2b-256 e8eaff378bf751f053cb4dd6082cc6bcffef62af765aa39f974250323586015a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecd2f16e19f441efc6755cd09703126ee27a496b9c50f179877c00975c150189
MD5 5b7105f1a95d4a23a235f61e4067aa2d
BLAKE2b-256 c1e91197d04f35791607d01c010ae0de55ca53de574f21774625af0da3b573f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89de7c0e6afd395b773b5adeb8ab1f315186b6538a34bbfaf73b049e3b555c2a
MD5 c0d8ce889e692a3cd3e2c6ea50c9409d
BLAKE2b-256 43df309e88b3c2bbf2abdc9f62a4ebc313b24130edddecca2889db9dbd74c765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 def32aa8edaec6d4229922dacb87e9d70d6bfb8ea994a13c9fcbfbee86e0b281
MD5 7709ea18d49fa13302a4b78ef8f79238
BLAKE2b-256 87963fc7b2e94c1da93636582acc7d56eb186c4d2cb2c01b0b2c2a177ca11061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc306a82f0dbece8f790bd4cfa0d7ad2dad1db9fb911395b07e7ae9862501bd2
MD5 c53def18ea2edd28aa5b52d70db328bc
BLAKE2b-256 ed56ec51c02b083ccd25ce3f1cf13b9c575c05497d18f9386ac51314bc62fea8

See more details on using hashes here.

File details

Details for the file marisa_trie-1.4.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: marisa_trie-1.4.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 142.9 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for marisa_trie-1.4.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 90a7d313a1a1edb18c43c7cfdf1f7958c2fca73746d0581087ab1683d9a4d661
MD5 04c23a49c2cd4bbb57e09e3d9f67e1d4
BLAKE2b-256 8cf5ad32aa79c809ea59769cf996bae31b790fc97fb38aaaa9b05340077eadc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: marisa_trie-1.4.1-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.12

File hashes

Hashes for marisa_trie-1.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 26514be092531fced812709407e37d1a260a3aeb81524755cd40642860e58ef5
MD5 3198d86e9beb73321d236d8adfedc75c
BLAKE2b-256 3aba2bb40d08d2ee3d93840b50671cabc0971c4261f92a1c5478e30c1a9e9396

See more details on using hashes here.

File details

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

File metadata

  • Download URL: marisa_trie-1.4.1-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.12

File hashes

Hashes for marisa_trie-1.4.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 863cc513cd11b847bcd48abe65f8d9efb5d1a528adeeb323424199fed9f5cdfd
MD5 467f0e98a4350382ff343d50cc2461ef
BLAKE2b-256 ce102c32cc5ca703e77236a95dbcba70bdb3d7b0d535450f54416cee1af4fb1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 802f1cf5d559a3111a0784f542832e365d538e0146463d9fa5fef268302c7e86
MD5 562f0e2761dff57a5f0dee6f1c928af2
BLAKE2b-256 c2a4e9ce69126f84f949d55902d7a4b7dfe14d39e89ae0e7a8a34ec1b4ef799c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a2dd82090d733dfb10a141bf86dcdd044dcebcf4d48c72e2048fc72b4b339d1
MD5 b5f1114e5e48a82121ae98ddf2041adb
BLAKE2b-256 969628d5d0112c93527ed620f68c488bbd3bf13b32d3bf410c028b9ea5e762b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 925b51ed02300a0db5148752e13f16d3b5d216822828f9b48b78bb2b85a81e5f
MD5 2093595e28f8207b0bbb7b8bde13c467
BLAKE2b-256 7459a3bb736cb915ad0a091add2318e1254b8794c8715a0224febb1f547f521e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4a0b5bbd424e57b482f579d9a532bf3f9a8f2c4165175d92790cb0aa8c1c1f52
MD5 3c68b0b461ca66ac11e630769ea81ce2
BLAKE2b-256 835e8dff1ab8bd4d3341eb0e758055590de1fc8667bc6dfef2a37cc2195b2946

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78a7bd2650607762a2411475544d1497e2865e0853daf0e17aa9e9555f205148
MD5 af822765c1c0199fd8d6d63b65600441
BLAKE2b-256 08ee934d116666855a14eb0f30052cd0c3c34482a1a4a570866ba6e46b64d9fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94e9671fb7aeee0ba81988156e984b90520c721bb9c00e65d7eb4757960c7f3b
MD5 bb6a291d8912ebf386b037aa3cb27e05
BLAKE2b-256 1d95c44f437ca86d4fec60ba7bd8a2740813e1e7e9e10dae66969ca5324af6c0

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