Skip to main content

A dictionary-like object that is friendly with multiprocessing and uses key-value databases (e.g., RocksDB) as the underlying storage.

Project description

hugedict PyPI Documentation

hugedict provides a drop-in replacement for dictionary objects that are too big to fit in memory. hugedict's dictionary-like objects implement typing.Mapping and typing.MutableMapping interfaces using key-value databases (e.g., RocksDB) as the underlying storage. Moreover, they are friendly with Python's multiprocessing.

Installation

From PyPI (using pre-built binaries):

pip install hugedict

To compile the source, run: maturin build -r inside the project directory. You need Rust, Maturin, CMake and CLang (to build Rust-RocksDB).

Features

  1. Create a mutable mapping backed by RocksDB
from functools import partial
from hugedict.prelude import RocksDBDict, RocksDBOptions

# replace [str, str] for the types of keys and values you want
# as well as deser_key, deser_value, ser_value
mapping: MutableMapping[str, str] = RocksDBDict(
    path=dbpath,  # path (str) to db file
    options=RocksDBOptions(create_if_missing=create_if_missing),  # whether to create database if missing, check other options
    deser_key=partial(str, encoding="utf-8"),  # decode the key from memoryview
    deser_value=partial(str, encoding="utf-8"),  # decode the value from memoryview
    ser_value=str.encode,  # encode the value to bytes
    readonly=False,  # open database in read only mode
    secondary_mode=False,  # open database in secondary mode
    secondary_path=None,  # when secondary_mode is True, it's a string pointing to a directory for storing data required to operate in secondary mode
)
  1. Load huge data from files into RocksDB in parallel: from hugedict.prelude import rocksdb_load. This function creates SST files in parallel, ingests into the db and (optionally) compacts them.

  2. Cache a function when doing parallel processing

from hugedict.prelude import Parallel

pp = Parallel()

@pp.cache_func("/tmp/test.db")
def heavy_computing(seconds: float):
    time.sleep(seconds)
    return seconds * 2


output = pp.map(heavy_computing, [0.5, 1, 0.7, 0.3, 0.6], n_processes=3)
  1. Create dictionary backed by Sqlite: hugedict.sqlite.SqliteDict
  2. Chain multiple dictionaries: hugedict.chained_mapping.ChainedMapping
  3. Cache a dictionary so previously accessed keys are stored in memory: hugedict.cachedict.CacheDict or called hugedict.types.HugeMapping.cache

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

hugedict-2.14.0.tar.gz (15.4 MB view details)

Uploaded Source

Built Distributions

hugedict-2.14.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hugedict-2.14.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

hugedict-2.14.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hugedict-2.14.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

hugedict-2.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

hugedict-2.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

hugedict-2.14.0-cp312-cp312-manylinux_2_35_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.35+ x86-64

hugedict-2.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

hugedict-2.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

hugedict-2.14.0-cp312-cp312-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl (8.0 MB view details)

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

hugedict-2.14.0-cp311-cp311-manylinux_2_35_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.35+ x86-64

hugedict-2.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

hugedict-2.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

hugedict-2.14.0-cp311-cp311-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl (8.0 MB view details)

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

hugedict-2.14.0-cp310-cp310-manylinux_2_35_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.35+ x86-64

hugedict-2.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

hugedict-2.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

hugedict-2.14.0-cp310-cp310-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl (8.0 MB view details)

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

hugedict-2.14.0-cp39-cp39-manylinux_2_35_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.35+ x86-64

hugedict-2.14.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

hugedict-2.14.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

hugedict-2.14.0-cp39-cp39-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl (8.0 MB view details)

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

hugedict-2.14.0-cp38-none-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

hugedict-2.14.0-cp38-cp38-manylinux_2_35_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.35+ x86-64

hugedict-2.14.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

hugedict-2.14.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

hugedict-2.14.0-cp38-cp38-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl (8.0 MB view details)

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

File details

Details for the file hugedict-2.14.0.tar.gz.

File metadata

  • Download URL: hugedict-2.14.0.tar.gz
  • Upload date:
  • Size: 15.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.0

File hashes

