Skip to main content

Async MongoDB client for Python

Project description

Mongojet

CI Coverage Status PyPI version versions

Async (asyncio) MongoDB client for Python. It uses Rust MongoDB driver and tokio under the hood. Mongojet is 2-4x faster than Motor (and 1.5-3.5x faster than PyMongo AsyncMongoClient) in high concurrency scenarios (see benchmarks below).

Requirements

  • Python >= 3.9
  • pymongo>=4.6.2 (only bson package is required)

Installation

pip install mongojet

Usage

Mongojet has an API similar to PyMongo/Motor (but not exactly the same)

Creating a Client

Typically, you should create a single instance of Client per application/process. All client options should be passed via MongoDB connection string.

from mongojet import create_client, ReadPreference

client = await create_client('mongodb://localhost:27017/test_database?maxPoolSize=16')

Getting a Database

default database

db = client.get_default_database()

database with specific name

db = client.get_database('test_database')

database with specific name and options

db = client.get_database('test_database', read_preference=ReadPreference(mode='secondaryPreferred'))

Getting a Collection

collection = db['test_collection']

with options

collection = db.get_collection('test_collection', read_preference=ReadPreference(mode='secondary'))

Inserting documents

insert_one

document = {'key': 'value'}
result = await collection.insert_one(document)
print(result)
#> {'inserted_id': ObjectId('...')}

insert_many

documents = [{'i': i} for i in range(1000)]
result = await collection.insert_many(documents)
print(len(result['inserted_ids']))
#> 1000

Find documents

find_one (to get a single document)

document = await collection.find_one({'i': 1})
print(document)
#> {'_id': ObjectId('...'), 'i': 1}

find (to get cursor which is an async iterator)

cursor = await collection.find({'i': {'$gt': 5}}, sort={'i': -1}, limit=10)

you can iterate over the cursor using the async for loop

async for document in cursor:
    print(document)

or collect cursor to list of documents using to_list method

documents = await cursor.to_list()

find_many (to get list of documents in single batch)

documents = await collection.find_many({'i': {'$gt': 5}}, sort={'i': -1}, limit=10)

Counting documents

n = await collection.count_documents({'i': {'$gte': 500}})
print(n)
#> 500

Aggregating documents

cursor = await collection.aggregate(pipeline=[
    {'$match': {'i': {'$gte': 10}}},
    {'$sort': {'i': 1}},
    {'$limit': 10},
])
documents = await cursor.to_list()
print(documents)

Updating documents

replace_one

result = await collection.replace_one(filter={'i': 5}, replacement={'i': 5000})
print(result)
#> {'matched_count': 1, 'modified_count': 1, 'upserted_id': None}

update_one

result = await collection.update_one(filter={'i': 5}, update={'$set': {'i': 5000}}, upsert=True)
print(result)
#> {'matched_count': 0, 'modified_count': 0, 'upserted_id': ObjectId('...')}

update_many

result = await collection.update_many(filter={'i': {'$gte': 100}}, update={'$set': {'i': 0}})
print(result)
#> {'matched_count': 900, 'modified_count': 900, 'upserted_id': None}

Deleting documents

delete_one

result = await collection.delete_one(filter={'i': 5})
print(result)
#> {'deleted_count': 1}

delete_many

result = await collection.delete_many(filter={'i': {'$gt': 5}})
print(result)
#> {'deleted_count': 94}

Working with GridFS

bucket = db.gridfs_bucket(bucket_name="images")

with open('/path/to/my/awesome/image.png', mode='rb') as file:
    data = file.read()
    result = await bucket.put(data, filename='image.png', content_type='image/png')
    file_id = result['file_id']

with open('/path/to/my/awesome/image_copy.png', mode='wb') as file:
    data = await bucket.get_by_id(file_id)
    file.write(data)

await bucket.delete(file_id)

Simple benchmark (lower is better):

find_one

find_one

insert_one

insert_one

iterate over cursor

cursor

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

mongojet-0.5.6.tar.gz (194.6 kB view details)

Uploaded Source

Built Distributions

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

mongojet-0.5.6-cp314-cp314-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.14Windows x86-64

mongojet-0.5.6-cp314-cp314-win32.whl (5.5 MB view details)

Uploaded CPython 3.14Windows x86

mongojet-0.5.6-cp314-cp314-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

mongojet-0.5.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

mongojet-0.5.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

mongojet-0.5.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

