Skip to main content

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.

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.15.0.tar.gz (169.8 kB view details)

Uploaded Source

Built Distributions

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

pymongoarrow-1.15.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (305.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pymongoarrow-1.15.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (294.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pymongoarrow-1.15.0-cp314-cp314t-macosx_11_0_arm64.whl (231.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pymongoarrow-1.15.0-cp314-cp314t-macosx_10_9_x86_64.whl (244.6 kB view details)

Uploaded CPython 3.14tmacOS 10.9+ x86-64

pymongoarrow-1.15.0-cp314-cp314-win_amd64.whl (250.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pymongoarrow-1.15.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (305.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pymongoarrow-1.15.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (294.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pymongoarrow-1.15.0-cp314-cp314-macosx_11_0_arm64.whl (222.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pymongoarrow-1.15.0-cp314-cp314-macosx_10_9_x86_64.whl (239.0 kB view details)

Uploaded CPython 3.14macOS 10.9+ x86-64

pymongoarrow-1.15.0-cp313-cp313-win_amd64.whl (242.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongoarrow-1.15.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (304.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pymongoarrow-1.15.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (292.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pymongoarrow-1.15.0-cp313-cp313-macosx_11_0_arm64.whl (221.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pymongoarrow-1.15.0-cp313-cp313-macosx_10_9_x86_64.whl (238.5 kB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

pymongoarrow-1.15.0-cp312-cp312-win_amd64.whl (243.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongoarrow-1.15.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (305.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pymongoarrow-1.15.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (293.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pymongoarrow-1.15.0-cp312-cp312-macosx_11_0_arm64.whl (222.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pymongoarrow-1.15.0-cp312-cp312-macosx_10_9_x86_64.whl (239.3 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

pymongoarrow-1.15.0-cp311-cp311-win_amd64.whl (246.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongoarrow-1.15.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (309.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pymongoarrow-1.15.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (298.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pymongoarrow-1.15.0-cp311-cp311-macosx_11_0_arm64.whl (224.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pymongoarrow-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl (238.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pymongoarrow-1.15.0-cp310-cp310-win_amd64.whl (246.1 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongoarrow-1.15.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (310.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pymongoarrow-1.15.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (298.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pymongoarrow-1.15.0-cp310-cp310-macosx_11_0_arm64.whl (225.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pymongoarrow-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl (238.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongoarrow-1.15.0.tar.gz
  • Upload date:
  • Size: 169.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pymongoarrow-1.15.0.tar.gz
Algorithm Hash digest
SHA256 155a0a4491f5c88611c218038b7378697ed87e4d08e3915c0facae238a39c4e8
MD5 f459631267e61f4df3437f5d27e719c9
BLAKE2b-256 5c5bd0a2bdb1d8eca56f3c39ed6ff1542ebbb4a766b5edcc7520eb70f8d5b936

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 752db2afa3fdd4f4b0b578b4e0e1ec6e86baa14321fcbf1eb0510703082b9f7a
MD5 05d2000d94276a0cf448d01d1caf2d8c
BLAKE2b-256 c577a18d076a4c789b5a2ae0a22af1dac4dbffb8f1027ca539f51e8c8965f22f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e471425e9b0364888d8c2fa1f4b419f012394306ce50acb1976b8403b288fede
MD5 deceddce4fb753ffb87f624fe4d8c079
BLAKE2b-256 1740c1d1ad30797e1ad94561adfe9860c910f2a1bd2a4e82f2aba8e2de3531d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d1f0fa163a34ef1c9247761aca77e76329fc6fa76c9bca56207f0167de01302
MD5 19b22d93d22e6013b91337cc1417bba2
BLAKE2b-256 4151a2308739af7876dc845d105a8d8ff49efec990eb4de6cb6310765daddbee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp314-cp314t-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp314-cp314t-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp314-cp314t-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ecc6717f77cddc8cc6e258eae8dbd8fc16fd7d85791ec996f470e5b2d004a616
MD5 007e5c4eed55995acecd07f57079396c
BLAKE2b-256 79c17cfb9c308be7909cdb47df207d2f95cc2c9c0464e51bd330718e0283dd13

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp314-cp314t-macosx_10_9_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2d3c160b6250cb4f9604042f3eabf9864c9a0698646ab8267c9d30561204bb90
MD5 fc28f46ef146090b7c572ef7b430a9d3
BLAKE2b-256 0aeaa5e412e29973c9e1b1ce17c2dd01b7542224c3814f28492fcde7d4a20b90

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp314-cp314-win_amd64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3eaaac1acd19a83ab8c0ba36103a23a7c93ad09bb3ccdb2edfe6d016dac370ba
MD5 804f5115680d088aefe32e216e7b0fb3
BLAKE2b-256 a7fb8273648e5a59e0e149f4f775e9a04847af254a06e98887f1819a383cd43b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0460b45d0653495f14a65fd37e1907fc7f22dbd83547b5e26e71e7f343cba66
MD5 d032a45a18a84a410d19ce3e617f10ba
BLAKE2b-256 57f37fabb56af867608fbaca6d83011236460bf8a8cbc3d377df6833159c2cce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3199fbcb14ca88b7a947473ca7eb2df9ca04506ccf4c3b12f918e7a90585c537
MD5 3146dbaea400af5561b58524ea74080f
BLAKE2b-256 e86e6532c7cc3f0c02e9a1e339082b07dd64478e91f58c16a2b25484583b8fd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp314-cp314-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp314-cp314-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp314-cp314-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6de95b12635760596dbe025d3fb64cedf3c54c05261602425a99470b7a1be7ab
MD5 141b7d9f81b1c616a495caf4e8bf81ed
BLAKE2b-256 fbfd45bee5fb6347d65a9ae65af37ee7929f49b3e8ac0ae0d415e3d004d494f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp314-cp314-macosx_10_9_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6153b7ece6abb5dcfdf61bc11211df51619ba02e2dc6eb0bcde67093fea8f3ea
MD5 27bd272258bbb3eba9e7c49d1f33a7b9
BLAKE2b-256 aa1f8480f4729c3355eb5baed308dcb132d6acac8a37f2092e08bbe050910ce5

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6769ee6583c1699d62f5577117b0d7f2ecd025d09eeacd9c390e9236ff3206b
MD5 4556b10a5d10b9e9674726d632d57945
BLAKE2b-256 a90181427916f136bf041e4d6dff9fa8a4fd0d0762d133e2977ec2adff8e65d4

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4b0c0238676f02a1fdbdc340d5860ee8bbb6fd0eb6c808804e515b9a737cb6f
MD5 241a2ca543ce8b2c3ad78906d314e037
BLAKE2b-256 49a8c7d0d83b76715336a0b19380f7164ed2d0990bba76c76391b455657667bb

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9386094d62b4085ad3e1e32c74ba2946924fdd8a18511b69700903dd669777fb
MD5 54cd0d704d380c3cb3cd31411470141d
BLAKE2b-256 749c1e3c08064a76cb660e0e01b751fdc2bcc9b7d4e145872f2aa8547f743128

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp313-cp313-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bdbf31c537f196d1b89f65f23f824c9bb6f61fb5a23a91a79b5358cb2ad1b4a1
MD5 d5b82e79e490a04feb88473aa74db8cf
BLAKE2b-256 5b3db3b004b130a96523f53774eda3a95716b635fdbf107bdb69b994bed4ce1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp313-cp313-macosx_10_9_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 17a845d99ec7c526ddf45f612b3fd231f22b985369e249facd721a6801da6596
MD5 d9f4894e0cdaf5af843062feefc75b38
BLAKE2b-256 0021a35e19526d7722831390d4f0c17dacb1ae35654a44ef5970b3f7bc40473b

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aaa2d97406fc376d28926a6cd117bc9ccaebe6492b6470db111a9f453dd558fd
MD5 48b84147942d083d7e1527c088f38774
BLAKE2b-256 f89f006eb51fffd8f6499804d2f9e89f413e3f3a55b5795ef276e6e5a566d12d

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce73f06270c3d5976db6bfd100cb0adfb7fba8c37ea86ead0950ad9acea41719
MD5 c4032fd422ab744873b361f898bd553a
BLAKE2b-256 a0c53f4603e5c55a9b9957f13fedbd4f09989cb005aa6d3dd31d08fe6a30ee39

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d9eb966ff98cd0d0b53ee5e6eee2b447977ac263471ca95bd9d4fdca2c09991
MD5 18b9061701444abc2af4910dc2075fcb
BLAKE2b-256 c08238a60e4fa003cb7683757b25399705787cd0dee8db91bd526b8eab41af89

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp312-cp312-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d1d6a7bc3ce9ba6062dce31829c192cbc583e79a44587ddde2ab004c1d4f55b
MD5 768ebba5766127ebe79ab7ec2f8ddc12
BLAKE2b-256 fc670da782e211a68a584aed986cb4dcfff26ad42aaaee967d23064fb073d4a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp312-cp312-macosx_10_9_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b2cf9c05af225f03080775a56e420da6450fb7efe71ccecf2a88972e1608b637
MD5 42cb2bc568f0940ae709bc2475c92b8f
BLAKE2b-256 ec296118c120e3d38e451b4a51b98b483081caf39dfb7e6fd7e4aba359fe9d70

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 288ac64ed900f42bd7c2b11517784c12c240a40169f6a2e05487270728a38007
MD5 a57c5a74f0ea1d9b9376913c37893427
BLAKE2b-256 82a4534ce543a67e43a6400ae494c20db9cb0a9d3a134199d7bd738c00cf40be

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d883d66c285bc7f9598712dac556404b0365ff473402edbee08fdb2c7b2a43d
MD5 80de511155e742e4209e9e5511602604
BLAKE2b-256 a9984bdfde079e561e9cf2950549e3d7e94aff39d725ee03e62f6ea0e47f36d0

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f337534432e6eb1308d6f407bd138e30efbbd135b22647964adf4fad8edeb41
MD5 6d29461b225c1e100fb200390f9c8dd1
BLAKE2b-256 f488e06870e2c670902a95ab445c78cf5ba4663c0d8a4fea3ddad00d4af0bcc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp311-cp311-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 41885237abbdbe0c16d836d64c818054ae40f7f78e94ece510112673631d8ac7
MD5 db69fefdbc502f2accac1255241d60f3
BLAKE2b-256 9f96f26a58fe522cf51e91bfdfa702723eaa129b337b7efb48f9e1542ad9d62e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eb61562043ce7fa8ec70e2d27f9d0b89f3273efa2c1094bca935f5390ba50b54
MD5 15b98f147152aea44f62a00d76f95c9e
BLAKE2b-256 c9d2ca6ed5313a64b779cb495ccfdf01468bcb6f26e1ddc4b6e9e30473d8e73c

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17be623c46cf1f7a750991fa8b01ee0acb7650d9b16055adb04681f2b814a6b5
MD5 353908769c1a8fcfe15030da56711cce
BLAKE2b-256 ab6e381cbc574e1d86db0ee7c14993ad6d1a10c6044a1a32f2f3d01b582be8f3

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7e4dee40e71cc9f93d42dc9bce9095a3122cdcdbd9c438a72bc01cb66e83e1e3
MD5 1485bd6625c793e09da2af55a39cd93a
BLAKE2b-256 10fe010d5b7ab540f2fe4f04e3dbce609a234c17caf8529110858474c16a9c9a

See more details on using hashes here.

Provenance

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

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c67246a266a529c43f27859844e366bd02607ce9763c47f15a12e3721980754f
MD5 ca1bd8dfc00e62d52c712ae71ffcd1b8
BLAKE2b-256 2d3cb5af26ae074d89bede818204e53154fd91501268806b9f92cb0f6c42f98b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp310-cp310-macosx_11_0_arm64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f0655589d06f9c049240d37362b1fc03f6d43e651f8d575621c3096cb75fd53
MD5 c8a69a81a143640f635d4dae45ac65ef
BLAKE2b-256 e9d1d4c9cf766bf83d4669ab3cc17ecb5fb8906a7dd2cd225afed7ddb68c48cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl:

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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