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.13.1.tar.gz (69.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.13.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

pymongoarrow-1.13.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

pymongoarrow-1.13.1-cp314-cp314t-macosx_12_0_x86_64.whl (263.2 kB view details)

Uploaded CPython 3.14tmacOS 12.0+ x86-64

pymongoarrow-1.13.1-cp314-cp314t-macosx_12_0_arm64.whl (248.9 kB view details)

Uploaded CPython 3.14tmacOS 12.0+ ARM64

pymongoarrow-1.13.1-cp314-cp314-win_amd64.whl (234.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pymongoarrow-1.13.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

pymongoarrow-1.13.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

pymongoarrow-1.13.1-cp314-cp314-macosx_12_0_x86_64.whl (257.0 kB view details)

Uploaded CPython 3.14macOS 12.0+ x86-64

pymongoarrow-1.13.1-cp314-cp314-macosx_12_0_arm64.whl (240.4 kB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

pymongoarrow-1.13.1-cp313-cp313-win_amd64.whl (228.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongoarrow-1.13.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

pymongoarrow-1.13.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

pymongoarrow-1.13.1-cp313-cp313-macosx_12_0_x86_64.whl (256.6 kB view details)

Uploaded CPython 3.13macOS 12.0+ x86-64

pymongoarrow-1.13.1-cp313-cp313-macosx_12_0_arm64.whl (239.8 kB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

pymongoarrow-1.13.1-cp312-cp312-win_amd64.whl (228.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongoarrow-1.13.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

pymongoarrow-1.13.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

pymongoarrow-1.13.1-cp312-cp312-macosx_12_0_x86_64.whl (257.6 kB view details)

Uploaded CPython 3.12macOS 12.0+ x86-64

pymongoarrow-1.13.1-cp312-cp312-macosx_12_0_arm64.whl (240.6 kB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

pymongoarrow-1.13.1-cp311-cp311-win_amd64.whl (229.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongoarrow-1.13.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

pymongoarrow-1.13.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

pymongoarrow-1.13.1-cp311-cp311-macosx_12_0_x86_64.whl (257.3 kB view details)

Uploaded CPython 3.11macOS 12.0+ x86-64

pymongoarrow-1.13.1-cp311-cp311-macosx_12_0_arm64.whl (241.9 kB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

pymongoarrow-1.13.1-cp310-cp310-win_amd64.whl (228.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongoarrow-1.13.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

pymongoarrow-1.13.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

pymongoarrow-1.13.1-cp310-cp310-macosx_12_0_x86_64.whl (258.0 kB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

pymongoarrow-1.13.1-cp310-cp310-macosx_12_0_arm64.whl (242.4 kB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pymongoarrow-1.13.1.tar.gz
Algorithm Hash digest
SHA256 5b1a818afa81706862e82c656af812d22a5297ea089c16dfe3d29561c5a50906
MD5 4e5dcddd7a04b2416129754ace37f104
BLAKE2b-256 b6fceb5c04c7ad9f5377f64ef7f6b4eeb1df9485c8de304ae42d3c9974b6b97b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.13.1.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.13.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15c7e636f24acda8cf7a44940f8f6e9127f6d975c50f28acdd6d5637c08b3e51
MD5 f627fc8e62a29611aabcc8e40292a21b
BLAKE2b-256 f5685fd51b62d93026c5b034c7bacb1775bcf7999b599d6b524945f9146c2166

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.13.1-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.13.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9522cc213b4066b831e48d53e2dadea304116e1ba69286839863e4e5b4ffb981
MD5 db015ca1974cc29b1b4f11b81ddbe35c
BLAKE2b-256 ea5b9b9dea6cf262ee8da9f4b3d74a32622360949b0c17e5150688116108f3fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.13.1-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.13.1-cp314-cp314t-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 c8d703158a142c60efabb39914ed60f00f860d3fb2584ef30e7f7576e797f159
MD5 2e9a2c7882d0c74ac016771be658e6fd
BLAKE2b-256 01458d6d61edc515352d75d6f143999f83ce53247e007dd63edcbe4112196e10

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.13.1-cp314-cp314t-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.13.1-cp314-cp314t-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 4cf6ab031328682296e909db6ba2e0e5ee08b3e51250440e384e59ca1a3d21d0
MD5 048cbf49212c9549de421826e5167145
BLAKE2b-256 2b178dd22279478105be210cab55d095c628fad0e075e7162cbca3b81c3a1c8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.13.1-cp314-cp314t-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.13.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3517fa8e51b4eb4ac4695e62474393cbb03b553d81a490d3ed9d0611d19dd2e2
MD5 10612fb0fc5311c1e99abaa7a72913dd
BLAKE2b-256 aae26dbf5d5e252e306a3e90c08ef606381e16cec7a77a79419a0fcb55a1a893

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.13.1-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.13.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33b05ba7f3a24bf7402e31b42a7d43e6fccc097dedd931a74b2c2f597a0fe693
MD5 964acdb560236de572a3772729e61f44
BLAKE2b-256 c9aa7226239df16cdf2f15a6df4f6877fd62b21ab16849bb673ff49ace8f92d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.13.1-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.13.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32986955c35c83e0372830163dc4caa11ef883d916ca412f44470dbb4591d5ac
MD5 6005a6a681a8bc2e73da25f9097b3d3a
BLAKE2b-256 ac97e20dab38eddaee9996d59cee7dfccefb7521e31f82d98ea544e51eaa4a15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.13.1-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.13.1-cp314-cp314-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 360cbbe002c0ef66be2fbc0e25a78b9cc0e134909ecaee82a83e3568218a6630
MD5 17b1a84613efe564e282c646d243deff
BLAKE2b-256 ff7db2c64d802165d9a12ead36dec99d43e168e76a0fc4ff89aa97eb24e8a82c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.13.1-cp314-cp314-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.13.1-cp314-cp314-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 bd7fa42922b13a16cbbb691d82aeede6240b99ebeda498318879d4b4f1844dac
MD5 5b9f4f45dffeec2852ac0b57e42a1d8a
BLAKE2b-256 10f0836ba7110850c3454c21e517b858fc3937df535d7f9aa3e779e911a53604

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4d44439987dc3b433b6295ebdf6ba566b58b5fcf12bab433ed61b0b1b9d86d8f
MD5 dba1aa89f17b59f2be0d0df838c0d3c4
BLAKE2b-256 8421937da62f8db1bb1720f1226562fa561ddd91abcdd4f341a0c53e2be25109

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff419fd7340f2179f6dff1e8d5cd7734203dee17d707a177ae0d03170bcd96aa
MD5 1637f03eb4771bb3bf69b37dff8ed296
BLAKE2b-256 c8dd5760a6f47efa4bcffcad08ab2b55773b903c301c5529dd699a49a5710e4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17913aabf24f42e68f63b200e10e3cad261c55219ce8877bcedca4a9b5245b94
MD5 3da21a1247f1f02982463a8dd388f1a2
BLAKE2b-256 d88cdfb57843b3f99604fde3d74bf90f760c2e579a923eec68bdfe198a33a7f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 d18939f32951c7b4cc498cfaa47b5b68953611e06e46f789f3cd8f8c5ec6f6d1
MD5 5821fae7d833360607d59fc50ae8c60b
BLAKE2b-256 3e3dd96da7886738067ef94291f0a27840d3d7c0678b542f8f074a12ba5a9845

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 19ca64fc2c8ef1d2b72ecf24d399b69c320577306c44350c6b4d7ccfdb27de23
MD5 8ab99a855ff7bffaf897e4779c70f404
BLAKE2b-256 56de40e7684a41fa1bbf11a8b9cdc6a89fe419d400cffc827013584c12538cbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.13.1-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.13.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 24def62e0512da12e68cac4b75c8b05793f83e874f2b79ce957c03b4cf171f32
MD5 ca15653a550a5d2f9194afe9bad7a66b
BLAKE2b-256 51287679d8b4b983abf63cc56509e47de84c950988a90610ef27cb85e08e52a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e9b42eda94c9fcd3c8833c2913347d612f79586ee6849670139160c1bf898a5
MD5 53283e031f9ddad811da39a8d4587c16
BLAKE2b-256 14abd51236350b60e94f9f62cb6cb891daea1c944deef1e5467ed5c48735aab6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40829322edfc90fdf12de0002b287632a2fce9d85446285f51789c8bd9ea289b
MD5 746bbaf0dfccd0e33e564746cf861dfb
BLAKE2b-256 b9012df8f66a9942014e360d109e92149da71a5e00b7c8a77524e7b36e5c8732

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 fede01eaabe46f3194741e659d0f450f0385de04d586937596ff8681733151e3
MD5 406fad2740860a85bb0c1342b6f905b7
BLAKE2b-256 b17cfc51bd91755877240625dd78b1d2fc340fd148919c719cce7c9139af73d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 1877e836605b4634e9e84004c817ed8d0a8540f8e59602681b483ca4340ec3ee
MD5 ccbcbbd37d71553357be5cc5498441bf
BLAKE2b-256 1cb8feb93e0bff66fccb206eb09b7e10d7f1daf4a42e85febbf04b27c183390d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.13.1-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.13.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4005d073ee8a28e94577797a8dfbb371b3147ea409713c9ab5c04f67404a1f66
MD5 979c0f41f945d97761bdcb3b46190e47
BLAKE2b-256 b659807faa66cb3b4a658d0868c72ce64df1a42890dd7387ef19ddb29770f27a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af4c217d574b63a3d25521c18dc289849426c135f63ff39db3a99a579619f4e6
MD5 29427bd25636be2c09dca01fd7d9503e
BLAKE2b-256 02f0de43ad5e5ef908e4fc8bad05a5dbd1f75a144dd43ef6c243469e91a9ba98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0262a5d67439ee6127b63300fd774aa1273fca58d89e51d4af7ece27a7a6c0d3
MD5 ea3ff70b11b94d269e788c7a1fc9ab77
BLAKE2b-256 75cba95ab6fbe997020077d0ab77beadbdccf4410a696a7e37b58f5fa60e2682

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 0d9d265aa7eac20bf064d5ee45f8ec52fd9f7fca52a07abda041b7e297b449d6
MD5 4cfdcaee08aef54a1a8f6f3aaea9097f
BLAKE2b-256 c2af8d959fe86ff85bb0f463e2533c29a2d60995d7f0992ae2de3d175a9a4ef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 3306e0b167f275056738a62a3e03eb7e555751deb50f1916498178da4af68c4c
MD5 94d215d2e1d9ef7b914aaa9d423ce291
BLAKE2b-256 141e8169a01fbcc2fe6780f7d44dc769367b347e2aef58aa535d3256990160d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.13.1-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.13.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b40a44173778481332092e1d4770dd814037c1f5d82470aab2ef4ffae474c0b1
MD5 3af605a51b4e54beb1d9ea9d5d7a1c6f
BLAKE2b-256 80b584457dcbb9ceab0388a3ab7cff540a265c55d1ed9a1e84eaf91ed65ced4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 508caa2338e6346704f3e21894078a69c55338ad9b65e6372ea8f9cde43c0b97
MD5 ae98646b1ec01350fa23abd0b50d412c
BLAKE2b-256 5e589fa1afa5e1e9558a61dc2ba16cc5fb758feeb4d6470327ef14976bec1478

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 642b4aa63dd47350f7b85eef4b1f9033873e294695865e0f0e133bbd31a2e1f1
MD5 4b5d2eaf028e18a9a1e71487c20d151a
BLAKE2b-256 962ef08f5ec43007232209d08a941d0951d7c942091cea98c1cf46c344717f40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 67d959adae358e4d9fb2802c3701f2586f27693d1cb425ef12f11d0c5dc622db
MD5 2d8b28d057aefd68529b267819c97966
BLAKE2b-256 b42ed7c392ce42020fcb62f2a3cfa3fed00416ea80d66c622ac62309196dbda1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.1-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 a7b2a4b4523b58ee82efa849ee9d68e7069c5bdc90a77de7795a2e28999e4f6d
MD5 68dc84c13250d059db17dd63f905ae0b
BLAKE2b-256 7f06703fb45da812be9de0d561f1686e5b9eeb746859b787bca3ae03be2918fb

See more details on using hashes here.

Provenance

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

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