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.4.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.4-cp314-cp314-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.14Windows x86-64

mongojet-0.5.4-cp314-cp314-win32.whl (5.6 MB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

mongojet-0.5.4-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.4-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.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

mongojet-0.5.4-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.4-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.4-cp314-cp314-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

mongojet-0.5.4-cp313-cp313-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.13Windows x86-64

mongojet-0.5.4-cp313-cp313-win32.whl (5.6 MB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

mongojet-0.5.4-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.4-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.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

mongojet-0.5.4-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.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

mongojet-0.5.4-cp312-cp312-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.12Windows x86-64

mongojet-0.5.4-cp312-cp312-win32.whl (5.6 MB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

mongojet-0.5.4-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.4-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.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

mongojet-0.5.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

mongojet-0.5.4-cp311-cp311-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.11Windows x86-64

mongojet-0.5.4-cp311-cp311-win32.whl (5.6 MB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

mongojet-0.5.4-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.4-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.4-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.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (7.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mongojet-0.5.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

mongojet-0.5.4-cp310-cp310-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.10Windows x86-64

mongojet-0.5.4-cp310-cp310-win32.whl (5.6 MB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

mongojet-0.5.4-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.4-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.4-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.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (7.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mongojet-0.5.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

mongojet-0.5.4-cp39-cp39-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.9Windows x86-64

mongojet-0.5.4-cp39-cp39-win32.whl (5.6 MB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

mongojet-0.5.4-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.4-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.4-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.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (7.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mongojet-0.5.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9macOS 11.0+ ARM64

mongojet-0.5.4-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.4.tar.gz.

File metadata

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

File hashes

Hashes for mongojet-0.5.4.tar.gz
Algorithm Hash digest
SHA256 aafa13aa9b95a9aec8ec3e930a17c5669f951474b9295765d5b5b289fd3f3ccc
MD5 115447bc427e3f3ed94b370949084803
BLAKE2b-256 36e4104faee0aec53eee8edff916ba62ee874a61efead1f7e7f871dd1580e63b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 941094330a308489990587160b3533adc0501512b99a526ccecde7f66760d551
MD5 99b7fa931e01f6fd106966b8b117dfc0
BLAKE2b-256 3eeed4cd3fa92bbdfa18aad61f28d7f8ae42b0a8ff3fa6a14beb93258db06b85

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mongojet-0.5.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1a12f648088edadcfe6701c86195b6b2eaf97a18d2bc64674717fa9f52e65759
MD5 acd9b49e205fed188d5c5a6d36bf5437
BLAKE2b-256 a1e93522782e0209e8edc29e191a7bbf45d184e547a81dd1a6c39939d07d6960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b72a045f03cf6d7773ddef951e222da5049bc6eb2fad81c3f615c3d3a2a37e7
MD5 0d51d23b5f2eb2f2bd07250ee607bb6b
BLAKE2b-256 4bf3e548334988bce5cac7a85a3e34b2fa2c8f5cfbbce7c27c5e9ae21c17e886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fd85ae49e0f32dfbf0f3c3001d93326b54efd9ac1961318571144972685b3e3
MD5 ca30ba2361d0c252977f5240152d2ddb
BLAKE2b-256 2ff956b5e303c6653bc18441cddb97f6ad90eb86980dfb6786b3b0674a660ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b88535223b5c78648f1d7d3fdd75a68b2d9eed914bc8ebb8ca0f49e266f3dd08
MD5 8119be800fbeaba846859f2a2d59d720
BLAKE2b-256 a0f3be3ac412d885e54e028a4e053cf5950abfcdd41a8cd2570d0d62423eab2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d08393a12b1f5c5fa35a911762a1522b66cd35635193695d7a35362c5ceec312
MD5 e0136c92c4b736ce5e4a68cd6e0ea793
BLAKE2b-256 840d6bc79efae6ce45195c075bae23582e4e053d88a2d4851ace8e9540ef1af3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 97e84b65b9ae17dbff134ff4ae2e074e9fd8f6055dab89ee56237326dbf35042
MD5 85ef2d119845442a192b65287710aafd
BLAKE2b-256 cbdecb3c967793e1907327e4c6cfcaa2c58c3230f6d18e6a0e426464f51ba808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 853571036fa95f546d199aae62f11406724678319c09180ee426084e4bc1fa10
MD5 4a3310412d3c96e77d25e06972148ca6
BLAKE2b-256 473f3d1a40b9125edc604f55b2118e16bdc704fb57866e578cdc787a2084727d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea7d37334fcfdce3172f8a1636cebac117d276aa426c2ecbcec72e6902721b1a
MD5 cfef73908451b22b1f698736ae546e13
BLAKE2b-256 ecd8ff18798caad7476e4bf87a967daa34ba1ce8a9fb74ad44cad2b4909cc987

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec2e61a6f50feb4fa011bb254d4ff91ee5c0b7e565556fe907110ef18e7bced4
MD5 db643227d2542a05c09cb62ec12f308c
BLAKE2b-256 df510c892840c3ab850995d7a3bed2411fc29e57feea1d9012ecd9d8dd0782c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2291cdeb189880faafd4641f283a8aa860c26b8c9b270c16496a7a0670786173
MD5 bbd42718accc3ab168a19215ce6cce7b
BLAKE2b-256 27780b89c7c5c59b5d972c125f5bc464987e653e86a4e3024c32f69a8ee52802

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mongojet-0.5.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1081bd7568c9736ad6b01b04c82de6ab4ebf0d8179f2876ee26180abc8a6d95d
MD5 7b3d67ac019e11a4e4c5459263685264
BLAKE2b-256 8bb8cc9b446a1c9c711657bca5b00c61b654b90bc7b7da0bb9df0309d9c47cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06a1bef638315afc72b71125af8b819fb0ef5959bf937729edd33c656ae40e07
MD5 e54d5801a871cca07b4b2ed579e49e1b
BLAKE2b-256 6902267195c211495e2e7f24d1d74b4fe54233865a7fec2e1badc0a5d25943e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a1aa8e126cef0a63cd1c708b922431b8a817e8cbd61dc1690ea45f27da70f60
MD5 407e30ae35e7a7230cd0f114871f826a
BLAKE2b-256 054b398061076e7258ce02005c4544e4c3fc75dd120b6c1f90ecb0a30ceb5b5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7bb59f483819803a702e164f543e2a291a697a846e9da539526336f47d417427
MD5 2e6d00b4d3bbd44fe2a4b16f93ffc06e
BLAKE2b-256 dc74c82194caf63912cc1839005c566f1d1f6e4b3eca7ba8fa5b74316c524bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3878cf34748a116aefb3283e80ed5710293c665c05a2a27c69662eb987fc9d4d
MD5 1b6c241ee8249cd26e4fac080a518e15
BLAKE2b-256 13952a1d7734085e316f41d52825ed8405a6ab85ad739dd144adf7c1cab4b305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f81d475571ef83fa9817b9f2c04b7c68a4f188ba67ea09584d5c11b2df2169f1
MD5 46d13dd7e0487781f83fa9a8b4017e6d
BLAKE2b-256 c08afcd1d1e64563923196c9f2a2eafca7a875e455d856e81c414e084b73e247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d86a1daf58f512ab17991b48ea77a1090647f8a3f532d2bc66a2e8e1bc513a7e
MD5 17d1eb858c6cdd5069c41d28f60c112c
BLAKE2b-256 2d6c2dd08f09afc304cf38115fedd2b5e794ae9a724789eafbd5b0f0058793f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5b801630e084affca8fb6e435dfcbea8732b0070908a04fa12985edc33d7333
MD5 56f101d75d2e6c98c9486b8f89eb8305
BLAKE2b-256 749d88d5151ecfee572cb030a7e948ae819ea0e3d377eb0700953591067f1aa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4d00bcd3b1b48565f29c826c7aa5fd194567dd9d71652a8e7d155f5095e1f93
MD5 dc42de111fe5316cb75a42bde1073a58
BLAKE2b-256 e6a5fe32d1bb18315fe40cf81fa29329704f23f1bcacb10458578d020aef43ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6fa035b7c3ad7c93f12bd5d1d676b8d495afab4ae5f0aa39cb807f59a76d4a03
MD5 fb51caaeb33bd266c872494ec70790e3
BLAKE2b-256 563469717f739e33eb5a246a7d40f3c7fa8cd223f8930febfd8ce5ba498ac68f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mongojet-0.5.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5e0ad534814e5a66917a62a21ccedb426369912fcab42df164cfc1d4e1ed813e
MD5 2fcce7e455bc143f8d8c5b08f34a61ca
BLAKE2b-256 d668a19e111d744c701f2ad25d1f652f1f0ed0bc03ee7a95298bb78af63dd8ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99937dd7a4b40d0c13722fc110c476098a481fcc6aacbb457259dc3c6ef3b8a5
MD5 5b6bf003aea7d5d9460619f60af75c3a
BLAKE2b-256 220580cc23bfdcb505b618377792ca8cbc117fafd8f1c187972265354d534589

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89e882bf940c22f315e1e3d399318a761aff868d805b8e99ffac7d8c47b820e3
MD5 4f57eed3b453398ca772994409928157
BLAKE2b-256 557336b45df8eb05c758c1bffceba1b34f0cffc011a76adfbcf30e42dde77c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da75a464fc9a647ae8973ec601943c71bed4d53c95a273a2972593dd1ee4b909
MD5 a4cd6590a1952f5c6fb5af86c6e2dc44
BLAKE2b-256 4986dc6cfa2f48e45c47992716b4f00823c36e3eb96c3d36a7127bb781021fc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d35c68bf7f7e006c7579c04bd3111918ff82f0641b0bc471544dedf20fe5f4e5
MD5 99aa8d5641ac62b2e1d0770b7f0bbc0d
BLAKE2b-256 b04ad6ea4260653b12a57c2d0b3c7ae7693e7dd2af5bad4f83df2f2fe0f6d915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aed6f2d1aed48006627c87556cf6ff15ecb5bb79bf85f5492b3762aad064dc2e
MD5 4397f297b79df52e915894420ae992f1
BLAKE2b-256 be6fd8c4094a67cfebdba3ba73578f9b338627ca257dd3bd2a90b2a77b6faf56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed003a9d6e92eeaef86aa12cef6dab334c77442317f4101cfe670d286f5c5540
MD5 4103718ecdcb7700af9885d4702c2a33
BLAKE2b-256 280eb36765c5ad22200d05c741e121beea37d4e115772cf05fe8a2cb7992554a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 132bf96215f07a26feb49ff315af75fb806e20e9c1167b2c38f265d2d36ac283
MD5 3b4dbb28d60fdb808ac7c994d234e8a1
BLAKE2b-256 a8a179fe92481a087aa3ac9ac4514d724d49aafba41c48b6e98fac2fdb95c0d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ed0910fac600287e014e406c3c55d51fc10321faf2dda4db641683adb6b66d8
MD5 c5a6b081106d75eef9849d79f0599d76
BLAKE2b-256 45069a59343857bb333931c7a37b8e7b5f57d6a6b409937743b8df55a02d9ad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 74188312ddf6fc3a3c9e6e201e7952226559ba5dd57114a70b5fed654694283a
MD5 e08a0eb7879f42c16c1faff847dd9e10
BLAKE2b-256 ec29120e6d6ce25674e5557deaee4d747cc137dde0c3a5e2fa487f28dc451d31

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mongojet-0.5.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f83d447a146a9c48378f53d0d1efaf1126754a02b1bbffeeb71cb921feae0fae
MD5 547242865c05b7f7fb42bed27490010a
BLAKE2b-256 d1419df74921952d4ea4508102f3fe3aaf0201c8a4a96be8396f2fcf75524424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c174afa138bbd7722142ce4c00da98cda643720fc05fde2284b9107625176f73
MD5 b7f64be40859ece296c9402b95fb4176
BLAKE2b-256 110371b539447c30af714c29f0f36289785db1c4135580a8d6e5e12bbdf754a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee4364b8fbe83060b4f0d30f45cd9d92040cc34df967091701a6983a464859fb
MD5 c127e9dc221b3c97c1367a3ac1b2158a
BLAKE2b-256 4700df8e09fa3bcb1a2ee8cc7bc3e43232359c085ac7f046eeafed66f9b5e4b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e96b97edb8972d03d7a9854f6e83d78b2c0480a1ae0678ef0d2d4cc6d69891cf
MD5 ac5f417910a4283dcbac947938794a53
BLAKE2b-256 a3d2c9ab9eb1933de8bb1225d2391b69e7a64f8a2c69578c682a8698a3c7ac85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 094683b25f755af5f4522c0824a24a4104d0cf9e71921e201e2feef9f8a53dbf
MD5 8d61b882b91d0f3f6c20ca88b63bc9e9
BLAKE2b-256 1bb9d598984f45fd34df9c9b39b0dbc3bbe69f085332757fb559493ad9785292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4421ccbb8687d75005d1311f80f93419ac10735ad46fa3cc8737cac83b399dd
MD5 1e5977a4bc822c29bb49c69ee4ad7ea6
BLAKE2b-256 8fe229a0adeb8f246cf323231e41b2ea66afb0e4fc189aad4586cbae4ee7d78d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 90a3c30a82f12f8b0cb093a1abbe619a7b6fd231b4cc292360aad9d404ac0cf9
MD5 f047bcdfa09ff9f1a28f5f1b783a7a83
BLAKE2b-256 1ea7598073e96b7f27d299f61968b1248c115fe2776891d6c05c033a9fd19ae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4d2083383523479a1daf5b3db37836a29188689ee280fa6ee4c793b51bbf04c
MD5 a0eb0848c8ea1c714190753bd39a38c4
BLAKE2b-256 819c9d5e35f0acbc109d8ca3a80eb991f509ab6d36ecc1560a5cfe59973f6bed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a3fa5810c583250864c94878a44d9f9d937e1821fe15c42d21802f5700510e59
MD5 c955ca05e1199025d30ee744b456c1fc
BLAKE2b-256 78582a5f4bb0dbc033ead5b9c0374fe561ab20d1673acd4c1a9ff7fcc0cc2b62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ec61e519c443abe3cf2b30878a566040e7e97dbf722e9ff62f492a7a900f752
MD5 bf14de296270906034e1009bbfffc929
BLAKE2b-256 91f748c188836b4fe659d76052743ab765160ea193cbe9dc93c5d88bb8189b6e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mongojet-0.5.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4b7db6bf17b88681447798f2b71b972426e89e03ce3137ba6615ad3b1057fe97
MD5 d24c8e91a8d0f3c2f889d43435391027
BLAKE2b-256 fe62d679c135c9c322c641beea64240eb463911ea7704bee05573dab4d8f683d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76baa5c120449c5a0d155d4d7143c978d6691fac3247f017dd7540cf3a6efda8
MD5 fa46ba5e518e745c156692997741ec90
BLAKE2b-256 09e3e77874498845e0b3d36a49d5653d033219e158824a202779ebf5351dc339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9df32850fc38327e61e4c62850365c32ed262816fed65938f14cab1b89122801
MD5 3357733e68ac889df856b6f26ccc7d15
BLAKE2b-256 ed1391c93001bd36c74ae814edc1392899e8852b0a2b8e74668d708994350158

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1cc4b4a5721882d0ec695421f9f54383ab0fba23cca598fa479b9ddd6564e877
MD5 63e3161754043c40481990b1253f1e97
BLAKE2b-256 de4bae0f4276715e6285a600411c765d540ed9fcd5f743816b14854ed4c6343f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f52178f72d0e59ed2e481a22622bae93d555c629b388be08bc0d0cbdf3c753e
MD5 ebf6046084f9f474eb08bf0f191fc5c5
BLAKE2b-256 b4dbcdd8494686e6917fbb69054199ebc35d7ab81794fcb22f26ae9c90bed0ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 acb211d138def355f4bb2db4e793fdc1ab4feb60f894456212e4eff9b0e377b1
MD5 ad46c063f056e74b6b51298c52cce8b0
BLAKE2b-256 67c692ecf45a6ca4b98a69aaed47b6915f3ce1b0fe3347fecae74969624f5e80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92bf701e5dd48d04166ea6b6569a3e92843739ba8406a503e3cc66918c09857d
MD5 fb079839d05846d4e3462b2335055e86
BLAKE2b-256 92b2485f7abc79cdd5ee30442341041f81daab503ab40bfb27fb3f81bd1c343e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2ad01c5c9d7a2eddd2c96009cc7c21015cee66af8e970a3ff956d8e801a7d25
MD5 c36dd6183db07bf0bd66c6a2bfca0cd6
BLAKE2b-256 f2cc465d62e4b769e994a72ca649d5c3975e93a5b605e789423ec825b5852223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3fa9cc9a85e942daffd892f098c477681eab554fae5ceda88c0a04977bb7832c
MD5 9c7f3f410f5ae882f44bdb25af9454f7
BLAKE2b-256 2650d492f79ed13fd143333cca92cb51a93b1fa768bc66ea0ef3fdaf8aa6e5e0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mongojet-0.5.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4bd1e363c9785e8123cce742ce9d2d6dd10e617e0e75b08e17698363db458e98
MD5 d5fa9d79b10bc47999e7e8864d4d6344
BLAKE2b-256 303182b9d47e945b632f8bd508d2c33676a7a78f03216d2a23b88605f2005ca6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for mongojet-0.5.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 843de2adba7dc50c648c14dcb2475316fd127c4882fb11f19c5ca74e7ed99aad
MD5 4c47f2acc2c5ddaa82efe435aa124ff3
BLAKE2b-256 8578bdc56f1e287b4cf68b58e3c3a1745025a33b3b9d57a40320c9658fc74f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd552bd12ca1b5c1e94a3e8b8f1045a8c89225932a8df4126fe0ea451fd2d4a2
MD5 7525f17c5517f8c02656bb0acd0fdc0d
BLAKE2b-256 1c50a3803f3ca5e245fdda69a91735444b19e7b38aa8834b9aeb4585feb32c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e36162e795d6deb71c966cd01883b920cbf2741db0e3b6fd3ffb8c6eb00d7f4
MD5 32780a3c88b10e00d07850bf4da4d3c8
BLAKE2b-256 b3a1c1c6b7a686501cbeae0fa4c6f061fbc81964c76495d21da188e6c94db06d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2faee1650fdab95b60ff39912437e0f5c5f6eb6a4cc2abdd0101f6623f99acb0
MD5 f944192aecc3a3ee2058b0fbdbe5d884
BLAKE2b-256 7c01e5df22e6e2337b735dd620a828cda89e3f7a0894777fa208fc2fa48b4cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d46554f99fd7702eb7f0ea20ae2aa1e178252c78b7da39024aa6c5b25e76ec5
MD5 c1e30bb4526f29d6221dbb2ab807d9ec
BLAKE2b-256 b9806ded0c3ad2e49627cce58cc2b25645000b02334ea09798b40891afec4023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7ef924c5f00dd1ebff83960500e43e4776bcfe5f7df296ac1a1eb1d416d3776
MD5 9aa345db4870d91892f196741e7f6afb
BLAKE2b-256 b1a20e09338fbb32c5402413d6c5acf2a05c2b9c0e498132d2739f235948e5ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 958bd25c35ac1f4c3897331d68f577c918056d77c15e595758067d998b92c41b
MD5 edc4d4e2914fafd403dff054a953124d
BLAKE2b-256 28605799c76cbe860c1fb2cfbcca848c2fbe7c553e719f96bc172bb6110628aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4ab0b951306f4a158f8607d56e4566f475fbef6879353e510922c0e9fd02acc
MD5 12fde6e783d201d2a025c47f3c3ac299
BLAKE2b-256 b30203b67ee13855c32ec98f33386194751637c9d5326aafcfe705eea79436ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ecf2a8da90587b0dab22a81df5a4ce3299914ee84ea11f83349b046567f72097
MD5 b22c9417393347191f72d30012c7fd4e
BLAKE2b-256 45dd3401c44f034655e32675512e6adb83b36307913b6ac255eecb8df8fd6996

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