Hashes for hugedict-2.14.0.tar.gz
Algorithm Hash digest
SHA256 711aa3cf897629b4389218d1f08bdfef33ff2f29fe807866e3c1a90b4f4dd162
MD5 54c6e911e4c53f389a22e13279944706
BLAKE2b-256 092c1ddf3024d1a06d60128f239a7d098f6febfd7ff6850cdc0585cc83345fcf

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd9959a59174b9ed486d90152263aac63cb633d373bc405260e3c110708f4d0b
MD5 3855628aa4986a7f72a9fcc8674596af
BLAKE2b-256 ccf4efbcd5b79473313537b658432ed74f380ab371a78b84406365a3678da31a

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e1e23087631147a58a9e2a660a48638a1169ec0d12817c941b3a2368cfce9f0
MD5 19c58466fc7803fea5dc1a5eb2a3d7bf
BLAKE2b-256 979ff1dd3159762e28909d611fbb89c9762649f7a10ff2cac5386d6a809cacca

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb172b2dba1b6e11dfca3138a85ef70310a5236e9066d305604dee1a4075d8af
MD5 fd66b2f72f8751c8ca750c05f2dbd895
BLAKE2b-256 31cebb24feb8f017b369cbd0b7dd30ce0bf5c4e3bada1e2e8eb540d612ac287a

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 add2325b6f2755453dfa5b0d9161f3977a729e7e05d960453f3192d070ac131e
MD5 02e61ef1299ea7a32cd2abedc0e0f60e
BLAKE2b-256 c2779bd63db9b8395c8e8cff7c46544fbe78977560abaf7d09274179e2fb9e6a

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bb4b77d3b3b7130a5730f6e7081b493137f54d8bf4d1b7f52e27417ec7b4045
MD5 b5fff21f3eac8eb8b01822f38c6a9cf9
BLAKE2b-256 4661e809fb706589a241b0879546e4498227605d7047bdb5d0ff36ba071d44ac

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03c24c4ab16d1b4deb0bd18ba7068f2511ef9fe231b5a17b5b5e59d7bf482556
MD5 27a0792277d474a1cb83861a5cb6eb42
BLAKE2b-256 1ba776db8a1ca975058ed07213b1e7ada4004df745b1d8fcc0452c70bc53c817

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp312-cp312-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp312-cp312-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 d96ba0c2cd28d106245fce41d47589eab92c818b27371a65c6737b087065c717
MD5 72aff2e0a8f18bcf8a69f988715b984b
BLAKE2b-256 0ce285463c72891dcb49a43864329f41d140279311e65381316a3e5b6edbc825

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57e24ccee835c3610ddf4a60ee6fd529de8d03a7a023471b1d9e2ce77fca1e31
MD5 274356460baebaabb2218f8d825a8b9b
BLAKE2b-256 c529e570deca19c74b65416cb51b35de1857254243a58776b6927aa6ef4dfc7e

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cd2d37b29ba00ad09418dfba50193ea7b57cdd82574c3ce287493c9fa6001dc
MD5 abac71f82ef26ccc0725f3f12e866057
BLAKE2b-256 9d604d2d7dd85d46eb159e8ba46687c8d70c20c5c2f472497d842f01d3ae35b1

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp312-cp312-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp312-cp312-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 dd19beb11291b91ad852a65768adc635bee8d326c52ec0a680ad812972c02f10
MD5 f2cd7d149b4687abc0654b9fc7255a26
BLAKE2b-256 b6bd78f9840436cc70538e4259557a483eebf346309665163b88f1f356dbfdaa

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp311-cp311-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp311-cp311-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 fec8dfa309cb4015d845dc7522c8f301c0eb4aeaeabdd9140118788b62b7554e
MD5 d1d2c2c97494b79814f3ab2e32e27408
BLAKE2b-256 a066854b9d2927ffaddfd93cc151d9ded8dac4c2f0f029b2e4d8af83f9e5ae23

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fc3d051aafd6d5a0464485133aad635f35c241c9507c470caf3b9466aab2802
MD5 32e978e9a837e8ad978112266a700355
BLAKE2b-256 d458edc08c28a77fbbaae59e486d98c05f9c0d31b07f52325144e9c75f08a6b5

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9ee8e0cb44739a2e08ae04f2870e27fb80aca723b705393b579e6f2e773a3d6
MD5 c40d1ea2b18db633859913e9c91b4dac
BLAKE2b-256 d6d244290192a3aa1524ffce581c6dc7bcebe000e19c3c6c9453c02f3b4aa415

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp311-cp311-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp311-cp311-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 d6cfec6642fd444e55575d17aec894a5a46873ae8541f2127cabec035e7826e9
MD5 c3a28ffa22153481847028a287504275
BLAKE2b-256 510b0fa1ea9c81eca78b6a3349397545b16966afbdd511a1bebfb2ddcecc70bc

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp310-cp310-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp310-cp310-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 d80b04da436b804cc20c1bb8fab899017c8131bd3bc7451afd046b5f4e352f9c
MD5 c447ccd97c363647ada50c7e534e0dff
BLAKE2b-256 661c8a1d7e9c9e0875bc033ff4924f4493f34a39fc75568ebab0b6cce110f1ea

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2028afdb6273009e930be4f5548dc33d62a26d11eb939a9a979d3e3c7f6a7f34
MD5 cd6a08b371e71d5402faba9ed3754393
BLAKE2b-256 42fb44d8d9976be1ab51a9dbca14a62c256ba4f001a2c3922ab0665cbeaa9793

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 635643bcd4a7efe76b9dabdf631cca83abfc6400bbdaad0fdb982d89b96b356f
MD5 3ec63ba9d046907cb26912e5008a8e81
BLAKE2b-256 00505836eff96daecf152e93a35858f168b3efb8e468e5eed275cd339508cd16

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp310-cp310-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp310-cp310-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 b91d3a0c3449e608b163558bc8cd4c1889692e713bc2ba30daad19d787f6f0bd
MD5 0299cab7905fd92325b1705c5241afe5
BLAKE2b-256 3f4a61027994d75863b87a0fc3221b0b98516ff0528f43f5df59736135f9f8b7

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp39-cp39-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp39-cp39-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 9336938403e0c0eec51406a627bb3208c4fd145067760d518f503cc78b0a5fe5
MD5 22a78db2d21bc9334ea5ad949fa3e6f8
BLAKE2b-256 431972861e8049d02dabdf8c630c04561c3f8691d27097d13224a67c91d93698

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d26196faf60144051804b3a158e802aaf44e4c40cf8df277a72a4372faa0de0c
MD5 a400f8b1be6309e767c3367f2223e676
BLAKE2b-256 46e2910c7b0e6e8d335d126d2c8c75562b11de7ded418a1999cc04bf2a3490f3

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c8dc49e01f00166e4239dfd3ecc376ddc124559404e178846b114231c363e00
MD5 96c28509b50eb0112cc275e3ba462d1f
BLAKE2b-256 6fc0245e5181fd4437e1d31b23db7e063df8f5be9cb584aeb2c7868a617e5d6f

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp39-cp39-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp39-cp39-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 a02592826207d1369d4440e3abb09b61941e517b587f32b58ad54871602dd4ce
MD5 1bcf78b9296b9b81f53f2f398bdf8dc7
BLAKE2b-256 00f76f334b272a5cbff2bed313f2777a9739cbb7082f6395194e04fb72b30960

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 54ee067bce72e800a49aec5f89ad92ccd4ba2b499712282f4b6595754b240352
MD5 6e06c0c24786c9a2ebb8828f9eca3ab2
BLAKE2b-256 5ef20b1e88a0805f2fc514027aeea1b5c1d98aa947c8f46d2d924fff19e99b03

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp38-cp38-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp38-cp38-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 7b4f270403c156b4ae49220c8892fd47b0187f8ff7b3a91b787f886094882d61
MD5 35e290e0972b8a114c2f6e87a93ce45b
BLAKE2b-256 510ab8ec217f4c8493bbfd914453fc00189a5fbd609d91d8870a84f44e9b37fa

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7ade0e0a873ecc3bcf1d245136b579d65f3b65bb4f4ff6e9824baa9c9398213
MD5 0ee02ba40dc54cd521e3729b60ac8a31
BLAKE2b-256 a461d3b642f8c0245539beb2884e0436749bf3bf2872bc83c174af76ae6c4399

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7a75723d403f352a96dd910fe65dcd128e71d684f68c8d44fbcf0b959612145
MD5 7097a58dddc59a9d9ec8344fd0aae2c6
BLAKE2b-256 12bb9249a1996fae847ba6190f5d3702bed46a91b52fc17a94160568e1a5dd67

See more details on using hashes here.

File details

Details for the file hugedict-2.14.0-cp38-cp38-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for hugedict-2.14.0-cp38-cp38-macosx_10_14_x86_64.macosx_11_0_arm64.macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 be4bb7e12ebe131b033514c5e18bc419b25ddb56dfceb2acbe6d8604ba1d5657
MD5 f66e921220496405217a21150140867a
BLAKE2b-256 5f0ec034d09df736bdf0852f738da8afe269dd1461273b78192ea592a7de994f

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