mongojet-0.5.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (7.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

mongojet-0.5.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

mongojet-0.5.6-cp314-cp314-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mongojet-0.5.6-cp314-cp314-macosx_10_12_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

mongojet-0.5.6-cp313-cp313-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.13Windows x86-64

mongojet-0.5.6-cp313-cp313-win32.whl (5.5 MB view details)

Uploaded CPython 3.13Windows x86

mongojet-0.5.6-cp313-cp313-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

mongojet-0.5.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mongojet-0.5.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

mongojet-0.5.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

mongojet-0.5.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (7.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

mongojet-0.5.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

mongojet-0.5.6-cp313-cp313-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mongojet-0.5.6-cp313-cp313-macosx_10_12_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

mongojet-0.5.6-cp312-cp312-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.12Windows x86-64

mongojet-0.5.6-cp312-cp312-win32.whl (5.5 MB view details)

Uploaded CPython 3.12Windows x86

mongojet-0.5.6-cp312-cp312-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

mongojet-0.5.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mongojet-0.5.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

mongojet-0.5.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

mongojet-0.5.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (7.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mongojet-0.5.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

mongojet-0.5.6-cp312-cp312-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mongojet-0.5.6-cp312-cp312-macosx_10_12_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

mongojet-0.5.6-cp311-cp311-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.11Windows x86-64

mongojet-0.5.6-cp311-cp311-win32.whl (5.5 MB view details)

Uploaded CPython 3.11Windows x86

mongojet-0.5.6-cp311-cp311-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

mongojet-0.5.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mongojet-0.5.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

mongojet-0.5.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

mongojet-0.5.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (7.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mongojet-0.5.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

mongojet-0.5.6-cp311-cp311-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mongojet-0.5.6-cp311-cp311-macosx_10_12_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

mongojet-0.5.6-cp310-cp310-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.10Windows x86-64

mongojet-0.5.6-cp310-cp310-win32.whl (5.5 MB view details)

Uploaded CPython 3.10Windows x86

mongojet-0.5.6-cp310-cp310-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

mongojet-0.5.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mongojet-0.5.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

mongojet-0.5.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

mongojet-0.5.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (7.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mongojet-0.5.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

mongojet-0.5.6-cp310-cp310-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mongojet-0.5.6-cp310-cp310-macosx_10_12_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

mongojet-0.5.6-cp39-cp39-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.9Windows x86-64

mongojet-0.5.6-cp39-cp39-win32.whl (5.5 MB view details)

Uploaded CPython 3.9Windows x86

mongojet-0.5.6-cp39-cp39-manylinux_2_28_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

mongojet-0.5.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mongojet-0.5.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

mongojet-0.5.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

mongojet-0.5.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (7.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mongojet-0.5.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

mongojet-0.5.6-cp39-cp39-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mongojet-0.5.6-cp39-cp39-macosx_10_12_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file mongojet-0.5.6.tar.gz.

File metadata

  • Download URL: mongojet-0.5.6.tar.gz
  • Upload date:
  • Size: 194.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for mongojet-0.5.6.tar.gz
Algorithm Hash digest
SHA256 050654ba321e60a819f2cd7cd4af3809ca11fdd0e80997ec66b1e7b0f4686156
MD5 06f08bdcf788d9811062a4eb8ea20270
BLAKE2b-256 214253caf8ef6dd5639356a3be1b79f061dac6171e7d23a95b293b4915d37591

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9a45cf2cb37c56699579611d4da304ad48b115c1514a5fa3e6e595caf881e4d6
MD5 2800479e928aa5e592f3061d78108342
BLAKE2b-256 b89ab73d85fef03c1ea43c968d061834fb8a3760e0cfa054083b4d05c85d28ea

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp314-cp314-win32.whl.

File metadata

  • Download URL: mongojet-0.5.6-cp314-cp314-win32.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for mongojet-0.5.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b43735328f3b9106e97985aaf88b77cc9a34f8da2c4b23de62b983bddbc3579e
MD5 7db5a3cbda0ee385de8875ab0a9a4f50
BLAKE2b-256 25b12eb2e9dca1b85adb1b7102c24cda093ab9d4bae499083b7f8d19f835bab1

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b1b2f38e6ab02878a000c09bdb93af4ee2a3cbd2b56b98bda4e4d2060618286
MD5 bd0bb2ceb20223232b331b4f4f934435
BLAKE2b-256 0532e38a98d9853fa028212b30f61f3223b84062a6c5c1769a2a606b395cc36c

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c43898548c9289ec18bb8e595be8b0f36f4d4b5f58af5a4ab6cccba08b719ec
MD5 26277bbc21bcec02d6dbcf402c93b052
BLAKE2b-256 c1444415fc7820f42aadc15834af6019abae4496537fbeab5c64db5ba48692b2

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71d9bfa1cad1039b47617b71b958ef00fc876e2d502e3134d6748cdb51b1915f
MD5 e510ad0c54e8151d4b52a0a25948639c
BLAKE2b-256 f0a0233b919bc70dbee770d4ff0e1feda5c9e796bdc2decf0abfad7a49ca6bab

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd5a3d61c3bcb4deaa49769a58072b5c958ac1520be7074d2b13310d4149aa16
MD5 28cfe5556771aea69a4e320a32d5282a
BLAKE2b-256 b9b155b04887d6de45d4b75bece6766495a4c57822d0e4c899e4f21be3778e64

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2df15d741856734603d32932ca83c26c251e3726e607c94e23d9b60ebea6f9d
MD5 8d666133d5ada63075bd768a9949f88b
BLAKE2b-256 107bb63f4749d5e0e9ef5f77ba74fc2adc4f7185ba8ab52472e683c8ecef1a04

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 104ecdd9e19f14bc7c102764a04062dce8cb3c8b5998244569b8b482d936b917
MD5 de13613da989d786068f843a5dbd3bc0
BLAKE2b-256 339c518928cf3b079ee024688a9ca042be661801ed88f207e59da95463eaa958

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4112cb5bd64217985077dfa8d9090fb1fd0e39fe7a06353200efc981a143409
MD5 738c3d3d605a11f342fed3ca20f357fe
BLAKE2b-256 1094261d186caae1a716fab4960b8994e62fc512f5eff15e8772fcfe0e54216b

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c21291dd932634dcb67a6a0c63d7c18bea10f7a437a5cf05c4f391c9da8d14c
MD5 a684d7655b04027226ffb792016466a4
BLAKE2b-256 7d5b9031c09ed0dbcaa6e270e10decb0ad401ba07c2bfabefe34d723151c8b69

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8a28322adbf58479267482ecf5e95e1d5fe3d267f820d7d6fb4912dd1a36352a
MD5 9a32c21e196d7fde7d2b17beef02fe3d
BLAKE2b-256 e2946882675dad4eab5b50a4bc422ac0cd88ee44e8f931cfd40c0ef196150403

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: mongojet-0.5.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for mongojet-0.5.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a8040608b1703c88c15fc30e420549472bfaa1068d5aec0ff525cdf0975d016f
MD5 8348ba1dfde9a56af9ee6a7451a555d9
BLAKE2b-256 7ab779352d729cce28c9db9436ae5f3d0602f11eaef49b12c0b60b4d5a4d35de

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d43407f87f4818bb763c9eaea1acd9c12bff91851b1fa750da79fa8efc9bb6f
MD5 dddedeac8fa676faca7d3b2c1f5f0872
BLAKE2b-256 e3b9d5b76d3259a27eddfcfb335f065d705e70b825919f08b075ef62d8039842

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ccf8a81afbd65272613aa745861c3eed2a772b3c2396e62f9269380574c4a27a
MD5 0400db3812ad6acad10d2ce923e317a7
BLAKE2b-256 ac6a6f0d6b7adf6d482dda27a6e11291c663275d7d1f48ef69d4200a71b7c23a

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0331983058b394f247b1fc4b8734530ec531445d03ca38051f6e8c0f217a774
MD5 e0fa46d3996951f624d88038bfead02b
BLAKE2b-256 f661ffc079033a26ab036d9e417223701ea1d67370cf29d6eed4ee7d0eab4b05

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75891f27f54944940181ba84f7a7d4cd6a272545496b53159cf15b5ee0eda934
MD5 59407a3127d18347824c5ab0136a02e9
BLAKE2b-256 41809be746a88816ca046f64a92b58ac055d74afcd5613ab290f6501ddad421b

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 77c6f163bc8c29b5f7f667a17ac0354a13fe132c9cd93d344b1facba2f071209
MD5 82c3206091d442463bbd3b4f4261fcc5
BLAKE2b-256 cd7ecab0b5b0eacfd08f5bff0eae7e2b36578890f6fbaaa99c90e67002818065

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc7012b6c6874b3e2491dfd438b2c0bf0e2d2eb3824f11473ba1798e6bd03218
MD5 af1868cd2dd30eeb096222ba8e8769ae
BLAKE2b-256 16165f42dd914bd38088da2f6eedc9b7e045b0cfc189b7bece01d168392251d2

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b140e57994b38a9f848c34fed10dd5dc6aa5de9c3feddcbfe75dcc8ee25aa39a
MD5 e5b772b2139a00abc77837f6a0c163c1
BLAKE2b-256 446fd45826c55e6626b4a8ebe4ef819c67e3321ea2b36a29ba527534cbd59c46

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3474ba8e0f63f203b5187f2b4acb2ed4dbfb61984729671ba783093c70521e3f
MD5 a514b5c7648725ead9e5d76c0a3f5f2c
BLAKE2b-256 80dd58fd2c26d4d513aaf633847a7e27478d8c018a9018d7fe2104906013b323

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7a316962954a2c6847c19ea8ea44deb0468bbf94bd58708dc19f026ada62cf71
MD5 2d2fec7129674c1d5c0dfedfd4639db2
BLAKE2b-256 a742500f89fff3413f89dfdd1bc176bd93257ccbc5c6140ad9071a1e03ece6d5

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: mongojet-0.5.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for mongojet-0.5.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 10c560c13a84a5af0bcb922e899b6d2a2f36df9e014121670a306810da6714a9
MD5 b116a467360ff0d2a1ba227ae2d2bebf
BLAKE2b-256 3ade2c3ccb7e87b1aef8d06fca29afb8420afe2e9c7edda45d0af1b7b3542e49

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25fca47fe9192bba501c5f6d388ea4b62c82a546e7a0d1e8a06a14e32f597eb4
MD5 bb57cd101f75c050dff51a5a17c77843
BLAKE2b-256 e511af54e17a940746b05646fd4c836b6d8555a15dec04b98bf50069089eba73

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbeac1fa60f53d504129550aee61c6f2a071f853529d201b4d7cae0af7746a21
MD5 fee81140f1077a9563ee19dc102d6780
BLAKE2b-256 9992ef8567e0dffd6c504373dbb041a9301124201f549a595d94d06fca766cf3

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 072d75403cf233a497feab8d22277412fe5bfe211be5ea59b87d8470dbd1c4ab
MD5 691d07548778001c4a7fe0f41fc8beb4
BLAKE2b-256 9964b39cc37dc63ad57a921bade94c2fabef35f36c81098f45db6e9d390b0a69

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a4d421d0c0f9664696bccd0de8dfdd93f3302d77439e8a1eabca65ee11521c9
MD5 7c62e189b23109a1f034eb37dcd72bad
BLAKE2b-256 8fadccf774dcecb89d6ad4f8e2be0fb9c2c20c53429a436d5297c369eb2b94d1

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba776e0960f78c286e0571ae30960a4cb9c1d458edb6e986024ab2af00effa1d
MD5 9268e27defc424a4c96424b746c13608
BLAKE2b-256 7a8e3875c6c4072fb56f3346883928e91b1b14c3f7964456f20f7a140bd7e490

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d2bc90f88d5dfa83da2ca48ca506ec00469aebb942c5da834cb48f22dd0755a
MD5 19264f8545627c8d975e6f9a4ba5900f
BLAKE2b-256 21d539a0867111c2dfe8e9b28d0c93a8df49464a7a81e5eadeef5befd78f4bb7

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2c83b16ca7004864a2733404e5681eb0d3e520437730cdf28aaffb0155e3c82
MD5 d30b5082fa8933063a4d910c7b626c05
BLAKE2b-256 ba5205443209492cc094f6abc44c315ce6915fb9f9eb601522e2713390a5342f

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3bea45bb029fda57869834fa2961882d7c730811e10840afe02d6f04bd9b0f7c
MD5 98e9c1355a4d1eae7844ebf9af31b77e
BLAKE2b-256 85a12eb3b73a4d690c822f1b5f4d691f876013ea6e79284446cb74b18d5c34a3

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f8a3b56031702bdae6ef87739cc353ecc6748f65283632379c4f66c1a1c56100
MD5 40dc0df789a3c082366c5d7e7da6c5dd
BLAKE2b-256 755cb081757706a4756a5d2900b07da776b7c4140c3720191980b07c707d7bdf

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: mongojet-0.5.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for mongojet-0.5.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f4c0bdb4f9dacee857198797e1bc77357de920fb97c0922d9239492e47a43fb1
MD5 2019cff6bb9eab526d5f7e9871282c3c
BLAKE2b-256 9c34c8bc9414d16d3d367c0811a14a990671e4881b2245dcfbb2f0635a0b400b

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54a05ba6cea31276ff4d845ae2092ff94ffe0a4ddb6c53abf3dc90daeb9656af
MD5 f246efeb59441d44ab23224d4773bb99
BLAKE2b-256 5ab9c6e53ad7e12b199147e3347bd56a3b3f2741689b1acfd232416670f75ee5

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 642cb755992b93ac550a3447b55fdd9e08446d5774494cbafa56bbe1f168f78c
MD5 70c6c0f5bd87d18cc02efc4f40b9f81b
BLAKE2b-256 75d42226f3b087de739c001732ae1888c1419067ccbb9879bbc75a21dbcd742d

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8257a1c34491557248fc67d093b3e6b161e99fb5578cd8234f59b7b9d2bd1334
MD5 12362c6437a818f6894175f15c8cccb5
BLAKE2b-256 ae51c5fdfa130272b2f3dfc15ca899d4190bc3b20e5c0bf6dae7bdc205ab15ff

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fcfc2668cf87c517771780e8510e7d3619050e01c5f7a1c0738c5c7fc0c54edb
MD5 2bf8cd69387fb9a06b5b996c0f1ca738
BLAKE2b-256 defdf6999215397f6f1f6374ecebda389250e8d9371aa5110788542ca64b1860

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 adc02adb0102a5d9cf43d2c4467f1843f336b06a0e3010d8010d245644d7ba38
MD5 5edd728352f3de07d628af8a9a1dcffa
BLAKE2b-256 8ffa5df7f738003d9bac5a9b4a3888b65bde39b2ab15142c8f7d3c83329a6e6e

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 323ba4b31ca84b6f4b8507ec5cf67883310a1ed09915b09ad123daa668b7d6b4
MD5 770d14f31252796a48096f036039a013
BLAKE2b-256 804357f0a4d745fb70fd968e26b913558763e66df8b78fab9b518f7322e193ef

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5307462758df58bace6cba028d90b3484ee5a2659acabe3fcf8a36dce699ce5
MD5 e2842a15c1f57a41331ef7d7f1fca3d3
BLAKE2b-256 1cd1f0de2bc55e06636a3fa30cbb898e9e2b2115dfeccfc3aa7443c5bfa74970

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d22007c898a662da21538d9c792a625e0cd926a6016b972de0d36befdc7ff37b
MD5 add43b5553c6d9172a51880e96a43097
BLAKE2b-256 aa7204be1699a0bf1bfed29b25b1eb97d277bb34039cbeed460a60709fc74850

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8adb91b276a37eb9da79df64ed548c20584ca5ede80a06910f7730e247138511
MD5 22858e5eed976f3970be113e53e00982
BLAKE2b-256 5775edf50c781d97e578eb86157e9a16bcb301ccdb63f14259783834e2e90ea0

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: mongojet-0.5.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for mongojet-0.5.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 480d982c8936e5a874f3dd6222143dab7358871cb55bde4cc4780e629cc33b1d
MD5 3c953b67af83be7a6372d3cd7afb7ccb
BLAKE2b-256 27ed350053ce1b5335f2443c8d4984de846185077279841f5344d43a446e030a

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e08b8425832c0f6069e7f35d459c4052743676436944e3b02dcb407cf5b8ce9
MD5 890f55288e552d7f96dbaceaaa5a71c2
BLAKE2b-256 3d37ed2aa6c8076a82ece134892370bf1dbaa914bd312f394fefecd04e20da91

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78200f354dc55e443cc18cc4eeb3bd09145e2b741e76021058782b3fb2e10975
MD5 a04eb81e79c98f140bc3d54e72e9a8db
BLAKE2b-256 bf73a9f89f6c4abbf6f3ffa9c077c44cfc98d7ad91d8721fc152aa49d2fde52f

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9dae71522618ef11fec70f473dda5eb94239e33d64fb5a8e250bc8e42b6f6a13
MD5 e5ef71d458362536b2c8e7767f8d30bb
BLAKE2b-256 ec589c496aea2f8cd5fe63684763187318e32f12280fbd56b70534e9b8b09748

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53aec08df9f043b652886427182a9dcd325fd2c41d0ad1e73ed032f2e81e7b66
MD5 4ab520970d8da9b5148dbfb588c50644
BLAKE2b-256 fc8aa40c29378c4ee5d6a5615b3ee2ac7d37e50f455630b68e765e0a22492c90

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8459297da510bf09f26d9d4ec3ab3ca31e8455596c2dc80ac0fba4ab7a59dfa
MD5 2f5644f786ada2685f152102d660926c
BLAKE2b-256 ada04d461ff9ee1afdaef06cbe0b6deb91ef164d86898ec47b84af64b78e88cd

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aaa96e091fafbea11e43fb6d19a20b0bf1af69d26d681dee1d9b5f951f5c7436
MD5 2ac3abad93de7b3e47da3bc2598a0686
BLAKE2b-256 038e57176fdd1860fec58b1a45915793399b5fae75131418c35afa899774869b

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 248420dc70b0b6e48979232445de872878f82f62e77e30544c7032b0d26bd83b
MD5 d41c95a3ed9f5156dcb3853bd878e426
BLAKE2b-256 0435cea16f5c3d1fa784d96a990ad95e56ed2ad678fa1c0ced05c5fb29f26a84

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 096fb13ba08c0edfa831b67a130e0b6dc11cc0ccb9e91ccbfc6480a14e0559eb
MD5 fc06f436df6d2c13ccc959d9cf728b5a
BLAKE2b-256 ff2d5648915b5821d6220624eb4a61d7d1e42211cef968afc58a8621e23ac527

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mongojet-0.5.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for mongojet-0.5.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cc78ae961c8f6cbc7cf770c2cd8391e67d74d188d23a0dce081c698f75515c68
MD5 2fba12ac8072b7b7c0c5dcd3757a66c2
BLAKE2b-256 bf139842a69f2a8dbe9077a701b8cd8e0116bad312014a7a9d9a53d01e66b82d

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: mongojet-0.5.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for mongojet-0.5.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0955f4e8ac3efb2adec8c99030e312f3899896e41bcdd3d84d5d109680937807
MD5 a3a9c501642a6b75bedd047ab8be7235
BLAKE2b-256 3b77b28e3e90e19fe99f248609414a6840104dcf7bb7a8a785a0a212a31c0daa

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f62409c0b5506d95852c18dbceccad28407e74b4f342721efe6516c84cdcdc94
MD5 447feb737218e681df04f4236736c654
BLAKE2b-256 d9c5e34b08be2c794dbbe617052567c3fba05e71712ffb6ee880aefb2e3ae605

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a34922bddb7dd3ce4086590468465250a335680240523302e6467c0ddbbaf96
MD5 37cd88ed51c1e13f39d074775025e68e
BLAKE2b-256 e20c4b65cd2c8dec51356a1760fb270c55028fd7de43ef958484ce878e06e328

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65c358ca0a6bce2739771400c88229f27cd437f9acd3ba42abefd86ac18f6e33
MD5 104bfdabcadc19668e77cdc816bde66e
BLAKE2b-256 dcc07d2408a2c963b13b342670fa1fe578e7ed32e3a6d22d21765da9b61465ef

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0da37351bbcdeefa05056da0a697dd62525aebe25930578a1e0995e30741d423
MD5 05b077523eec15b4f52eb59b01fb3912
BLAKE2b-256 8a0a431f46a37e147c00c98626fa433c07ff0b3c062aa6f38579dae637a9e2b4

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a04b891bf9c00efd4bcbf1aaec5b505b1314ed302724495e7ddb65142b7517d9
MD5 50bdf7a87cd2b30ff2ec4160294c756a
BLAKE2b-256 be3d97eb304dc8bf0ffb39b7a6ef81ae3b7a774d79a040794b3dd5f8924dba97

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc29d1aead93cfbf4da19c28f88c5776e7284d4030553a3edbacbc2067e1135f
MD5 b1046a2af96427bc8590d4fb6fbafae7
BLAKE2b-256 d93351b29041e7e7fc33b89011519ce0003e91d09229b023305d486d3bc795d3

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af8429056672f1b559b72603295bb6f4d27a23c7b740a139980da81ae9ac4ec6
MD5 b8f4e36b5c533ca299d9db6ca2229a87
BLAKE2b-256 9e83c5afe66a26410c514ea34de58f0d48ee6601b775dc241f673dbcc64d5960

See more details on using hashes here.

File details

Details for the file mongojet-0.5.6-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mongojet-0.5.6-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d9273ba7e5af22e4a3da2c020ab6759ea4f6be0ab6d238294e64afdbeb94c9c
MD5 7e74f65081abd5689cbf8ad2e3129476
BLAKE2b-256 0f6e58eef43e69f73ee855ef12b401590e65672d625f64530534cd20b7c5a19e

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