Skip to main content

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

Project description

MARISA Trie

https://img.shields.io/pypi/pyversions/marisa-trie.svg https://github.com/pytries/marisa-trie/actions/workflows/tests.yml/badge.svg

Static memory-efficient Trie-like structures for Python (3.7+) 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 and BSD 2-clause license.

CHANGES

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.

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

Uploaded Source

Built Distributions

marisa_trie-1.2.0-pp310-pypy310_pp73-win_amd64.whl (141.7 kB view details)

Uploaded PyPy Windows x86-64

marisa_trie-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (184.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

marisa_trie-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (169.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

marisa_trie-1.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (188.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

marisa_trie-1.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (148.0 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

marisa_trie-1.2.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (160.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

marisa_trie-1.2.0-pp39-pypy39_pp73-win_amd64.whl (141.5 kB view details)

Uploaded PyPy Windows x86-64

marisa_trie-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (183.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

marisa_trie-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (169.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

marisa_trie-1.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (187.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

marisa_trie-1.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (147.7 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

marisa_trie-1.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (159.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

marisa_trie-1.2.0-pp38-pypy38_pp73-win_amd64.whl (139.8 kB view details)

Uploaded PyPy Windows x86-64

marisa_trie-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (182.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

marisa_trie-1.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (167.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

marisa_trie-1.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (186.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

marisa_trie-1.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (145.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

marisa_trie-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (157.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

marisa_trie-1.2.0-pp37-pypy37_pp73-win_amd64.whl (139.7 kB view details)

Uploaded PyPy Windows x86-64

marisa_trie-1.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (184.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

marisa_trie-1.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (168.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

marisa_trie-1.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (188.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

marisa_trie-1.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (157.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

marisa_trie-1.2.0-cp312-cp312-win_amd64.whl (151.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

marisa_trie-1.2.0-cp312-cp312-win32.whl (128.7 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

marisa_trie-1.2.0-cp312-cp312-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

marisa_trie-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

marisa_trie-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

marisa_trie-1.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

marisa_trie-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (173.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

marisa_trie-1.2.0-cp312-cp312-macosx_10_9_x86_64.whl (189.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

marisa_trie-1.2.0-cp312-cp312-macosx_10_9_universal2.whl (358.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

marisa_trie-1.2.0-cp311-cp311-win_amd64.whl (152.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

marisa_trie-1.2.0-cp311-cp311-win32.whl (130.0 kB view details)

Uploaded CPython 3.11 Windows x86

marisa_trie-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

marisa_trie-1.2.0-cp311-cp311-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

marisa_trie-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

marisa_trie-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

marisa_trie-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

marisa_trie-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

marisa_trie-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (174.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

marisa_trie-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl (192.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

marisa_trie-1.2.0-cp311-cp311-macosx_10_9_universal2.whl (361.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

marisa_trie-1.2.0-cp310-cp310-win_amd64.whl (152.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

marisa_trie-1.2.0-cp310-cp310-win32.whl (130.3 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

marisa_trie-1.2.0-cp310-cp310-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

marisa_trie-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

marisa_trie-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

marisa_trie-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

marisa_trie-1.2.0-cp310-cp310-macosx_11_0_arm64.whl (174.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

marisa_trie-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl (191.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

marisa_trie-1.2.0-cp310-cp310-macosx_10_9_universal2.whl (361.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

marisa_trie-1.2.0-cp39-cp39-win_amd64.whl (152.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

marisa_trie-1.2.0-cp39-cp39-win32.whl (130.2 kB view details)

Uploaded CPython 3.9 Windows x86

marisa_trie-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

marisa_trie-1.2.0-cp39-cp39-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

marisa_trie-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

marisa_trie-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

marisa_trie-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

marisa_trie-1.2.0-cp39-cp39-macosx_11_0_arm64.whl (174.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

marisa_trie-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl (192.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

marisa_trie-1.2.0-cp39-cp39-macosx_10_9_universal2.whl (361.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

marisa_trie-1.2.0-cp38-cp38-win_amd64.whl (152.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

marisa_trie-1.2.0-cp38-cp38-win32.whl (130.2 kB view details)

Uploaded CPython 3.8 Windows x86

marisa_trie-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

marisa_trie-1.2.0-cp38-cp38-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

marisa_trie-1.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

marisa_trie-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

marisa_trie-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

marisa_trie-1.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

marisa_trie-1.2.0-cp38-cp38-macosx_11_0_arm64.whl (174.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

marisa_trie-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl (191.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

marisa_trie-1.2.0-cp38-cp38-macosx_10_9_universal2.whl (360.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

marisa_trie-1.2.0-cp37-cp37m-win_amd64.whl (151.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

marisa_trie-1.2.0-cp37-cp37m-win32.whl (129.2 kB view details)

Uploaded CPython 3.7m Windows x86

marisa_trie-1.2.0-cp37-cp37m-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

marisa_trie-1.2.0-cp37-cp37m-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

marisa_trie-1.2.0-cp37-cp37m-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

marisa_trie-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

marisa_trie-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

marisa_trie-1.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

marisa_trie-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (189.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: marisa_trie-1.2.0.tar.gz
  • Upload date:
  • Size: 415.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for marisa_trie-1.2.0.tar.gz
Algorithm Hash digest
SHA256 fedfc67497f8aa2757756b5cf493759f245d321fb78914ce125b6d75daa89b5f
MD5 fb1f3a97d74279a0f4417460ba840589
BLAKE2b-256 ff3be3b9e08c393acc474e7a60df6f5e180af103ad25b0c29cee3ce2564447eb

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f19c5fcf23c02f1303deb69c67603ee37ed8f01de2d8b19f1716a6cf5afd5455
MD5 ad4dfc0753250d18fe7b6a66c3918bac
BLAKE2b-256 69548f1255f6621aa355a8a1c8bae4f8e0b7494b64390dfca707ac91a58622d1

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 045f32eaeb5dcdb5beadb571ba616d7a34141764b616eebb4decce71b366f5fa
MD5 9d53fc35a58bc3211e8dc7cf839f83e5
BLAKE2b-256 f3cad63f8811e22ddc7f908c9618226b3e5370468bdca931bde7803760df90e0

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92ac63e1519598de946c7d9346df3bb52ed96968eb3021b4e89b51d79bc72a86
MD5 b7425199e894e6543282ce51ce7e676a
BLAKE2b-256 fcad87dd9c792e3107112e56ac57bf080a14f68a38df688e5c943994c32a5851

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb60c2f9897ce2bfc31a69ac25a040de4f8643ab2a339bb0ff1185e1a9dedaf8
MD5 b976bc8f48df88b581622e970976de78
BLAKE2b-256 425e878f8331b17a654d512674af6e82449d67d168ddf4f415304f049af87434

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4f05c2ee218a5ab09d269b640d06f9708b0cf37c842344cbdffb0661c74c472
MD5 c965f833eb680aa0fad568a11b633c2e
BLAKE2b-256 10a1eaea55807ac4258f1109193df9765808488c1203d8ae7a645b8d7fcd4c32

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 035c4c8f3b313b4d7b7451ddd539da811a11077a9e359c6a0345f816b1bdccb3
MD5 6913d8da385049feaf6c6b2355aeb736
BLAKE2b-256 e34881cbc54ec66e30d2199428d1227019f60b16e4d8e9cfbdb5864110a52d82

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c7f4df4163202b0aa5dad3eeddf088ecb61e9101986c8b31f1e052ebd6df9292
MD5 f6f8bc7ab9b7c70db1bd37e2b9985270
BLAKE2b-256 33d10d75bae76a7e2eca3c905455fab0af771cc64e2ff83796f0f7eec3a7ffcd

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a97652c5fbc92f52100afe1c4583625015611000fa81606ad17f1b3bbb9f3bfa
MD5 3874495250c51e6a4180ce1099a317d3
BLAKE2b-256 74e61dc7d302758453f655d3bec3f957928a2a340528787175758f0a1e599d9a

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b4a8d3ed1f1b8f551b52e11a1265eaf0718f06bb206654b2c529cecda0913dd
MD5 bbd6b7263cf05ca799b647372dcfc708
BLAKE2b-256 8a04b634ddba220cac0b553a1220159f541ad562352d881d86df69caa35ffe97

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7183d84da20c89b2a366bf581f0d79d1e248909678f164e8536f291120432e8
MD5 a4a1abcbf49973532eeff86a073f4a40
BLAKE2b-256 af221f1903b67bda967a41dbb1788a07292a66430ccbe3f3773538202171cc3a

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58e2b84cbb6394f9c567f1f4351fc2995a094e1b684da9b577d4139b145401d6
MD5 3d11d929cc903b46a4db9b70a1508892
BLAKE2b-256 a4e5f25e7c1f50ae93b04fd066f387c1ba383d11bf10730d5ef87a48bb18e9e0

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2fb9243f66563285677079c9dccc697d35985287bacb36c8e685305687b0e025
MD5 4e60fb87a1eb2cd64b1326a015d9fc18
BLAKE2b-256 58acceecef637a4baeea0b31a0cf9996f84427e18c085c5ee6d09b40cb06fe7e

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2e7540f844c1de493a90ad7d0f5bffc6a2cba19fe312d6db7b97aceff11d97f8
MD5 784061c46af784f5ecbf84c079018e78
BLAKE2b-256 38226906e0aa6bbf0e9010c2dec69d88f5a34d9b12d570cd4fc4c5212607c9fb

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd1f3ef8de89684fbdd6aaead09d53b82e718bad4375d2beb938cbd24b48c51a
MD5 ef61f306a8ee55985b2d76e75ad196d7
BLAKE2b-256 09085f7ff4d77a77e7651bc7cc17b8e7fec348324de45f9c15f363b77f5cbd2c

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4cfec001cf233e8853a29e1c2bb74031c217aa61e7bd19389007e04861855731
MD5 f2e65c0d4b35d4e020aa16ead2c09a40
BLAKE2b-256 7a9fee64c818953b453cb03cd31901dd093460b5afa773ae32b82aec3529a227

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65f5d8c1ecc85283b5b03a1475a5da723b94b3beda752c895b2f748477d8f1b1
MD5 eb70bdad87965b4007ec274da339c841
BLAKE2b-256 757665f735d7349b6f242ccbdbeca5931c600e37bad9a57cb5a8e1eeabce00ea

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de9911480ce2a0513582cb84ee4484e5ee8791e692276c7f5cd7378e114d1988
MD5 aa11576aadf7c8094caf0c9af85e9d4a
BLAKE2b-256 1b5a82a7f63e5d4fe02366d7e08558190ae79a645cf7e9105e53884d57621d89

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 069ac10a133d96b3f3ed1cc071b973a3f28490345e7941c778a1d81cf176f04a
MD5 abb92df2737fe54983dfeb56a95a198e
BLAKE2b-256 9d2bd955467fe82410127024ee818cb28d458898b3b7d150b95db971430e0874

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ce2f68e1000c4c72820c5b2c9d037f326fcf75f036453a5e629f225f99b92cfc
MD5 d8c67b7a7f13e951d4d2b3784aa6f656
BLAKE2b-256 09d1bfcb0663930ce13a39b7ccdfdfa4c3a95ad8338e044d937c9017cb4c4785

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c57647dd9f9ba16fc5bb4679c915d7d48d5c0b25134fb10f095ccd839686a027
MD5 7ae1ec27ea6f4093156fed74cd3dfa1f
BLAKE2b-256 b73dc06820ba8b012724a7de8e703e5ce77f29e1af70fc7898a12f46d014f62c

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 125016400449e46ec0e5fabd14c8314959c4dfa02ffc2861195c99efa2b5b011
MD5 5ba1239be8f2f7a25ea4549e8a0188b5
BLAKE2b-256 c30e48b0c98329ee73344653105a805ae9f34a4618a654133e31e73148bc8f44

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6601e74338fb31e1b20674257706150113463182a01d3a1310df6b8840720b17
MD5 ed10cb826fc4be9eaf57721574866b7e
BLAKE2b-256 7f341ab0a8074b55a69153d99e8b7e908e6fd41e74fa70ef3c3bc0d73e15186b

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a06a77075240eb83a47b780902322e66c968a06a2b6318cab06757c65ea64190
MD5 82775c3e24a2ca11b5ec120885b7b329
BLAKE2b-256 30ccd83fedbd66fb08c3bfc137626f3017478f2e87b2cb197da97123b0104b49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b04a07b99b62b9bdf3eaf1d44571a3293ce249ce8971944e780c9c709593462f
MD5 af6e9344764ad464710a060247aafff7
BLAKE2b-256 cd93372821821c62624a258f96de1add12ce032c1eca12eb2ed492c9b4462fcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: marisa_trie-1.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 128.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for marisa_trie-1.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5cea60975184f03fbcff51339df0eb44d2abe106a1693983cc64415eb87b897b
MD5 b45e364d8d4bc9c089634027952654c3
BLAKE2b-256 cb594a30fb46105fe84d30dcb913cb30375b77c473eaed13929d1802464e6a4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd88a338c87e6dc130b6cea7b697580c21f0c83a8a8b46671cfecbb713d3fe24
MD5 6d3d17ff32db0aaee906679804f3b82a
BLAKE2b-256 796b4f33d4eefeb3c8dbe6a24cbe20e1f9d96bcb3b261885fa80e386216d7f86

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3c0e38f0501951e2322f7274a39b8e2344bbd91ceaa9da439f46022570ddc9d
MD5 9b6a9284f948b34d96e4402d4062d739
BLAKE2b-256 e18f7744cd602c76fee9543898151b34b0dcd0200e51aa41be5b28fc20a5313a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c87a0c2cccce12b07bfcb70708637c0816970282d966a1531ecda1a24bd1cc8
MD5 fdf9201cf36cd726c61e4d7cffc1d184
BLAKE2b-256 0d692752c621f327a83e57da0db13a5070176cb7cbde565789b0384910a15522

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d8a1c0361165231f4fb915237470afc8cc4803c535f535f4fc42ca72855b124
MD5 7dcee935ce8430c9a17795d9fb334a02
BLAKE2b-256 566c0a8e06daa6872e0d2a0ad4316f8382a29defc44bca14a9fc1fce2c3bc098

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8cd287ff323224d87c2b739cba39614aac3737c95a254e0ff70e77d9b8df226d
MD5 807f8ba158cd353067d7f518fc246bdc
BLAKE2b-256 2b8a9f8fae02c25a9dedb3c6815be273be4d82846307ebf5f74caaa12041bb80

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3267f438d258d7d85ee3dde363c4f96c3196ca9cd9e63fe429a59543cc544b15
MD5 b51ac0e528bff300cd9c3866249b571e
BLAKE2b-256 8e120680e07b7fe8c03332cf43c9833a7bf7515f8469f410dd02e51f00e10a03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b855e6286faef5411386bf9d676dfb545c09f7d109f197f347c9366aeb12f07
MD5 dc258dedd9b78d845ca95a1063a1b00b
BLAKE2b-256 da21d261bfde464531614bf5b747dc854de8a9eeb68c5dc2b49ab765174f19cb

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec167b006884a90d130ee30518a9aa44cb40211f702bf07031b2d7d4d1db569b
MD5 31647a127f985df4908ea8034589b0c7
BLAKE2b-256 dcfff00f14025d6afd87614e5ab40762e6bf33b49c3754105d62621e321cf7e8

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 39b88f126988ea83e8458259297d2b2f9391bfba8f4dc5d7a246813aae1c1def
MD5 dd7419e46b1880376cd2f2d866debb3b
BLAKE2b-256 6df196d2dffe115b6ca92f59a5d9cc8f7bd68715f50e38f132b92cad8bf88b2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d3ef375491e7dd71a0a7e7bf288c88750942bd1ee0c379dcd6ad43e31af67d00
MD5 bddf4a4a04e57cbe719bc4a0ffa8eff1
BLAKE2b-256 6128b93cd14cd422be8fc091bd454dd48edbf0c2333111183db38c8e5a13e468

See more details on using hashes here.

File details

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

File metadata

  • Download URL: marisa_trie-1.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 130.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for marisa_trie-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b08968ccad00f54f31e38516e4452fae59dd15a3fcee56aea3101ba2304680b3
MD5 0ecc08b6f0bda113796f47a7d0d154e6
BLAKE2b-256 11ce19b0721caa8ec606062d56437ae3661364f18d850dc54472032bcda8dd85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3f0562863deaad58c5dc3a51f706da92582bc9084189148a45f7a12fe261a51
MD5 e52c89e7fb368547211e1570e213dee6
BLAKE2b-256 481e380877607af8a9668265be602d31cfc8d5e1bf6569ebe97221542f5cb222

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 49701db6bb8f1ec0133abd95f0a4891cfd6f84f3bd019e343037e31a5a5b0210
MD5 d95a21ef1a888d10ba899e616a397e9e
BLAKE2b-256 d7979752b5c109d2410749a00517fe7abd301d755ddf4489529db45721b7586f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a83fe83e0eab9154a2dc7c556898c86584b7779ddf4214c606fce4ceff07c13
MD5 5d77ac10ceead0e57111e880b2849a49
BLAKE2b-256 f282274869c51f619be33109d23191f03cd5f92f611ee973bc7b23e6295f1245

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 525b8df41a1a7337ed7f982eb63b704d7d75f047e30970fcfbe9cf6fc22c5991
MD5 7903b23ce0198921200c2222c10c53ee
BLAKE2b-256 09a82a08ba5cc9040d478ea727abe95b00926c34f792065de95fb2db5fe922e8

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3425dc81d49a374be49e3a063cb6ccdf57973201b0a30127082acea50562a85e
MD5 9d52441568b278e348421b362b09980e
BLAKE2b-256 959dd0cad0d771e830fdfd51a0435c47a99bb44bd27d01831ec6fd11e4f3ac28

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c643c66bbde6a115e4ec8713c087a9fe9cb7b7c684e6af4cf448c120fa427ea4
MD5 fdda7d10923cbcad8b86d2bc3b7c6236
BLAKE2b-256 ef0bf9404c2df8d35ade65478f9abb88d6ce7077c5deba6e69307085da81d0ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26177cd0dadb7b44f47c17c40e16ac157c4d22ac7ed83b5a47f44713239e10d1
MD5 4c76e35888f27ed31c7356aca76c74ae
BLAKE2b-256 8fb2ad317634caae0f38a84170abc08ac57e13fd8db16507b457b8fabee0e153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1890cc993149db4aa8242973526589e8133c3f92949b0ac74c2c9a6596707ae3
MD5 c5ccfdd93940cabddabe83aaa7dbdd5d
BLAKE2b-256 2ce1b3eb01992e3b326cb95989e41692be229b50bd7a7abc23a84e95cd2b9566

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d62985a0e6f2cfeb36cd6afa0460063bbe83ef4bfd9afe189a99103487547210
MD5 4da0629e1ec6fe1e5ce56496aa2caea9
BLAKE2b-256 02633aa7a8794bd0ec8e682cc3d67ef53d863c6c6847b80d24bd36b89d9b55ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c729e2b8f9699874b1372b5a01515b340eda1292f5e08a3fe4633b745f80ad7a
MD5 fe3ed6a68e23c818c8b4177fd339819e
BLAKE2b-256 7af653981a750463d6b0c380d15839578a71b17cd4b1d6f26d11fa5515ea5b96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: marisa_trie-1.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 130.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for marisa_trie-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bdd1d4d430e33abbe558971d1bd57da2d44ca129fa8a86924c51437dba5cb345
MD5 28c17a5de55918d2fa944dae841d259e
BLAKE2b-256 107cdb6f389cbde0294fa84c4e4bdafd8485d3f7a66c978f311f138a566beb64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e4535fc5458de2b59789e574cdd55923d63de5612dc159d33941af79cd62786
MD5 fc05b1b172679340211515081dbe5f36
BLAKE2b-256 145624c6552d6b79560f0d28c12d2781b174d975750e6c847239b5a82eb1eaf7

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 88660e6ee0f821872aaf63ba4b9a7513428b9cab20c69cc013c368bd72c3a4fe
MD5 a1dedd6075f66dec2587febc9faca21e
BLAKE2b-256 b21c293010ccfad51f6e1176c24a0b547c73880fcac689e721f0d0b074daca50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5321211647609869907e81b0230ad2dfdfa7e19fe1ee469b46304a622391e6a1
MD5 8defc88dd5a8a9a608601bc1c5a3a29a
BLAKE2b-256 ab8aacb24216a365802fd901ad294ed9cf848b943323d58e4564cbfa0799c745

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e04e9c86fe8908b61c2aebb8444217cacaed15b93d2dccaac3849e36a6dc660
MD5 c69a70f2e38a78942d65ff9377c0e220
BLAKE2b-256 ab28b10fb434253724d6e2476a9232ce138fbb92bd9feb402217c71ce390ba10

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4fbb1ec1d9e891060a0aee9f9c243acec63de1e197097a14850ba38ec8a4013
MD5 37dbc348b1497070690d250ee73634b5
BLAKE2b-256 f9f35f777b96e1270faa50e9fb70815f609e79fc9770c7f44a77574de8c8c37b

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a7c75a508f44e40f7af8448d466045a97534adcbb026e63989407cefb9ebfa6
MD5 d6b84a59c0543793cf46a0e4f1e0499a
BLAKE2b-256 81157f36ebc52fd2220e0f496b1f4ac129350cf04b5be0b98de9a1d259b0f00d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77bfde3287314e91e28d3a882c7b87519ef0ee104c921df72c7819987d5e4863
MD5 ae02253bd3710df2547077d9082dc76b
BLAKE2b-256 6bf81933a0d1c18a3c3d747653fb0f41764322f4b4dc039bbaf3dd4ec62e9831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f5b3080316de735bd2b07265de5eea3ae176fa2fc60f9871aeaa9cdcddfc8f7
MD5 d32b68a132035dff7e14c35aece9b2d8
BLAKE2b-256 8cbfb088cf63f633f27b7db3e9b8ca4c762f7e1ae51a80e65e9eff24ed908bbe

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 61fab91fef677f0af0e818e61595f2334f7e0b3e122b24ec65889aae69ba468d
MD5 48c5bcbb6ec164268c80a863fc0e3bbd
BLAKE2b-256 1d798fbfbcdcbdacc0de2c4c9bd43d0183e4d18ad84669d9573fb8cf3ee69eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 84c44cb13803723f0f76aa2ba1a657f762a0bb9d8a9b80dfff249bb1c3218dd6
MD5 7ba0b2029407c02cc3b2d38a043651cf
BLAKE2b-256 0c15ea93fa50bb1a5191ebc2e87b4daaffe70a35efd9fbb9bea4fa56f193295a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: marisa_trie-1.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 130.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for marisa_trie-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fe1394e1f262e5b45d22d30bd1ef75174d1f2772e86716b5f93f9c29dfc1a779
MD5 58080e7cd744f290873793d9bc950a67
BLAKE2b-256 97a8eced613a245dbede3a7203314076c1797f1df676591f038e135aa1b506eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3540bb85b38dfc17060263e061c95a0a435681b04543d1ae7e8d7441a9790593
MD5 bac8099e5d8700eadaf9d56804a0b2dc
BLAKE2b-256 475e5d9fd9f8dc44992062b509a11a98ab1ec760c58d43f33871b41148a33dad

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fdf7a2d066907816726f3bf241b8cb05b698d6ffaa3c5ea2658d4ba69e87ec57
MD5 e3ac9e934643c2ab1f25bf06aa7a39d3
BLAKE2b-256 ebd2e7263a523e9527a27f403d8da3fb7c07eb22ef3b1f3a706633986dbac29c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 902ea948677421093651ca98df62d255383f865f7c353f956ef666e92500e79f
MD5 25c977182b38a6eff4766b69f5866fa5
BLAKE2b-256 1c6c79363e026ce243ebc1be6430fcfc2e43103ada32f3aef3d87469a613eeb5

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fb95f3ab95ba933f6a2fa2629185e9deb9da45ff2aa4ba8cc8f722528c038ef
MD5 26cb288b44bac48263c2a3ae8559fdc1
BLAKE2b-256 fbece8d7d257c430fc7af961ca364677fd4e215298396d5722061be7918ff2b3

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eaf052c0a1f4531ee12fd4c637212e77ad2af8c3b38a0d3096622abd01a22212
MD5 18a8d84dbc73eeea599bcfa21e894a86
BLAKE2b-256 f32f518c6732d81463eadb6adb9eda8366835f2b345f1f975a52131738d7fe0a

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7459b1e1937e33daed65a6d55f8b95f9a8601f4f8749d01641cf548ecac03840
MD5 fba3af7b68ccd47ae5602498e347c376
BLAKE2b-256 1b4c4a85de71271d2ebd63a0677d33c91f6f358d933cd471c585d19dc8b692a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7196691681ecb8a12629fb6277c33bafdb27cf2b6c18c28bc48fa42a15eab8f
MD5 b18725077a93cb8c55f73c0aa680270b
BLAKE2b-256 9756c15d196f40d76f141a4c25b63513f52bbcccbfb768334eb6b3e4d7211982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 006419c59866979188906babc42ae0918081c18cabc2bdabca027f68c081c127
MD5 2d2cc5bd2337f2c843b29af793af2fb5
BLAKE2b-256 35d497897d0cb8a5b6e0a1f393f52d5cfe09887ffd86fe6f46a1b144d9b784e2

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6ff705cb3b907bdeacb8c4b3bf0541691f52b101014d189a707ca41ebfacad59
MD5 37474d2a5cae8231e417c93eaf683bf4
BLAKE2b-256 5eed4a17003117ea49bbe5df7a4cf2ecb57217788effd1dc779ce224b84fef8d

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 02f773e85cc566a24c0e0e28c744052db7691c4f13d02e4257bc657a49b9ab14
MD5 eb5ce63294444a8fb08557bd491b37de
BLAKE2b-256 e9c973b44a4bdfccdb520fbbd980d5f63fc87958e9b052c79d8592e94717048f

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: marisa_trie-1.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 130.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for marisa_trie-1.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6aeef7b364fb3b34dbba1cc57b79f1668fad0c3f039738d65a5b0d5ddce15f47
MD5 36a5bb67f40c78853e0bf90fbaea67ed
BLAKE2b-256 99e1976b74eb9dbbb8852956fe9df6d33f5a75a96545184722374aa7e6f5f562

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 437bf6c0d7ba4cf17656a0e3bdd0b3c2c92c01fedfa670904177eef3116a4f45
MD5 23651e9123ba7b5d799840face0e36c9
BLAKE2b-256 d6b431b885450876137a15f4614baa9178cf3602624a1ef074ea7a91c6ead6f1

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c6e6506bd24a5799b9b4b9cf1e8d6fa281f136396ba018a95d95d4d74715227
MD5 06b3b88288565c987e940e07b1cdaae8
BLAKE2b-256 3c61e12a28dcb13f673448659e658124968e0930597234dc7df4923b4747ba5f

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40e2a374026492ac84232897f1f1d8f92a4a1f8bcf3f0ded1f2b8b708d1acfff
MD5 009a4048a5c2e157944cd929badbe7f4
BLAKE2b-256 99b75fccd98cd11b28626facefd9fdaabd3205c6b765da10c88d83d2bd19f71b

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7202ba0ca1db5245feaebbeb3d0c776b2da1fffb0abc3500dd505f679686aa1
MD5 13d8b5c8aa08b9498ea7fb1d3c81d5e7
BLAKE2b-256 0f1b8cc9837318a280b40eba31e29247bc0eded20895f9134d88b8e42d8a2dff

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8af7a21ac2ba6dc23e4257fc3a40b3070e776275d3d0b5b2ef44473ad92caf3a
MD5 cb67b5848dbb5a97b8137bc74739731d
BLAKE2b-256 db861c04285642ebf275785309a6ce1403d20730efe1a93e4d79aa8b28f08add

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83d90be28c083323909d23ff8e9b4a2764b9e75520d1bae1a277e9fa7ca20d15
MD5 c085531dedbf66e762754fcefd443870
BLAKE2b-256 0836d930ce39e6dd09b9a483edb3570cbafd97e3f21e97f9bf5efd235087e08d

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 873efd212dfef2b736ff2ff43e10b348c428d5dbac7b8cb8aa777004bc8c7b0e
MD5 5e2e94e921748b9f0ce9052d81b95694
BLAKE2b-256 5d3504e183df411b7b212c594f68fec4acfdc60f7ecf16e4f13c4ee354cd9b0e

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9dccef41d4af11a03558c1d101de58bd723b3039a5bc4e064250008c118037ec
MD5 8e43e0396be0f705c4ca4a13db94a2b8
BLAKE2b-256 8a387c951862899ee6d95c73ffc504ab78a6d7b52730f7df0be1a7fe479c627a

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fa1fa7f67d317a921315a65e266b9e156ce5a956076ec2b6dbf72d67c7df8216
MD5 c97048ac1a38416d6e2b2c3d1b8aa15a
BLAKE2b-256 5a1335855ae6ea25a8c38bee4c16f8c5377dd2dd7b38ab12261d525385c3359d

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 27d270a64eb655754dfb4e352c60a084b16ab999b3a97a0cdc7dbecbca3c0e35
MD5 796e5e599f303591f7d8a09b8851e70a
BLAKE2b-256 5a92ad189ad1a06c157afac84b3ae6a3df2e46e1fa4b437dfa26ddaff1cc5800

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: marisa_trie-1.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 129.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for marisa_trie-1.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 bc138625b383998f5cd0cbf6cd38d66d414f3786ae6d7b4e4a6fc970140ef4e9
MD5 528a6e672fd599d7cf7773839ee6e799
BLAKE2b-256 5f7c3ca48b483053c3a9934e50ac43a358e22595c9a3614e016d9982f089745e

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36d65bcbf22a70cdd0202bd8608c2feecc58bdb9e5dd9a2f5a723b651fcab287
MD5 dd209bbe338df80eff2d6994f0dc57da
BLAKE2b-256 d9240b9dced1e3f978eba847cc21ae329d6b7155904f7cf90876f750bf397ccf

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 015594427360c6ad0fa94d51ee3d50fb83b0f7278996497fd2d69f877c3de9bd
MD5 4d22d4a62533dacfbce65d5f647ff1d3
BLAKE2b-256 55a98fcd46403dcf781ec14c484681305e66bd9e8c2b81155210103c45093ea4

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eba1061bbeaeec4149282beab2ae163631606f119f549a10246b014e13f9047b
MD5 3857ce49d48024eee2eec2d7665c6b5f
BLAKE2b-256 613b25fb8cdcbddac818354b5f4e272075355370454eb116069422e3b6cf05a5

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bcc6613bc873136dc62609b66aaa27363e2bd46c03fdab62d638f7cf69d5f82
MD5 62bf5436b01be141fca70ae04f71e5ea
BLAKE2b-256 101dc16ca44ea10a912b1b85b0f274bae7ae8f81fd971618738efad2b657776e

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2db8e74493c3bffb480c54afaa88890a39bf90063ff5b322acf64bf076e4b36e
MD5 4e987102fab94d32fb074d53f818333e
BLAKE2b-256 3ac8ac5d91ba7adfffbcdd61fd3e16e2204d272aee24f0c2ddfd47300058c618

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f5cb731581effb3e05258f3ddc2a155475de74bb00f61eb280f991e13b48f783
MD5 2edb1bd2f23d01463bb4820263151926
BLAKE2b-256 b914c1fe50fb45997617552abff8ced572d65910e77b721870b9eab37a6f21dc

See more details on using hashes here.

File details

Details for the file marisa_trie-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for marisa_trie-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c11af35d9304de420b359741e12b885d04f11403697efcbbe8cb50f834261ebc
MD5 a250894afc288f2fda56331aa6ba8325
BLAKE2b-256 a8d1f853b2908849643a53d35154a844c473af6f34ac16cd533633a200f4513f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page