Skip to main content

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

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.7.tar.gz (197.3 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.7-cp314-cp314-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.14Windows x86-64

mongojet-0.5.7-cp314-cp314-win32.whl (5.4 MB view details)

Uploaded CPython 3.14Windows x86

mongojet-0.5.7-cp314-cp314-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

mongojet-0.5.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

mongojet-0.5.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

mongojet-0.5.7-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.7-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.7-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.7-cp314-cp314-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mongojet-0.5.7-cp314-cp314-macosx_10_12_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

mongojet-0.5.7-cp313-cp313-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.13Windows x86-64

mongojet-0.5.7-cp313-cp313-win32.whl (5.4 MB view details)

Uploaded CPython 3.13Windows x86

mongojet-0.5.7-cp313-cp313-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

mongojet-0.5.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mongojet-0.5.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

mongojet-0.5.7-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.7-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.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mongojet-0.5.7-cp313-cp313-macosx_10_12_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

mongojet-0.5.7-cp312-cp312-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.12Windows x86-64

mongojet-0.5.7-cp312-cp312-win32.whl (5.4 MB view details)

Uploaded CPython 3.12Windows x86

mongojet-0.5.7-cp312-cp312-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

mongojet-0.5.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mongojet-0.5.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

mongojet-0.5.7-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.7-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.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mongojet-0.5.7-cp312-cp312-macosx_10_12_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

mongojet-0.5.7-cp311-cp311-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.11Windows x86-64

mongojet-0.5.7-cp311-cp311-win32.whl (5.4 MB view details)

Uploaded CPython 3.11Windows x86

mongojet-0.5.7-cp311-cp311-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

mongojet-0.5.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mongojet-0.5.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

mongojet-0.5.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

mongojet-0.5.7-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.7-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.7-cp311-cp311-macosx_11_0_arm64.whl (6.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mongojet-0.5.7-cp311-cp311-macosx_10_12_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

mongojet-0.5.7-cp310-cp310-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.10Windows x86-64

mongojet-0.5.7-cp310-cp310-win32.whl (5.4 MB view details)

Uploaded CPython 3.10Windows x86

mongojet-0.5.7-cp310-cp310-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

mongojet-0.5.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mongojet-0.5.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

mongojet-0.5.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

mongojet-0.5.7-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.7-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.7-cp310-cp310-macosx_11_0_arm64.whl (6.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mongojet-0.5.7-cp310-cp310-macosx_10_12_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

mongojet-0.5.7-cp39-cp39-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.9Windows x86-64

mongojet-0.5.7-cp39-cp39-win32.whl (5.4 MB view details)

Uploaded CPython 3.9Windows x86

mongojet-0.5.7-cp39-cp39-manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

mongojet-0.5.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mongojet-0.5.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

mongojet-0.5.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

mongojet-0.5.7-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.7-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.7-cp39-cp39-macosx_11_0_arm64.whl (6.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mongojet-0.5.7-cp39-cp39-macosx_10_12_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for mongojet-0.5.7.tar.gz
Algorithm Hash digest
SHA256 c8d8a330a7d3a72dcdb3af84f241033a358ad4d6873def1dfe60eb3dd64f4da8
MD5 ac7010249c47331c4adfb0756b87c0dd
BLAKE2b-256 4d08d77fe393218ec8fd37dd965d2fea35e636e18a650c0e8c5bff734ae04650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6d38949221326f5d78ff0d11cb06a53530075835ba5f7e2e27edbdc2a733b0d3
MD5 9211eea03c55bbb293180c8bacd061d6
BLAKE2b-256 09d1ee26b5fe09bced1858b3b9a28ea25d92c7b0fa3a3766f8aff7b79e486f70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mongojet-0.5.7-cp314-cp314-win32.whl
  • Upload date:
  • Size: 5.4 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.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 10cdfce0444bf69c634d26e4a34cfa84d2648175469771f11175a8802bdf928b
MD5 2b16517fbdb2bf619ae06f76b5bf4b86
BLAKE2b-256 7021fb1d63f58adbf89779526bddc8f4a643e14853c5e9ede342d8ffdca41fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc28fddd68eddd180267a8d1d89f45b8394d8f7115bc15df33bcfba13e3b99c3
MD5 c16e83e9b374ba295b7f27247c34af64
BLAKE2b-256 f59b5df8d7306b5b6e644b5817a5415e0e4d5c3f930024b19c0a557cb3f57b83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32a35cb538cffe73e6d15d0567a62c1d2cf5083c19b966f945f482e785188ce6
MD5 cf7e91d087ef0adde6ffe2534affc6ef
BLAKE2b-256 1f8a319bdc32c4f33cd40f2d3b96403be7e7a2ee8b188eabfe6f151ca8324ee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 938fd142dae4dba7a9d9c23f58dfe17da8f88a53fbca8036e59fa2092dca07a7
MD5 79a07cb699faef1ea965947471918caf
BLAKE2b-256 f8034e6357ca8df2b7e7ced012550732e39ae94ad6528bda32e866da3cb193cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8cc6560c0ebc3969b2bc552ef9c642593ef8dfced8565ab842033cc58ccf323e
MD5 636d664472fd9b59848a6f932b9de0b5
BLAKE2b-256 11a05a8e2e0f37989360033e9a5a248a5e3321e6299dc7f721342a26573d3d94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 52f40d2853e8654759fc5593376bd62cb5841dfa716d5440de76fba4c19608ed
MD5 885d83a0622c73337516c75812a6dd4c
BLAKE2b-256 e4258f0bdc34b95f23d34b5530c0db1248f824acd189c61476cece30adbe1605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65545146aea9a40105620fad7c357bfaba47baf5e7a389292848817cc171b727
MD5 0aa50870ff1365a8878d49eba33a7eee
BLAKE2b-256 7982ce622465f9c08b337214cbd35e8d7a8d53e2011559e3ce1c6e6ce4fabd4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da0ff864f14bbfdcd6f7ea19e20bebdbd557869d7cb3bcffb8f89d3e545d8b9e
MD5 bc99fe1729e907efea009b504703dd98
BLAKE2b-256 1c37859ab7d31705c891a8df8f82f745f535c6e591637d94bf85fa7a842c89ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8bbc223b08198fc5ee8aca0ab0844dc667da73d28686d93393a4e6bb1bcd8da9
MD5 10b2dcee96911c61bd6f92f9a9f77c4f
BLAKE2b-256 601c6c85afe37b18c4a9c5bc066d4457e03d90edfe88d17c8167bb457034f6a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9d69db77af84ec2e04936cabc59a01d9b1a530a994a46fcf590c8004b9903459
MD5 32fb72a815170e027087f8dfb190b29b
BLAKE2b-256 a74b98e723068f08b34c1b914ff9ca15e4fb1916530ab8aab398cd2a6dcc55ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mongojet-0.5.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 5.4 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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d65aceccf5fc16c0c3ed803670ee190ff9029ebd96e3709507e3ce542c5ad865
MD5 f6d2f7d7d0dbf32884f2353b8b083f13
BLAKE2b-256 d973dae06915a9afb5d76e4fe81d2f29ee904690b25a347b5e101c68dcb76f92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c3a91a866e6e7b5ef13c26fbb761c90ed98813a5d65c1ad75fe576c8535f037
MD5 2efa59eaf11a2458c630bd3ffaba796a
BLAKE2b-256 e4be4ec9fa18dc3dc5dab679cf93b843b01d45fa0b10208db7ae9d9f2b3ef5ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61d7addfadae2724a5e8c68cb9ce82104a2f842c9332cbd0e32ae5a3b81c1e6a
MD5 646bd6831e2ea5daf960e5ae80822dbb
BLAKE2b-256 41a6946d6f61fc7ce200473ff581efd27c570ab45970599e698600b4ec9c21cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f8b326760e7977c7552c091bb3c8c6a611e7f3a68c6333d12420562ccd47f59
MD5 4daf8f69b3de69afee800b56d4ecb6cf
BLAKE2b-256 ac008aafee2af3acd84cd63db80c8dff880ff4f3b78eb1e54676a332854cc712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 991b5354e34d1ac1e4a65b9da40ac5334b6794b0c8e1403aa23b11b8ac05fbcc
MD5 efe4b5081a795dfd0389450a3a73f5b5
BLAKE2b-256 f7b47da795dfcbaff5efb4a4489c7b603fa08bb9f98fa069a6e8c3eb98507d28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed3d2adca8a91282e4f09fea9d069262e0206d03c782443c0832fddd878dde3e
MD5 a7eb2ef3e16069cfd32caab2b644f9ea
BLAKE2b-256 b4c10855f26473c63564fe72afba50294fb59dc1a9e58de4539ff17e098a8e60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7cfab415f07344da609c07ca1bf0aa5ec1139fa8ba34f1236f01d7bf622e4671
MD5 ee775e7b216f8faa4aa5938b32402426
BLAKE2b-256 31ed4506f31bb7d8e4a58126b68d033cdb846b233e481aa35f1a90b21c0a0749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c2712642b9c37a61d162116eee4601828b98fd4ab23f9959e1bddbb5053a2a2
MD5 e5c5303055c9c1a6105a2331bb0e16f8
BLAKE2b-256 86e46c4a327ad3de1a812ff2e407ba1dc862f76e151b7e927d98979a928acede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6d9a2cb74daec7f5d498509e3bf07b9e1c9c5fb0d13f9e86867c7c5b144d42a5
MD5 75724fe462d80c75bad4f251d018c8d3
BLAKE2b-256 e721b2dfa5454acc2bb0081a9f8574abd675634ae24499e57a3129e0b2e120b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a901d80f9f2f78a9aa7bcf216041e830ea9bde2f91920596297b722ed1ac2df1
MD5 f70831d59afbaa498cbd784dc2c4a6eb
BLAKE2b-256 d6183a2481c0f2c7080f483ddab89b63d73a782ec6f4154e3615663186021776

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mongojet-0.5.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 5.4 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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 74ff50b567dd5b98eea3941910019eaf3b1769c25cecdea8b9621f0970498eb5
MD5 486bd2c907b2f32cb0b1663c13d2893f
BLAKE2b-256 b3d726a7f0f63bf4ddcff25880ccf204a6d982951adae3ca3d6c1000931809e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 362ba29a08711ff89e1496e84832cc17184d6a9d5f7e1db1f4ec6239af7050a4
MD5 4415415cddb3c68dd17bc1a4df1d71eb
BLAKE2b-256 96825bc24ea5df8873cf2f31692550a8bc090571ddcd87c141d7ca6d75a68976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ce102f32f5693b919977af0d9af5d454a5a4785648f3f7506a5610c3d41d14a
MD5 b4e0d72018d7ca2f625609c49ea859d3
BLAKE2b-256 89c345e287412613e3a3e34ed5e82bec75be683ea678f10e6cc0d471ae4be928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d4609557a0bbe5d426f274f5094a356238437cca138c13c74982284216dfca4
MD5 ef19142a3e5f988e07a25316955eac00
BLAKE2b-256 1215ff48f9e30ba39171e31dbfa1e8bcab8169641543c5cc9f9c2d74701a1a3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16c98828d2d740bd07b70dff55aab9cc85ac383afbe1b949b1b3f1af26c38f71
MD5 a4fc4418ab87f77f91918a653db88b5d
BLAKE2b-256 dc4724cca0bc83292b86f80e904e1683b5696ffe4809a58ab9e0e86fc7484fb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86ddd1952be3d7e7be957fcd9ca282bf518c95fc8c0b889a344d49cdfbd5ccc0
MD5 16be32404a0defafd8e269f4a6c92157
BLAKE2b-256 6bf116da96cfe97b78b5104453c24964d271be644198a396d6162e2e5c5570d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d42c3dd4586a00511c7982fba577736c45e335b8c723b31dc6d02105b2650968
MD5 d5d516bce670763dd15199a5371f6084
BLAKE2b-256 832d4937baf3731cfb9d73a5f04dfad243ccaebffbd2279acac07ba94db22a5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96668aca8fa2bda00b37f2fcbd591622d015de04e1a97db9c81cbbb42946924d
MD5 89db6c4cda06ecd2432a9c180ff590ba
BLAKE2b-256 ee45a02d3f783f31376a2296e33d992363a96152d23d961135aa8289d2604f27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 946d18f09a52822d4f0428a24b45450a4b392a62ac635123cb9d871d6c4ad4e0
MD5 f9984fd581876e21cae8f5961d85d097
BLAKE2b-256 5da7ba4b68c4b2dc0755363b273fbc328467014bbc0196a12b3f0fbf4422abbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 15a013f7b8cf0c4c67e9ef13e3778b8cd408f8d61050554be28604b5fa91a209
MD5 79157a470ba362b18a79aea62cdec1cb
BLAKE2b-256 a9823fb83b938b0cf75778e5d72de8625eb67603693adddaf16de1795c606123

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mongojet-0.5.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 5.4 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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b1862bc03a1a685d008055c6bea88eb961818d640961ca85dd8f12e2223eb03d
MD5 654e7113e00a0e45a8ca04e81c1b64fa
BLAKE2b-256 3665ea35fc0a190daba325f43018323ea986be2ba8bb42498fe2245042472883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5cf04a5a7b3062c6b3344e393444abfe9ef1e2a2dd3a528ff190a452f0c184ce
MD5 7aa1b22ef7cc5e0b815e0655721b4c5f
BLAKE2b-256 d5682c40d0d3db8e7ef439df03397cff9c019d7b1a38ca2fd735baead4a6e6ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 836717857b98f7ff7660e24fa49220a5b88e6fc16c6e6657ed6a829bd0efd512
MD5 d8a4d58d348cc479b59840937497fada
BLAKE2b-256 73efcec2f80b6e42704ead96f52715879e58c652c5fc90154a8576f8dab04a1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8a96d066ef3862f15e5871143878125ad265532fa61fd2da6eeef5aedab6ba9
MD5 7985952fcb5a48218c8e21523c6d356d
BLAKE2b-256 29bfe130ce66413864795094bd2b3960d04d317e2ed6c955b967cb43730e2273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d491d3fe4b44a62ff6d05167f624e1f9c88631ca8c159e43ccfa94b4d7c0662d
MD5 b4da90b09b184414705c41596b1bef99
BLAKE2b-256 6b6a0d4c2014c468f21e53b46a5f28a898ad789f5326c73fde71cf54583c0edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ee3259d8a789d2a423f187c88c8ff091829795eba248abbc661205c1d8b00f1
MD5 51e46eab913fc8824069e322acb84d51
BLAKE2b-256 507a462d95f1d87849d9ef735035c7cc1dafb69cddbc294bd7dcda97690e5c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd7033b399fc9569ac8a2a26c34a820071a9090f0cc4cfdece3f8170c8a6204f
MD5 a6cd1ea78985cbe07c4cc2a1366d0ede
BLAKE2b-256 bf14f384ea2d1aa28173e6548653b35fde4752117728c77ddc833c1b7fb1965d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 210d0bbaa2039e6ebb3a970cb58538419f7290b6ef9f5469031d637e2908bdf1
MD5 e5f717043023f446994da645fc0bcf6b
BLAKE2b-256 2a4a8263d99fc7348e4faa31f0217a8047bc03fe3d4f2d2a50fe0418945d1202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ebd6cccaf68606689c81e3313cfd1c37732732799a5a936bf03042e44e4d6ef
MD5 b0ac49a86b5b332785af89cd383e08f9
BLAKE2b-256 ea6af3c019e66af9fde7f36a7d2a16b37e565d4da3f8602853ebe4c9698faae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ec1eefea2c8ed33c0c4390e1fadaeecf5dc491e0f40e07512cf638fc3f1bbac
MD5 0cdd418b5a7985f14796f091d8e569e3
BLAKE2b-256 52ec747d61f83f87711e985c9697cc22c092baccb9a3d6070604ce5bef3797e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mongojet-0.5.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 5.4 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.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 29c973a62749ee3162a5c1322fef3542b129754cbe14b18c7ae4efa2a5b23bbf
MD5 86eb4409bfd2fa6cb17735bcfa6cfd46
BLAKE2b-256 8eb9fde40e74061533fe0eecc5c69e141ed48998b734681a0e1c5aa77797def2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c9ad7bc54bb6faf0c31c49a35eec49ea22257aecee4e62f2f55fd33e68b749f
MD5 9b029273c68d3d6fc6f281a7719f1a95
BLAKE2b-256 453a3eee1a07af1101ac1f7096febc1f40a90d5321cde88e2f1ba047518243d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c400c88fb3fb577e6e29aa44439e66cf2ba0d5119acb4b375566cabb33284a73
MD5 e865c54b71fedf8b8e70d6b448a82f87
BLAKE2b-256 734f40d395dc605ca3d0a680faedc952cc28ca2ef9c912b7918738a387ed0bd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3009693c76544eeaa0cc3c1e33bb71f5a6fa50f8249c4880ef4036078bc2f778
MD5 4a29f7ad055f0b15d36684d7bf3c7e44
BLAKE2b-256 d4344a2e13849048ed1f30a4f41ed9c86794fb7db6fa676b55fbd474b52d941f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5653abbc0761f173c082eae9bb9d07531cd81062dedc296913d7b233fe94b762
MD5 05c0b5dc2ed7ea00d64d9d40c0cb2304
BLAKE2b-256 e9be41d80677a897b7a69ae98f82efa79a09c6004c74a9b78c825d77e13f1f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 68a3190ab2bdaf1c7471786793fbeb6d4bebda34ef01d15e5eb8cd278a4e75ef
MD5 604598d26610c920a6ebdc51ccd8dc1d
BLAKE2b-256 466e9909dcf78b1501f44276b79348f61e590488a352c2482a0937567c5736b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f198ed7b3d73b1cb85c36d9fa15f7d4512b572bc5dde8914cd46add86e86de99
MD5 3cc5f906f7eb3b3e8908e67c450b0538
BLAKE2b-256 ec86c33203f0fac429c53d636ed104bfd3a329cbb09476c0bab877b760d7e984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 886db2a826a5db8c3394607f78560f15a7842ad504c8fee6110a68fc74ef738c
MD5 1a19180ace3194cda1ee0b2caf28393c
BLAKE2b-256 33366a9f2913ba136276571009dbd1f53ed6cffd0a2688e5e4a778409f917bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d537413bc99cdeb147cd5671395679b5ef1345975e606444a9c7e5969a7cc0d1
MD5 79e099796ee7cd3de2c90ab04e2e7afa
BLAKE2b-256 78b9782895f59228fe6ba065f8f48dab2386780df9bfd2fc1a3851da80dc1c32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mongojet-0.5.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 6.3 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.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 73a24b510d2c33420aadbe24af0bf0e162fa83f0e0addfd930147bbd1bda5ac2
MD5 07215905eeb84765fdf40136271b1190
BLAKE2b-256 674672bdc0bc6fa1e02ce4e69aee44485f2b295f7fef4db45f6a03e23bc15d50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mongojet-0.5.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 5.4 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.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 141a131d791d3c082bdbf66ee8125a62f357703f0fb9149b3f9cfa189bbd7feb
MD5 eb543a8b23d3f92a8cbe92701cacab96
BLAKE2b-256 c2a251a6aac29f98d20b957e919bd87e6911398bdbd6113486799642d816ba91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba4637b536c484a692ce40a808a83a33ca16daaf34a936b0521e0bcf78ef9da1
MD5 117c64c5e71ba231f5180933cff9c22f
BLAKE2b-256 b3dcb96677ed6cf9f376e68e4f76a51eb39343dfc66b78851f7fff4739e984e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7a2a9478466e8cd6cbc32b16c24954ababca782751b2ace24ef41160c26376d
MD5 3ee34d79799c79b99ac6b8e42138da33
BLAKE2b-256 483f201a5ece980d80f4e0455128b8a6e43685e066a369bbe0a65703b9dba890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf6f030cce63c04c7c5ff79c78b18c05c8d122716e952846dac7e691d683672b
MD5 62dc59c2003c277a71a55e44c52ef24f
BLAKE2b-256 120ded3920a2a9dcbeea3ae512395b965eb972de95ec1bb8a574d0909570bf71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0848fc86e1d08ebcde21857ba0f827d823d8879859f849f05a0682c243850420
MD5 d426ec7e6f6d6c0d4d9717d9c49cdd25
BLAKE2b-256 1529c5bc170724cbb08b783562266d58c8dd6b1b3a6ff8c8bc71c227b1219047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d442116647d42fed175df193444aa5a02fc1516d96e0ff7bfa311479c746b96
MD5 2114f360e85ad7a6fc6ffd7024e6361b
BLAKE2b-256 5004a6f2cb91251b48ed18636a078377f862acb66a88c10b3d80939611cbcb48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49fd72b6c4aca23fd0f6cdafd4e87c3dbfd86df3fa264626c25690f896959d7e
MD5 4c724bf23aa3e17fd0afabb36d98b946
BLAKE2b-256 e91de70180f7e72ff55a7517ef7497a042f7642a99c1df372a26095507e9d432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07ff67aa1c18eee387c28ff16fa370a7f2cbde4ac99d5ef1a97249fa3f42d844
MD5 1643af05c545292b541c75f6132cc700
BLAKE2b-256 b8704c7d8e72b7a2dee070163a9283a74078a101e40b1829f67f2073307acd06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mongojet-0.5.7-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1224192f31522569a006c978dd36d17bcdd582a32c245afb1f0e7571c424febb
MD5 71ef8e7a1a112f98b0a07abd85d56535
BLAKE2b-256 ea47d66cdc55855c48ba6a3671c42c6fbf9d3455e9e24c8f63a450e71492bdfc

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.5.7 This release

61 files

0.5.6

61 files

0.5.4

61 files

0.5.2

61 files

0.5.1

61 files

0.5.0

61 files

0.4.4

61 files

0.4.3

61 files

0.4.2

61 files

0.4.1

61 files

0.4.0

51 files

0.3.5

51 files

0.3.4

51 files

0.3.3

61 files

0.3.2

61 files

0.3.1

61 files

0.3.0

61 files

0.2.7

61 files

0.2.6

61 files

0.2.5

61 files

0.2.4

61 files

0.2.3

77 files

0.2.2

65 files

0.2.1

65 files

0.1.3

65 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page