Skip to main content

Tools for using NumPy, Pandas, Polars, and PyArrow with MongoDB

Project description

PyMongoArrow

PyPI Version Python Versions Monthly Downloads Documentation Status

PyMongoArrow is a companion library to PyMongo that contains tools for loading MongoDB query result sets as Apache Arrow tables, Pandas DataFrames or NumPy arrays.

>>> from pymongoarrow.monkey import patch_all
... patch_all()
... from pymongoarrow.api import Schema
... schema = Schema({"_id": int, "qty": float})
... from pymongo import MongoClient
... client = MongoClient()
... client.db.data.insert_many(
...     [{"_id": 1, "qty": 25.4}, {"_id": 2, "qty": 16.9}, {"_id": 3, "qty": 2.3}]
... )
... data_frame = client.db.test.find_pandas_all({}, schema=schema)
... data_frame
   _id   qty
0    1  25.4
1    2  16.9
2    3   2.3
... arrow_table = client.db.test.find_arrow_all({}, schema=schema)
# The schema may also be omitted
... arrow_table = client.db.test.find_arrow_all({})
... arrow_table
pyarrow.Table
_id: int64
qty: double
... ndarrays = client.db.test.find_numpy_all({}, schema=schema)
... ndarrays
{'_id': array([1, 2, 3]), 'qty': array([25.4, 16.9,  2.3])}

PyMongoArrow is the recommended way to materialize MongoDB query result sets as contiguous-in-memory, typed arrays suited for in-memory analytical processing applications.

Installing PyMongoArrow

PyMongoArrow is available on PyPI:

python -m pip install pymongoarrow

To use PyMongoArrow with MongoDB Atlas' mongodb+srv:// URIs, you will need to also install PyMongo with the srv extra:

python -m pip install 'pymongo[srv]' pymongoarrow

To use PyMongoArrow APIs that return query result sets as pandas DataFrame instances, you will also need to have the pandas package installed:

python -m pip install pandas

Note: pymongoarrow is not supported or tested on big-endian systems (e.g. Linux s390x).

Development Install

See the instructions in the [Contributing Guide][./CONTRIBUTING.md]

Documentation

Full documentation is available on Read the Docs.

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

pymongoarrow-1.6.0.tar.gz (58.8 kB view details)

Uploaded Source

Built Distributions

