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.8+) 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.

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);

  • there are 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.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.3.1.tar.gz (212.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.3.1-cp314-cp314t-win_amd64.whl (162.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

marisa_trie-1.3.1-cp314-cp314t-win32.whl (131.4 kB view details)

Uploaded CPython 3.14tWindows x86

marisa_trie-1.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

marisa_trie-1.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

marisa_trie-1.3.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

marisa_trie-1.3.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

marisa_trie-1.3.1-cp314-cp314t-macosx_11_0_arm64.whl (163.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

marisa_trie-1.3.1-cp314-cp314t-macosx_10_13_x86_64.whl (175.2 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

marisa_trie-1.3.1-cp314-cp314-win_amd64.whl (142.9 kB view details)

Uploaded CPython 3.14Windows x86-64

marisa_trie-1.3.1-cp314-cp314-win32.whl (119.1 kB view details)

Uploaded CPython 3.14Windows x86

marisa_trie-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

marisa_trie-1.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

marisa_trie-1.3.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

marisa_trie-1.3.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

marisa_trie-1.3.1-cp314-cp314-macosx_11_0_arm64.whl (155.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

marisa_trie-1.3.1-cp314-cp314-macosx_10_13_x86_64.whl (172.8 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

marisa_trie-1.3.1-cp313-cp313t-win_amd64.whl (153.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

marisa_trie-1.3.1-cp313-cp313t-win32.whl (126.4 kB view details)

Uploaded CPython 3.13tWindows x86

marisa_trie-1.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

marisa_trie-1.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

marisa_trie-1.3.1-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

marisa_trie-1.3.1-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

marisa_trie-1.3.1-cp313-cp313t-macosx_11_0_arm64.whl (163.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

marisa_trie-1.3.1-cp313-cp313t-macosx_10_13_x86_64.whl (175.1 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

marisa_trie-1.3.1-cp313-cp313-win_amd64.whl (139.1 kB view details)

Uploaded CPython 3.13Windows x86-64

marisa_trie-1.3.1-cp313-cp313-win32.whl (115.4 kB view details)

Uploaded CPython 3.13Windows x86

marisa_trie-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

marisa_trie-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

marisa_trie-1.3.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

marisa_trie-1.3.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

marisa_trie-1.3.1-cp313-cp313-macosx_11_0_arm64.whl (154.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

marisa_trie-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl (172.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

marisa_trie-1.3.1-cp312-cp312-win_amd64.whl (138.6 kB view details)

Uploaded CPython 3.12Windows x86-64

marisa_trie-1.3.1-cp312-cp312-win32.whl (115.6 kB view details)

Uploaded CPython 3.12Windows x86

marisa_trie-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

marisa_trie-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

marisa_trie-1.3.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

marisa_trie-1.3.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

marisa_trie-1.3.1-cp312-cp312-macosx_11_0_arm64.whl (155.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

marisa_trie-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl (173.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

marisa_trie-1.3.1-cp311-cp311-win_amd64.whl (144.0 kB view details)

Uploaded CPython 3.11Windows x86-64

marisa_trie-1.3.1-cp311-cp311-win32.whl (117.3 kB view details)

Uploaded CPython 3.11Windows x86

marisa_trie-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

marisa_trie-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

marisa_trie-1.3.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

marisa_trie-1.3.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

marisa_trie-1.3.1-cp311-cp311-macosx_11_0_arm64.whl (158.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

marisa_trie-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl (174.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

marisa_trie-1.3.1-cp310-cp310-win_amd64.whl (143.2 kB view details)

Uploaded CPython 3.10Windows x86-64

marisa_trie-1.3.1-cp310-cp310-win32.whl (117.2 kB view details)

Uploaded CPython 3.10Windows x86

marisa_trie-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

marisa_trie-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

marisa_trie-1.3.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

marisa_trie-1.3.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

marisa_trie-1.3.1-cp310-cp310-macosx_11_0_arm64.whl (156.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

marisa_trie-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl (172.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

marisa_trie-1.3.1-cp39-cp39-win_amd64.whl (143.6 kB view details)

Uploaded CPython 3.9Windows x86-64

marisa_trie-1.3.1-cp39-cp39-win32.whl (117.5 kB view details)

Uploaded CPython 3.9Windows x86

marisa_trie-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

marisa_trie-1.3.1-cp39-cp39-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

marisa_trie-1.3.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

marisa_trie-1.3.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

marisa_trie-1.3.1-cp39-cp39-macosx_11_0_arm64.whl (157.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

marisa_trie-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl (173.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for marisa_trie-1.3.1.tar.gz
Algorithm Hash digest
SHA256 97107fd12f30e4f8fea97790343a2d2d9a79d93697fe14e1b6f6363c984ff85b
MD5 7e442384181560ffab81de9739cf32ba
BLAKE2b-256 c5e3c9066e74076b90f9701ccd23d6a0b8c1d583feefdec576dc3e1bb093c50d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9e6496bbad3068e3bbbb934b1e1307bf1a9cb4609f9ec47b57e8ea37f1b5ee40
MD5 104ec56566d96948f7ab76ae781cb4ec
BLAKE2b-256 9a61c4efc044141429e67e8fd5536be86d76303f250179c7f92b2cc0c72e8d0b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c6571462417cda2239b1ade86ceaf3852da9b52c6286046e87d404afc6da20a7
MD5 c15b9241264b9f18ea10109a525aa0c5
BLAKE2b-256 62ab6d6cf25a5c8835589a601a9a916ec5cdee740e277fed8ee620df546834bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9651daa1fdc471df5a5fa6a4833d3b01e76ac512eea141a5995681aebac5555f
MD5 4ef3a666047c1ec16f45234c28ae8969
BLAKE2b-256 bb64900f4132fc345be4b40073e66284707afa4cc203d8d0f1fe78c6b111cd47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56043cf908ddf3d7364498085dbc2855d4ea8969aff3bf2439a79482a79e68e2
MD5 a7d8936dcc70c6c000f492eb0ce961f7
BLAKE2b-256 334c0cefa1eceec7858766af5939979857ac079c6c5251e00c6991c1a26bb1b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c2bc6bee737f4d47fce48c5b03a7bd3214ef2d83eb5c9f84210091370a5f195
MD5 6a2d0997a235c34b6bc92a89a7b2f15a
BLAKE2b-256 b21aefd63e75d1374e08f8ebe2e15ff1b1ed5f6d5cf57614a5b0884bd9c882ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82de2de90488d0fbbf74cf9f20e1afd62e320693b88f5e9565fc80b28f5bbad3
MD5 eef93ac241e6a5b4c51295ff4936c93d
BLAKE2b-256 b426f24dd9c98ce6fc8c8d554b556e1c43f326c5df414b79aba33bd7d2d2fbfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 076731f79f8603cb3216cb6e5bbbc56536c89f63f175ad47014219ecb01e5996
MD5 9a96dceeeb4f1ecfe55b5a202df6cdf9
BLAKE2b-256 5f64eaf49d10c8506ecd717bbbeda907e474842c298354a444b875741ef4a0d9

See more details on using hashes here.

File details

Details for the file marisa_trie-1.3.1-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9e467e13971c64db6aed8afe4c2a131c3f73f048bec3f788a6141216acda598d
MD5 97d39908b215e692533ec8f3ee717113
BLAKE2b-256 3700c7e063867988067992a9d9d2aceaede0be7787ca6d77ef34f2eca9d2708e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 68678816818efcd4a1787b557af81f215b989ec88680a86c85c34c914d413690
MD5 c0b3012a983e4ece1eaaa88db0cabbc4
BLAKE2b-256 95830ea5de53209993cf301dd9d18d4cb22c20c84c753b4357b66660a8b9eb48

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c7a33506d0451112911c69f38d55da3e0e050f2be0ea4e5176865cf03baf26a9
MD5 e4b32682b3abbe5b1cc030196764bced
BLAKE2b-256 f5a3292ab31a12ec1cb356e6bc8b9cc8aaec920aa892a805757c011d77e8cd93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e2a0e1be95237981bd375a388f44b33d69ea5669a2f79fea038e45fff326595
MD5 384dc2e43e263a2c4d94e20a84fdc8f8
BLAKE2b-256 09ba215b0d821fd37cdc600e834a75708aa2e117124dcf495c9a6c6dc7fdcb6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0dcd42774e367ceb423c211a4fc8e7ce586acfaf0929c9c06d98002112075239
MD5 c685464e9bf957131283d9c02bf85132
BLAKE2b-256 e9c342360fb38cdfde5db1783e2d7cfeb8b91eea837f89ef678f308ee026d794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5370f9ef6c008e502537cc1ff518c80ddf749367ce90179efa0e7f6275903a76
MD5 3dadc662c351e583b43e021c1f540199
BLAKE2b-256 4c08f9ea8b720a627d54e8e19f19a0ec1cc2011e01aa2b4f40d078e7f5e9e21f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a96ef3e461ecc85ec7d2233ddc449ff5a3fbdc520caea752bc5bc8faa975231
MD5 839fe373fa6e8d0ae980f20c6da57d02
BLAKE2b-256 e305857832b8fe6b2ec441de1154eadc66dee067ce5fb6673c3ee0b8616108ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e6f3b45def6ff23e254eeaa9079267004f0069d0a34eba30a620780caa4f2cb
MD5 60f9196c79a527733337f0443f87432e
BLAKE2b-256 207ffd19a4aa57ad169d08e518a6ee2438e7e77bfba7786c59f65891db69d202

See more details on using hashes here.

File details

Details for the file marisa_trie-1.3.1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 389721481c14a92fa042e4b91ae065bff13e2bc567c85a10aa9d9de80aaa8622
MD5 e71507a3d8167099f0e74141f7f8793f
BLAKE2b-256 408a590f25a281e08879791aabec7b8584c7934ff3d5f9d52859197d587246ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ec633e108f277f2b7f4671d933a909f39bba549910bf103e2940b87a14da2783
MD5 df3c353c294fe8d18bcf6e295a59191c
BLAKE2b-256 b6c62381648d0c946556ef51c673397cea40712d945444ceed0a0a0b51a174d2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 137010598d8cebc53dbfb7caf59bde96c33a6af555e3e1bdbf30269b6a157e1e
MD5 28241fdba2c4ba068cbfe8a75a6f8a64
BLAKE2b-256 28b2b8b0cb738fa3ab07309ed92025c6e1b278f84c7255e976921a52b30d8d1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83a3748088d117a9b15d8981c947df9e4f56eb2e4b5456ae34fe1f83666c9185
MD5 312e11183c448ab3ef45e3c10ad08672
BLAKE2b-256 2ad074b6c3011b1ebf4a8131430156b14c3af694082cf34c392fff766096fd4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c56001badaf1779afae5c24b7ab85938644ab8ef3c5fd438ab5d49621b84482
MD5 34fd81654acd66b13f6925219cde6623
BLAKE2b-256 4882f6f10db5ec72de2642499f3a6e4e8607bbd2cfb28269ea08d0d8ddac3313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c8b2386d2d22c57880ed20a913ceca86363765623175671137484a7d223f07a
MD5 1135dd95e637e7660b1cf6095673d00d
BLAKE2b-256 fbbfe77a1284247b980560b4104bbdd5d06ed2c2ae3d56ab954f97293b6dbbcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d4bd41a6e73c0d0adafe4de449b6d35530a4ce6a836a6ee839baf117785ecfd7
MD5 0af2c0929ea68b73c71aa6b5c191d6fa
BLAKE2b-256 eeb83b904178d7878319aacaabae5131c1f281519aaac0f8c68c8ed312912ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9dc61fb8f8993589544f6df268229c6cf0a56ad4ed3e8585a9cd23c5ad79527b
MD5 709413a45736d2371bdaa341b1272ed6
BLAKE2b-256 d378c7051147cc918cb8ff4a2920e11a9b17d9dcb4d8fc122122694b486e2bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a850b151bd1e3a5d9afef113adc22727d696603659d575d7e84f994bd8d04bf1
MD5 c1d9f5a7df8cded77326b27a0561363b
BLAKE2b-256 5a1e734b618048ad05c50cb1673ce2c6e836dc38ddeeeb011ed1804af07327a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a83f5f7ae3494e0cc25211296252b1b86901c788ed82c83adda19d0c98f828d6
MD5 511fdd640ca65baa365d9ed3d1385563
BLAKE2b-256 3bceddfab303646b21aef07ff9dbc83fba92e5d493f49d3bc03d899ffd45c86f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d0f87bdf660f01e88ab3a507955697b2e3284065afa0b94fc9e77d6ad153ed5e
MD5 93e886f659f6e1d3e029121c51c8650c
BLAKE2b-256 bdfa3dbcbe93dfaa626a5b3e741e7bcf3d7389aa5777175213bd8d9a9d3c992d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee428575377e29c636f2b4b3b0488875dcea310c6c5b3412ec4ef997f7bb37cc
MD5 4715ad0a33ef2716b9d52c3032954ab9
BLAKE2b-256 ac746b47deff3b3920449c135b9187c80f0d656adcdc5d41463745a61b012ea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7416f1a084eb889c5792c57317875aeaa86abfe0bdc6f167712cebcec1d36ee
MD5 53c7ad414a31c64da1a9c01a7f9fcbeb
BLAKE2b-256 de1f0ecf610ddc9a209ee63116baabb47584d5b8ecd01610091a593d9429537e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecdb19d33b26738a32602ef432b06cc6deeca4b498ce67ba8e5e39c8a7c19745
MD5 f2cbc17059932709dc96ff5b0568eb41
BLAKE2b-256 0f0ab0e04d3ef91a87d4c7ea0b66c004fdfc6e65c9ed83edaebecfb482dfe0ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf9f2b97fcfd5e2dbb0090d0664023872dcde990df0b545eca8d0ce95795a409
MD5 12b1a56aafb74cf796b1f03621a49557
BLAKE2b-256 ca16929c1f83fdcff13f8d08500f434aaa18c21c8168d16cf81585d69085e980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4bae4f920f2a1082eaf766c1883df7da84abdf333bafa15b8717c10416a615e
MD5 0f81d0ba024ae895da2a749533522973
BLAKE2b-256 97b87b9681b5c0ea1bb950f907a4e3919eb7f7b7b3febafaae346f3b3f199f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9de573d933db4753a50af891bcb3ffbfe14e200406214c223aa5dfe2163f316d
MD5 506c3935164f1470c6558b9f66710ef8
BLAKE2b-256 46a28331b995c1b3eee83aa745f4a6502d737ec523d5955a48f167d4177db105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9868b7a8e0f648d09ffe25ac29511e6e208cc5fb0d156c295385f9d5dc2a138e
MD5 9467fa734d28c657b977e5d042fe52b2
BLAKE2b-256 35b2aabd1c9f1c102aa31d66633ed5328c447be166e0a703f9723e682478fd83

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for marisa_trie-1.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c785fd6dae9daa6825734b7b494cdac972f958be1f9cb3fb1f32be8598d2b936
MD5 e58ec6d87a0e36c4c3b46bbeade760c0
BLAKE2b-256 c4f11a36ecd7da6668685a7753522af89a19928ffc80f1cc1dbc301af216f011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b9816ab993001a7854b02a7daec228892f35bd5ab0ac493bacbd1b80baec9f1
MD5 adf3ea4270c4e31d5deaed1638ae2201
BLAKE2b-256 58da244d9d4e414ce6c73124cba4cc293dd140bf3b04ca18dec64c2775cca951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83efc045fc58ca04c91a96c9b894d8a19ac6553677a76f96df01ff9f0405f53d
MD5 d287e0768f782f1431aacbfa5eac1405
BLAKE2b-256 db6e051d7d25c7fb2b3df605c8bd782513ebbb33fddf3bae6cf46cf268cca89f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 99a00cab4cf9643a87977c87a5c8961aa44fff8d5dd46e00250135f686e7dedf
MD5 b5821a638901eaacb87ef500c993cb8a
BLAKE2b-256 f35f93b3e3607ccd693a768eafee60829cd14ea1810b75aa48e8b20e27b332c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9688c7b45f744366a4ef661e399f24636ebe440d315ab35d768676c59c613186
MD5 a71745ef863192674df332595ff0a901
BLAKE2b-256 fe9888ca0c98d37034a3237acaf461d210cbcfeb6687929e5ba0e354971fa3ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c12b44c190deb0d67655021da1f2d0a7d61a257bf844101cf982e68ed344f28d
MD5 86c6ba985e333c7f37d50be1910de8cf
BLAKE2b-256 9cfc58635811586898041004b2197a085253706ede211324a53ec01612a50e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5b7c1e7fa6c3b855e8cfbabf38454d7decbaba1c567d0cd58880d033c6b363bd
MD5 4765911053d08142951f4e4f43b11ca5
BLAKE2b-256 3f40ee7ea61b88d62d2189b5c4a27bc0fc8d9c32f8b8dc6daf1c93a7b7ad34ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 986eaf35a7f63c878280609ecd37edf8a074f7601c199acfec81d03f1ee9a39a
MD5 0a5dc1b72258da16592d6b9c290cec7b
BLAKE2b-256 b02b85623566621135de3d57497811f94679b4fb2a8f16148ef67133c2abab7a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for marisa_trie-1.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 70b4c96f9119cfeb4dc6a0cf4afc9f92f0b002cde225bcd910915d976c78e66a
MD5 1fbe9001779f61207fff0cacc0850b6d
BLAKE2b-256 713ee314906d0de5b1a44780a23c79bb62a9aafd876e2a4e80fb34f58c721da4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3834304fdeaa1c9b73596ad5a6c01a44fc19c13c115194704b85f7fbdf0a7b8e
MD5 5e048e140785da8b2c439965f0e2ee46
BLAKE2b-256 50aae5053927dc3cac77acc9b27f6f87e75c880f5d3d5eac9111fe13b1d8bf6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca644534f15f85bba14c412afc17de07531e79a766ce85b8dbf3f8b6e7758f20
MD5 c61c1eefd5ed4846b2d9fc7783b324e3
BLAKE2b-256 c463d775a2fdfc4b555120381cd2aa6dff1845576bc14fb13796ae1b1e8dbaf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 954fef9185f8a79441b4e433695116636bf66402945cfee404f8983bafa59788
MD5 814a63e89e31942da81b1f0e83869537
BLAKE2b-256 3689c4eeefb956318047036e6bdc572b6112b2059d595e85961267a90aa40458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b173ec46d521308f7c97d96d6e05cf2088e0548f82544ec9a8656af65593304d
MD5 cfec0f91eaf1e31d90265009a8c496a4
BLAKE2b-256 48cc80611aadefcd0bcf8cd1795cb4643bb27213319a221ba04fe071da0b75cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbd28f95d5f30d9a7af6130869568e75bfd7ef2e0adfb1480f1f44480f5d3603
MD5 66310dfb946aa393caf90a06ea560d65
BLAKE2b-256 a95ade7936d58ed0de847180cee2b95143d420223c5ade0c093d55113f628237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ef045f694ef66079b4e00c4c9063a00183d6af7d1ff643de6ea5c3b0d9af01b
MD5 e6040859390b10d893abcf65cac6f7f7
BLAKE2b-256 a7bf2f1fe6c9fcd2b509c6dfaaf26e35128947d6d3718d0b39510903c55b7bed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a5a0a58ffe2a7eb3f870214c6df8f9a43ce768bd8fed883e6ba8c77645666b63
MD5 24e0f0d693d67f5a75abb5663c68d161
BLAKE2b-256 f2fd988a19587c7bb8f03fb80e17335f75ca2d5538df4909727012b4bdff8f99

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for marisa_trie-1.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9f92d3577c72d5a97af5c8e3d98247b79c8ccfb64ebf611311dcf631b11e5604
MD5 a67ce6ee3710ed4c099e0c71b3fee530
BLAKE2b-256 006bc12f055dbb13d22b0f8e1f3da9cb734f581b516cc0e3c909e3f39368f676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad82ab8a58562cf69e6b786debcc7638b28df12f9f1c7bcffb07efb5c1f09cbd
MD5 ea655119ca2591ff58901f8bdfc87b77
BLAKE2b-256 1c03d5f630498bf4b8baf2d6484651255f601e9fdc6d42a83288e8b2420ebc9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47631614c5243ed7d15ae0af8245fcc0599f5b7921fae2a4ae992afb27c9afbb
MD5 c52554ea6321f60ce05f8576c0127805
BLAKE2b-256 21ef9c7fca5bf133bdb144317843881c8b0c74d2acb7fa209f793c29422e7669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3715d779561699471edde70975e07b1de7dddb2816735d40ed16be4b32054188
MD5 b5eb6329b1b72ff6e427bc9bb68fbfcc
BLAKE2b-256 a6b43b60c26cb9a2c623f47eeed84cfa6ebd3f71c5bd95ef32ed526e4ac689dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f81344d212cb41992340b0b8a67e375f44da90590b884204fd3fa5e02107df2
MD5 ad56edc2e1c11072e756b9459082e593
BLAKE2b-256 be3978d6def87a6effec6480ef1474d4cc81ef9845c78281ac5a6c07a6440744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5888b269e790356ce4525f3e8df1fe866d1497b7d7fb7548cfec883cb985288
MD5 5a4956dd9ab8b0d5978243f8cd323d88
BLAKE2b-256 b5986d3f507a7340697d25d53839e68b516d3d01a3714edf33d484896250189b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e957aa4251a8e70b9fe02a16b2d190f18787902da563cb7ba865508b8e8fb04
MD5 1ff698a4ae9345a077f0a1ed8efb3bdc
BLAKE2b-256 36ebc18113555950ea25c421a5e8f7f280a9d7e9198a072f89d33ae9a5725ead

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for marisa_trie-1.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3e431f9c80ee1850b2a406770acf52c058b97a27968a0ed6aca45c2614d64c9f
MD5 d17bcb0fa772ea0a35693ead4b6d516a
BLAKE2b-256 a7798f2593fbb3823ef5216fe465cec05c20195475f43a25fb2733faf2b47035

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for marisa_trie-1.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6cac19952e0e258ded765737d1fb11704fe81bf4f27526638a5d44496f329235
MD5 efb5dbd97132a157ecc90eda53120db7
BLAKE2b-256 9d16923bfbd8c8915377c42fe3bbe25c0fddcc06580cbd5f39c6cdb72e889f25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a6abc9573a6a45d09548fde136dbcd4260b8c56f8dff443eaa565352d7cca59
MD5 40f46e365bd7206435d632f58bf75b2b
BLAKE2b-256 dfc1ea2d8fc675b2133a2060875623929151b9660136e752b273a4f2607c1f0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f7c10f69cbc3e6c7d715ec9cb0c270182ea2496063bebeda873f4aa83fd9910
MD5 2c210c7c647dd41fc2daed9fa1ad1d4f
BLAKE2b-256 9aa7c4a590b0b5524778faeb9a8c6769e66cf34114d9a7c6129bff14d0a8eb1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8d5e686db0ae758837ed29b3b742afb994d1a01ce10977eabd3490f16b5c9f9
MD5 8e32e07d420bcad2b97b207cc2b68ac1
BLAKE2b-256 22965b6ce41b347b7c57f3c77617a81d0205047e8c9c7b2c2673929f4be1ae0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52d1764906befef91886e3bff374d8090c9716822bd56b70e07aa697188090b7
MD5 39cf30a35078f8d312554408ba40c4ea
BLAKE2b-256 cb048b1eb30429546ea6f68f50086db4e1870887ef9b8959bf0d0ab8e4e33a56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1c6990961d1177f6d8fdf7b610fa2e7c0c02743a090d173f6dfa9dc9231c73c
MD5 242bd9935ed03a70a73c2946ccda9934
BLAKE2b-256 f5cdbcb4576c5dec1081b12fa6cb3479eab2dc47371cdd7a503b47519894d107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c89df75aefe1ad7e613340790130f1badc5926bcfa66a6b3c9471071002956a5
MD5 befc88048b7c64b049cd355227b12089
BLAKE2b-256 3f03631a51bd40d3c4f6edb3c990f884f245f73b56db6eec196769ee35166340

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