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.14.0.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.14.0-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.14.0-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.14.0-cp314-cp314t-macosx_12_0_x86_64.whl (263.8 kB view details)

Uploaded CPython 3.14tmacOS 12.0+ x86-64

pymongoarrow-1.14.0-cp314-cp314t-macosx_12_0_arm64.whl (249.4 kB view details)

Uploaded CPython 3.14tmacOS 12.0+ ARM64

pymongoarrow-1.14.0-cp314-cp314-win_amd64.whl (234.6 kB view details)

Uploaded CPython 3.14Windows x86-64

pymongoarrow-1.14.0-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.14.0-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.14.0-cp314-cp314-macosx_12_0_x86_64.whl (257.8 kB view details)

Uploaded CPython 3.14macOS 12.0+ x86-64

pymongoarrow-1.14.0-cp314-cp314-macosx_12_0_arm64.whl (240.8 kB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

pymongoarrow-1.14.0-cp313-cp313-win_amd64.whl (228.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongoarrow-1.14.0-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.14.0-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.14.0-cp313-cp313-macosx_12_0_x86_64.whl (257.2 kB view details)

Uploaded CPython 3.13macOS 12.0+ x86-64

pymongoarrow-1.14.0-cp313-cp313-macosx_12_0_arm64.whl (240.3 kB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

pymongoarrow-1.14.0-cp312-cp312-win_amd64.whl (228.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongoarrow-1.14.0-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.14.0-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.14.0-cp312-cp312-macosx_12_0_x86_64.whl (258.3 kB view details)

Uploaded CPython 3.12macOS 12.0+ x86-64

pymongoarrow-1.14.0-cp312-cp312-macosx_12_0_arm64.whl (241.1 kB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

pymongoarrow-1.14.0-cp311-cp311-win_amd64.whl (229.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongoarrow-1.14.0-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.14.0-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.14.0-cp311-cp311-macosx_12_0_x86_64.whl (257.9 kB view details)

Uploaded CPython 3.11macOS 12.0+ x86-64

pymongoarrow-1.14.0-cp311-cp311-macosx_12_0_arm64.whl (242.4 kB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

pymongoarrow-1.14.0-cp310-cp310-win_amd64.whl (228.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongoarrow-1.14.0-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.14.0-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.14.0-cp310-cp310-macosx_12_0_x86_64.whl (258.7 kB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

pymongoarrow-1.14.0-cp310-cp310-macosx_12_0_arm64.whl (243.0 kB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

File details

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

File metadata

  • Download URL: pymongoarrow-1.14.0.tar.gz
  • Upload date:
  • Size: 69.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.14.0.tar.gz
Algorithm Hash digest
SHA256 f20fd2a62d5355670bfa4f36df7275a437e4c36c89b785e664852415917ec408
MD5 597ab285b996c3b0b7cf273df4d49270
BLAKE2b-256 2eb335237e60fc99e9fed0b7f37e49c171f8f03b44a01e6b77679708a705f426

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b08a857b1298d5493d25fbb4913dc3084e56e651fbcdf9f12a8c87e9a7bacca6
MD5 0bf818028fcf3855e96d2107c1f9f9b2
BLAKE2b-256 123acdd6d0de56b449eadd31029a59e6836408f26211ab3ee9c50befb026d871

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6c6a7a8d4b9ec5b8aa1db3b1743e222fda4b8d42eb7dacbf9d494ce3e826a07
MD5 f3cb2541aba7d6046078f99375364712
BLAKE2b-256 816dc2db1adac80f7937e9d230ca12d798a678f5d2b1048c136ce3b91923cb7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 f73e75663c258cbe2310ea67b7bd691477a88353f66ac873f7c4f5f5c38fa4d3
MD5 5b9055f8b5627d2fb4d991a21f86414a
BLAKE2b-256 dc24a4915aae0930149bf6c4e8cb3b773e4105b4996009cdc4214896de9d82d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 5b229c0ea02fa416bb18318213d3606b5d7f387a4d009e51061afa8f6637c7d8
MD5 5f965dca69a9e5eab740bc9eeda609fe
BLAKE2b-256 064374eb3914c98c2433ad625c35a8fc12c16203ef3baa5961c491229f717d12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fd1ebeea5f827db0d484b483e3202249968ffc4c4a58f17b81830779c975a92d
MD5 32e1810c7ca60c6df071f4e255fc3d37
BLAKE2b-256 de5c568f70a8b4f9139392950a86dabfb3df9fc48e34657aa397bd5a07b5b1c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0dad2c994d273a3c481d122bf6a958b2e7aa19340392622c34e5e2efae7de741
MD5 9063b9a1a39e99e0a3e5658f7362fd5d
BLAKE2b-256 c389ea2012dffeb7dc010efdae5b245a2ccddaad9c909096e3a2219e7f0a584f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b62d4a479eccdb62775253767597384bccc3d4535f14a7648f494dbed66a28d
MD5 8fdec39e6efc18dc0868814b2373ded4
BLAKE2b-256 07c124cc4ac03782632753c4965dfa07c3691f322ecfd414b305a62c66eab995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 194a947604a665523ca5d2a41b6925122b40a3c4fc81e59403d93dd1534c26ad
MD5 8db837514c8cbafc1414b0826666c7f4
BLAKE2b-256 f7a90b901581e2416145c2df675910bc484c18b8103f7bd175424ef9d1f436f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 d7db1e303cd837871b9a806fab27a1752b726e27d925fe1deb4b59a447909010
MD5 f00c5ee1fd574eab3853b0e850e7dad7
BLAKE2b-256 fe886da3562baf55bf38482f43265e0e34775afd9fd6412ea16d2fcfc71f7c98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2ed6619e90329d14bbb0e9b43a2b725b14928eae2954329dc9bb4f5517c3bcb9
MD5 38ce41984a5349e9e7f15b175fe8207d
BLAKE2b-256 5c44b7f033422fc03b4575225240b23974741069868d0ad5fd9f54c03c08c200

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2895c646d94765ade1521283c576f3b9b9acd183d104347827449d921f7d8f95
MD5 e23396baad4551ebf9d0e1c4a71b311c
BLAKE2b-256 ba0464d5bcb2f80818db8e68ef25fd23a1c7f7c9f22b08715f8ed04c3f149ea1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d4cee21c565630c5f26717d79c16b6294395ea7a79e5777aef2c492e9ba6280f
MD5 69b4da559e1df300877d2d11b2e496f3
BLAKE2b-256 a6b9ec13fffd9b342c348c7f78d54d30a1ce17a24ed16df31db07273c68544f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 5c5fd22eb9b15af0cbfbd567d51df8201f5c3d1a51dc696ce4d7830b56a48884
MD5 5cdd3d8c20415a99ad557ccdd01db74f
BLAKE2b-256 e061ef93bdc6d7081adcf624815b6f281c1b69b45994b89f39efa4a0585ba6cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 29a2fd471f698a4a811e10bfe6d15c9452186e1a1ac040f904e3151586614f71
MD5 dc673c1450b086f384ea44e953e4303e
BLAKE2b-256 2eed6109a88b7eb60921a23fb5d85f30a4ff09353fe4659982e7e119061b845f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 924280cd80143c8e507d639809b2041c15f7ed15df2cb171761bb1bc86d1f1ef
MD5 67e1c97922401e557716e0b9685cdbe0
BLAKE2b-256 c42a46bab2a38ce418a75c5613f8ef533283047eacef824c3cf5430f2f8a0a82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e1c0d89230e5b681b4e5d7704e9576903cb26716e4ea5ce753912bcea47e0c36
MD5 466961b01bd847a094f3843cbd72a479
BLAKE2b-256 c8b9e2857682a744edffe57f7e79660d1072a0cbe0d20e40e0af3d1152f2c6dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d57e93c65a6404621f2256c03542561f66953eeb8c80c62496f6ef9438e6a609
MD5 7646b301c87156cbae765dc64a46ebc0
BLAKE2b-256 37481ecda2e0f25ab47926926d74a7d2715a31b9c530c3fbf377d0ea7f800a14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 0c70d7a19ed574be74997f1428d087f8c06ae00a31fdefb7298299e32781e058
MD5 e58008af599c8b9e294fb6a398d8086a
BLAKE2b-256 62952ec69084e72247d39be76c0934305a0c654f3dd5c8fc40a0aafc950022ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 42d2001e724fe476f6b5f0fb210aa7287dbdfc93befe1152ad67192a282e545a
MD5 7474b1963e486de563b26ce201044290
BLAKE2b-256 dfa60d12bcac64c3a269e3d1f1724ca9c5a04da4f6cabeef918f9bf6567e01fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3ed150438fb0a52154e09612a25ba371d775018fe4bcf119d5e368c5f891b82e
MD5 d6e0cedea537c475f0179d8436ad2612
BLAKE2b-256 ebe03d70b503add1fdf0f975a5a4c74e85fcad206c65d71638cb67f0453ec972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8064bdd2c2d30e1f3b39cd90b6b7eaa7f9558656e415b14aa6008a68c217d702
MD5 ba99eea26dbe2b51edea2e085aa12e92
BLAKE2b-256 576da4f54dbdf3dc67598be6a16c9de70e1a11fd5434923ae77a5e635807c3b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ebd18053e7707f5508b909bf9283c96a0154d1841aeafc3d30154b51af56dd69
MD5 7a8288fcdb540fd773c74487ca45e1ba
BLAKE2b-256 c01d0247fa5bcc2d3c9aeefcf357a12230bcbf30e295352719763f66a6902331

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 c51074542403bcc801dcfb8cbc2038963ee4daacbcd9c7cc1debc837281aa9b1
MD5 27a93d1266e060aa724c2d3e9e85193f
BLAKE2b-256 2832f33027b3512ab9a30e9ff79643b80aa2c31382d5e1a8d88614bfa95e15b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 c8c4efc4752e6654d112e4e20ed031c87fd55172b3ca033af5855eeb2e0962f5
MD5 c501b611fb850d2fb8216ab952c1b176
BLAKE2b-256 7cbd5d44feaafb45470f150744d406d25613f84c631b4951503ee0571198a15c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7827d4a2efea00eae611563015c80f32413d70cd6f4cf3b4713f10f34167b00c
MD5 a7e2d03edfcba3530a382ed7e76c0334
BLAKE2b-256 203c70e1454b5b1e5ba9d9089609d42247459bdea90cb234d7280f627876108d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b12d4b14519d7c2e714a45ab59fad89ebb9d9ec20d1fef0a49114381e61141ae
MD5 807c58f7bbbbc177071458baeb1c8fa7
BLAKE2b-256 c47f940badd0cc0df4611c81a7128a6956017d9c59ca747e40aaee9d798eb2f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5b521be779342aee7327c74ca5328e3ae333bf7253f1e6b99ee323a8cf1a94a
MD5 e71dcc8422ab6b8506503f79031397e8
BLAKE2b-256 adaf7918fea457bf558cf2ddbfddfdcb1400d99133895da9f36f443bae986b88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 c97e7ce87cb68e9a08fd635f9e136eff622a3e2fc3110dee48cab6c90130b204
MD5 f0a329b4d9c59a11e0c30c8273c7d2f7
BLAKE2b-256 0921a268be6857a025f0d0c63df021555cbb9e284bdfb03ad57ffd910933cfee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.14.0-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 97dad52b4895f7afed3a32092e94a4fbb4e1be022bad3865f795908270670cc2
MD5 0fd9689cfc56b438766d8b33058520b3
BLAKE2b-256 ccba1a2364406ac94bd87b4485aa0bc0c5ceec84fb49d6f78d64a1f33676dd47

See more details on using hashes here.

Provenance

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