pymongoarrow-1.6.0-cp313-cp313-win_amd64.whl (218.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

pymongoarrow-1.6.0-cp313-cp313-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.28+ x86-64

pymongoarrow-1.6.0-cp313-cp313-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.28+ ARM64

pymongoarrow-1.6.0-cp313-cp313-macosx_12_0_x86_64.whl (247.8 kB view details)

Uploaded CPython 3.13 macOS 12.0+ x86-64

pymongoarrow-1.6.0-cp313-cp313-macosx_12_0_arm64.whl (232.5 kB view details)

Uploaded CPython 3.13 macOS 12.0+ ARM64

pymongoarrow-1.6.0-cp312-cp312-win_amd64.whl (218.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongoarrow-1.6.0-cp312-cp312-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

pymongoarrow-1.6.0-cp312-cp312-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARM64

pymongoarrow-1.6.0-cp312-cp312-macosx_12_0_x86_64.whl (249.3 kB view details)

Uploaded CPython 3.12 macOS 12.0+ x86-64

pymongoarrow-1.6.0-cp312-cp312-macosx_12_0_arm64.whl (234.0 kB view details)

Uploaded CPython 3.12 macOS 12.0+ ARM64

pymongoarrow-1.6.0-cp311-cp311-win_amd64.whl (220.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongoarrow-1.6.0-cp311-cp311-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

pymongoarrow-1.6.0-cp311-cp311-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARM64

pymongoarrow-1.6.0-cp311-cp311-macosx_12_0_x86_64.whl (249.4 kB view details)

Uploaded CPython 3.11 macOS 12.0+ x86-64

pymongoarrow-1.6.0-cp311-cp311-macosx_12_0_arm64.whl (233.9 kB view details)

Uploaded CPython 3.11 macOS 12.0+ ARM64

pymongoarrow-1.6.0-cp310-cp310-win_amd64.whl (219.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongoarrow-1.6.0-cp310-cp310-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

pymongoarrow-1.6.0-cp310-cp310-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARM64

pymongoarrow-1.6.0-cp310-cp310-macosx_12_0_x86_64.whl (248.3 kB view details)

Uploaded CPython 3.10 macOS 12.0+ x86-64

pymongoarrow-1.6.0-cp310-cp310-macosx_12_0_arm64.whl (233.2 kB view details)

Uploaded CPython 3.10 macOS 12.0+ ARM64

pymongoarrow-1.6.0-cp39-cp39-win_amd64.whl (220.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongoarrow-1.6.0-cp39-cp39-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

pymongoarrow-1.6.0-cp39-cp39-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ ARM64

pymongoarrow-1.6.0-cp39-cp39-macosx_12_0_x86_64.whl (258.3 kB view details)

Uploaded CPython 3.9 macOS 12.0+ x86-64

pymongoarrow-1.6.0-cp39-cp39-macosx_12_0_arm64.whl (247.7 kB view details)

Uploaded CPython 3.9 macOS 12.0+ ARM64

File details

Details for the file pymongoarrow-1.6.0.tar.gz.

File metadata

  • Download URL: pymongoarrow-1.6.0.tar.gz
  • Upload date:
  • Size: 58.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pymongoarrow-1.6.0.tar.gz
Algorithm Hash digest
SHA256 c1982adfb295b0b13c4f3fdd76018306eb39b0eaad17221286909dbacf3cfaa6
MD5 32620a09e39de7b022f3bcb606dcd98e
BLAKE2b-256 5655f365a4f43585583ed07d2390bdd29741a4bbb70a7436d79f917159c87a79

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0.tar.gz:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7bef446e0c6e12830baabf8a119ff5e503fd7219c68b0986ae345a693b0a331a
MD5 1bc679fb415f809a3cb01a7d7d889679
BLAKE2b-256 5cf4b2ec73c96a581bc115f9e3ad09c2c79e9773488f1e94fb52ffff057f1edc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp313-cp313-win_amd64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 085c68d7e3ad8fd4508c8d016ba4faab80862fe80b9a5794b2716b6bc8a28ac4
MD5 0c40eb421781aa8ff57fe1dca17b99eb
BLAKE2b-256 40815782942ac7a79f29884e43a978254edb70feb4dd29db3886719a7dc16380

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0de130532f870f71cda2ccb75011ba6439b3968bd72b1fcc47ffe5c5f800aee
MD5 e6384a047da60eef4cfa9bebb585c413
BLAKE2b-256 868b921a0f30d728c7f51abc9b59da9da27805ee2c5eeb1fd08ba25d19ace09a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp313-cp313-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 2ff4e2bc1a6f4df197cf9f13ef8f263cfb28139a0930d183e2490990098fe8de
MD5 eb92868db22a430925db914f787e6ee3
BLAKE2b-256 c6298e1c17cc9f36cb60eb73afcf43bec0ed0aa801df0ef30104ec4f4e0415c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp313-cp313-macosx_12_0_x86_64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp313-cp313-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 b47645d1e0d1480910b4040417c09bc68a5730af3c74307bd9781c233fadec90
MD5 119f807c53b056d37289d3dc9f7c3515
BLAKE2b-256 b3ced5acd28236d209a179331ccb2e182f2cb9405f03edf3232a4108d1467e88

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp313-cp313-macosx_12_0_arm64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d2f56601833896c79a53080f8ce76fb84ef11298eddb679fed52a5a270104b11
MD5 4704be75b78020babda51807f8a09560
BLAKE2b-256 55a049b656fe5bdaabf7462777bfea0a877232e84f932388f33ba03836e734e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp312-cp312-win_amd64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f400782f4f031b279f4309741ec08113c07a48c3cae8bf5efedb8e9e1e261b40
MD5 0403675d34abe72b7954b4fafb5b7be5
BLAKE2b-256 01129adc744bf888826c04b3852af07b335c8e1b07c098b1539d4fc92d9384da

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e9a39096f78ac96e96a864cb95255fd8b63875a587ce7e3e32711c5657110a8c
MD5 5f3cf172778f28d0cbefebc8b318df32
BLAKE2b-256 8c550b44f02769d9cafbf7d8caaa927831d9366116cf7f30b1793d54890757eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp312-cp312-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 ad61f59faea02fc426d067711890bd902d386f4b7e68efa634be1ac2ff6633dc
MD5 418b0a60add2a22e2258f36d9064a9fd
BLAKE2b-256 cea694ef2a72bcf51e626a1a3635bbed69c419c7d81a3b44a53e07ac622c2310

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp312-cp312-macosx_12_0_x86_64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp312-cp312-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 46605bddf76f8edf25652c97af3e03ffecb71fc671e56f77016eb9aa20813055
MD5 550ffa4d352ff37a6ce9277839df433e
BLAKE2b-256 be02eee9b9b500093c839c0a0e72b3a0aefa4cfca73afbc2be34c1fbbbe9ffdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp312-cp312-macosx_12_0_arm64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a69a7e5ac04673b30dea7b071d53ad9a23ab533425928f914ed6dac60f24d165
MD5 6be1ff7cf92cefa6bb70ed17ae5e1eeb
BLAKE2b-256 fb87ecd8be9e4d970f9dfbfc79947ce792794096ef8eb25a4c1a7825e3c78b80

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp311-cp311-win_amd64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 915b3df7d203a1cf7249ce8af59b77de0a5aaec16c09b62577a7f47856677880
MD5 30b0d60685ae33929c5a4533d72c9b05
BLAKE2b-256 83e33bd1841b8f93a3f13be9a14e606c76e46eb0c9fcf1a46d545f0e9cafe0eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8ac74df4fd2d8826226022aab2f1fd3d067e31814b457ef13bab64e9c5628e1
MD5 ca25985014990df7979fc302d914f27a
BLAKE2b-256 4a289badc4c40c47351ec8c0a03e2e90188441d8fa41a31db06f5882b3fdb253

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp311-cp311-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 c6e5a561456de60740b0e1b1f5cf86e5fbb0b89f4048efac94920c1f9510621e
MD5 29c4c805aaaf7c7d1d9bedb8cd8c53c6
BLAKE2b-256 364c48826f1e9e46afcb5417d4900ca71dcd5ee7bff430e881afa5d6e73d5ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp311-cp311-macosx_12_0_x86_64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp311-cp311-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 02f4bb410d88ddff95b1046f8abf553771ce876c7ca632f7cc36c7adc1661e2f
MD5 aa5afe9c46b2f603f2b5cd34018316c6
BLAKE2b-256 fbe223fa3a737eaba8e635601d13348f26efba5e0b38f7b830b4ccd7bf2ad786

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp311-cp311-macosx_12_0_arm64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3ad29605e22a6849030c2f5810aafd4dc79e00067c99db5136abe74396327165
MD5 42c2a9409f701201e466de3de07c9fcb
BLAKE2b-256 e0129aa2c3967a7e473d941d2f8971a7535a016e06d79995f62690877e162811

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp310-cp310-win_amd64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 289b59e6f3ac1781c93028fecb0978872d8ff9a0603d810fa5f275d5ede1c257
MD5 6294b511d684af0463953c9b7dcde0b8
BLAKE2b-256 ee3e6dec0f842dff049224c894e43c33c431ce708d77f33e2772352b8cba9b66

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 857055a6401017e781895bb51cef01c2e300bce03333e37da5acad14ac3b8971
MD5 a4c39a96b781b14d2eea12929e60d854
BLAKE2b-256 123152b260ae689d94244b0737ae37f4dc760db9bf0871dac9532782a3a950c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 b4f08ee8b399aff9c7adae4d1b9632cd424c7196f466eb9605cd00ef5e82edcc
MD5 3b7f46867d0314988b258eda3c4397c1
BLAKE2b-256 143ebf5b2408e96442eeba8a000a22bb0b4dee843a022c63ee82cb193eb14d8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp310-cp310-macosx_12_0_x86_64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 6642424ca6b67a491e3d4424bc0b8991720c2861c71ed45261e3ddf2121a43ec
MD5 ad7c033bd97b9fddf353e5c2b302675e
BLAKE2b-256 7d55355c77b9ddde911a5231bbadbbf3082056b75772e08a69a61a3b297d1206

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp310-cp310-macosx_12_0_arm64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 592027b4d18ef580c7b17fff09ec5458fe18ba489e2033ea3abc8ce8085689d3
MD5 16bdf6eb12e9ec2d91bba9b9697a24b6
BLAKE2b-256 5f37394f7858ec4b6d8dda7e192f1e626fe6bb0da3d33746ddc3310a8e29c902

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp39-cp39-win_amd64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d31afd83eac59bb4e9bd9536e2442825f88565f62e930d9c54e07ec6e2ff15e6
MD5 b6b04ba35f1085630986f9bea5b8d44d
BLAKE2b-256 f3afad908327bddb836d463a6bf78593041484b8b94722f5a866c8e6ba34e455

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3174ba0ab137bc7fecd63da33bdfa0c098b382ec3a45a43a2b5f3f6dab7f125d
MD5 a5a74c911dc152d53c1f5fa3c7fabd55
BLAKE2b-256 fc9997a04f810f6afdd840b249e8b78ba5be8c075dfd923b288791775b9bcb12

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 3dbae8cbfde1393d4f94fc2f05b03839bddc13a10b9e50b980613209eb41b1ea
MD5 e2b8d8043ee69dc0e1df9a9c7c0078aa
BLAKE2b-256 77d9040a2ab279aef4228002542ab78dcd63c5b448555438e040a427436c8556

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp39-cp39-macosx_12_0_x86_64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

File details

Details for the file pymongoarrow-1.6.0-cp39-cp39-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.0-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 2aa297d6245768d16a8c7869f7c699f8a5408231932c585bc3a007db98934140
MD5 e2b41e17dde1e1fb2800871a6462118d
BLAKE2b-256 7400baf1827a6f4850fab13328fc223dc0f28131d186a20f04e267ec03491bac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.0-cp39-cp39-macosx_12_0_arm64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations:

Supported by

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