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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13 Windows x86-64

pymongoarrow-1.6.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.28+ ARM64

pymongoarrow-1.6.2-cp313-cp313-macosx_12_0_x86_64.whl (247.9 kB view details)

Uploaded CPython 3.13 macOS 12.0+ x86-64

pymongoarrow-1.6.2-cp313-cp313-macosx_12_0_arm64.whl (232.6 kB view details)

Uploaded CPython 3.13 macOS 12.0+ ARM64

pymongoarrow-1.6.2-cp312-cp312-win_amd64.whl (218.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongoarrow-1.6.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARM64

pymongoarrow-1.6.2-cp312-cp312-macosx_12_0_x86_64.whl (249.4 kB view details)

Uploaded CPython 3.12 macOS 12.0+ x86-64

pymongoarrow-1.6.2-cp312-cp312-macosx_12_0_arm64.whl (234.1 kB view details)

Uploaded CPython 3.12 macOS 12.0+ ARM64

pymongoarrow-1.6.2-cp311-cp311-win_amd64.whl (220.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongoarrow-1.6.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARM64

pymongoarrow-1.6.2-cp311-cp311-macosx_12_0_x86_64.whl (249.5 kB view details)

Uploaded CPython 3.11 macOS 12.0+ x86-64

pymongoarrow-1.6.2-cp311-cp311-macosx_12_0_arm64.whl (234.0 kB view details)

Uploaded CPython 3.11 macOS 12.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

pymongoarrow-1.6.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARM64

pymongoarrow-1.6.2-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.2-cp310-cp310-macosx_12_0_arm64.whl (233.3 kB view details)

Uploaded CPython 3.10 macOS 12.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

pymongoarrow-1.6.2-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.2-cp39-cp39-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ ARM64

pymongoarrow-1.6.2-cp39-cp39-macosx_12_0_x86_64.whl (248.6 kB view details)

Uploaded CPython 3.9 macOS 12.0+ x86-64

pymongoarrow-1.6.2-cp39-cp39-macosx_12_0_arm64.whl (232.6 kB view details)

Uploaded CPython 3.9 macOS 12.0+ ARM64

File details

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

File metadata

  • Download URL: pymongoarrow-1.6.2.tar.gz
  • Upload date:
  • Size: 59.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pymongoarrow-1.6.2.tar.gz
Algorithm Hash digest
SHA256 c79a65cd0110da30215a3b3fbc685f1bfe2bab79be5dcb66cf62661c4ddd46a8
MD5 43defb8ab35992680b4be4d6333fa0f5
BLAKE2b-256 bcc73d8bee37a1c16d2d26466e7813472577f0afb7f962e432d22ca44372b1d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2.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.6.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d8b7dffb606bb393bc52113d1f5c81dd654324edd0c4f1368ebc84e353a14674
MD5 596676215e9cbb7da43bdee85b9444e9
BLAKE2b-256 35bdb8521f0e66b63dd363e7565924ed8cb5846d7010b2e44124d98c800c4373

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-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.6.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fee65b489593a515aaeb60464c842e86bfd780cabe03cbea900cd9b5bc2ada8
MD5 ee6b4b33b4fe6277d343c20cfddb9ed4
BLAKE2b-256 ffaf64cdb77be241a0c25d63999e713cdcf4c1d41fe95633cfedbe5910b634ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp313-cp313-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.6.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 18fa6007edfe546e4a3766d75a8cd84efde21371a6259550f5cc3225b7733f2e
MD5 968e084fb6e518c8408de8a4bac7e252
BLAKE2b-256 6a1e68e9ff0cd5bca4e18f364701fa147f15ecd273c09d9adaefade41cfec032

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp313-cp313-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.6.2-cp313-cp313-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 5b74d11bf92f3dbbc1b52ec4a0b107b9c15f6425f11f42495bb7633525bf8e0e
MD5 7216eb5cfa9cdc94abd72210c1020660
BLAKE2b-256 22d332991af035f19328240189e42f92091fe04584b8b509ff4f543bcb88ac92

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp313-cp313-macosx_12_0_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.6.2-cp313-cp313-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 aa833636350073ff6d362d5f205fbc1c63b3170a12d13c3e70856bf651eff00f
MD5 f6f2c295ec19563fb2c976c6bb2204a0
BLAKE2b-256 c4fd922806066298c1424df9e75e68e1e8216104be9cff381bca1d07ae1609e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp313-cp313-macosx_12_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.6.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0a341bbbec43ff2d5400447c4079f932c51c9ff9ea5f03cfd19dd37d70c22ca8
MD5 ec1169dcacf7673a6cfa0c08eea8a2aa
BLAKE2b-256 5418523d3a9b6063ce72511c1cdb51f75b6d209e5d19e361526f34d2d69a8364

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-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.6.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b28d74ad5e5f122ba1cc611260cc17258cc12bbc97bd1423a1319329ba8c9087
MD5 8bac77c44b302e1a6dad5aaf85448ad5
BLAKE2b-256 6b71a528e3bb3f61942117227fbb0fb5ca00f8a7b0ee8aa8054e57831a5fea83

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp312-cp312-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.6.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e0a990471002fe13b890ac4ebe92a564e1e3ba2158c4c950e5d5550050944f1
MD5 85e381dfa612e10f3c23816d24ca2c08
BLAKE2b-256 8afd3f032e33baedb11e4ad61bb63e9395c26faccaa5a52b722a752f9872ce00

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp312-cp312-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.6.2-cp312-cp312-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 1edbe473d329651bfb4374af005906374e4c51c0bf017f52f96ae636573217cd
MD5 9f0e1e8c9ce78221312188a86ee792d6
BLAKE2b-256 b884a2be838d1bd06454ab77a332d071be904052765c2beddae99604ba9dfb35

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp312-cp312-macosx_12_0_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.6.2-cp312-cp312-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 d6b7ada22138355324987023af95494623e938689f02a62f6bf3faa71f3599c8
MD5 2554c4749f425edf1e74393d086e57ed
BLAKE2b-256 35bfb560ea3b0a13bae70acd95bf46691b96bbe81f2e261719bdbbd861e7b68c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp312-cp312-macosx_12_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.6.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b57f26cfb825ed301c3bbb3da861d6a047d6f13cd96374794fb1fa226b254dcc
MD5 e636e73a4b3cdbafd2a41c8a4f0517a8
BLAKE2b-256 d6310d9aac2c317d62b75bfda70131fd62661fc4ad57789af491c557844c8f6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-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.6.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 77b2d60be48eb39b2a595e94e5f67f0499216d07c92155315c8b0d494de5d7bb
MD5 2d6bbb5c20df281b44af7cc4e2575f79
BLAKE2b-256 e40a38d558c3a3dfa2cef75e3eaae484d6b938840b1b3a2759acc53456f729ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp311-cp311-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.6.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d99f610aea307cd5301b8d9e5c48426f5e625da4b8b3b940b607e7000ecb5f0
MD5 6e2c52e07b6187a65754c023dc85b5c3
BLAKE2b-256 3f7c1f7e548c8347d65ed6fea07054ce2a3e8d3fdbc8a578e2d716b39d7cb616

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp311-cp311-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.6.2-cp311-cp311-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 85c88c0cf49f2bfa3edd3aa4403eb1fe95143f5ab948fbeb919ac8e606349225
MD5 ea18bf7dede498eb330bd9e54d5446c1
BLAKE2b-256 2077ac04a3a01525acfa7e4af777fbe10b0a36ae7b697a52527620d403c5de6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp311-cp311-macosx_12_0_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.6.2-cp311-cp311-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 38042e9bde87652eda1ba38ea50402a62e0ad50a387eaadfeff6be7d3976133b
MD5 8e92d1fa59f37cbac0b34fe305328e21
BLAKE2b-256 f1c8c8a255897c587c7ae1e91b5452d6b9c14a3309c531cef0dc583492041630

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp311-cp311-macosx_12_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.6.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3adadfe44a43ecfe8cd25f042b35b710c1bec98cc931bc9c707efee2661d2b1b
MD5 252707ac6c18a9d0291bd17c981aa16a
BLAKE2b-256 8f1af1923d090b187a90076e24e2f66f053598d813f7100f6aea967fe49a93bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-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.6.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0199eed5b0721b2532320874644ecf380e9fb6dd5307c14d71575077931fd88
MD5 18f25a9ce25ec501a257d1fcc4725fd4
BLAKE2b-256 bfd0783363bb69695c51b73be3a73f60d8ca81877f01b2c3f3afc14302878d7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp310-cp310-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.6.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 482e5444d449ab2e4c5ef805aec79259be6af38061051021e76433ac9a42c977
MD5 fb6f8199e88e1e783b5627f3bcfcb478
BLAKE2b-256 e2be1760d590965e3a0f15cf58bcfef8a90bf851a96e01824616a63689c9da2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp310-cp310-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.6.2-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 24100a9e1ba8bcebf9819d5f19a0b1c987f203c7d69a6d9058b90f656052274d
MD5 eb39d23f4fc30c0a5c02b6b8eaf774ed
BLAKE2b-256 94bcd6155440b37b402dbc434b692ed5e50981d8d759725144345c369eb4859b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp310-cp310-macosx_12_0_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.6.2-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 5890bdaf4c99f7c8719a0650f59d7b9be389cd9e30905823e03c7d7ca7f40b0f
MD5 45fc44b27726e3da190d40e3d7528541
BLAKE2b-256 8607b35b136973e1719b96e7da7f33f7a40321e211fca512cb1665e56491a7b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp310-cp310-macosx_12_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.6.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b974823b646b685c895c97f96c7d8226e6123cf28d7909e4c665f23688181050
MD5 d4f74706d2dd1cd74e0ffebc71747d3c
BLAKE2b-256 35fef9d957d0d083e43f97af76ceb59c30f8e96aaae6df2f67f8cbdff32f4006

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp39-cp39-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.6.2-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a37b55ce944be5cb0ceae4bd3eda9c940b76d9e921fc435cfd5c4a42640b312
MD5 c8032fe52e0d17ff470cc0abf79bf398
BLAKE2b-256 5564caa0af13707ede90f67d24213017d80408370a9114e348c2a10d3a6aaac0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp39-cp39-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.6.2-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f9d1114fa7f7e181814d68d71afede5c855e9944d398e3a458cf40cecdb35af
MD5 da6a4ef77f31cbc01d69ce9e4121f70a
BLAKE2b-256 6fee602ce3fc778ca74eee4db6c49353d962a1eb0b0d7c9c0614223ca1061df1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp39-cp39-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.6.2-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 7ace9fdbee2014786534b10931e1be3d85862a621dada8dc5879bddabd17dc55
MD5 00757eea93cf63fd574443414dcf46ac
BLAKE2b-256 0c10f15649651067bfd943b4f8918b541d892d585e7afa8c14778e1ee4c3992d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp39-cp39-macosx_12_0_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.6.2-cp39-cp39-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.6.2-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 207baa6a3cd90e2715b709e9871a3067500ec9f3df20ab4027fa04b75d4fbc5c
MD5 80016adab8e9f08037fb6a68af97e1cb
BLAKE2b-256 94350abda815ad209249b8e5bbdc7a9b94f6a3f0955dc55e5111a261fe7efbcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.6.2-cp39-cp39-macosx_12_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.

Supported by

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