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.11.1.tar.gz (66.2 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.11.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

pymongoarrow-1.11.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

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

pymongoarrow-1.11.1-cp314-cp314t-macosx_12_0_x86_64.whl (257.9 kB view details)

Uploaded CPython 3.14tmacOS 12.0+ x86-64

pymongoarrow-1.11.1-cp314-cp314t-macosx_12_0_arm64.whl (243.7 kB view details)

Uploaded CPython 3.14tmacOS 12.0+ ARM64

pymongoarrow-1.11.1-cp314-cp314-win_amd64.whl (229.5 kB view details)

Uploaded CPython 3.14Windows x86-64

pymongoarrow-1.11.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

pymongoarrow-1.11.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

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

pymongoarrow-1.11.1-cp314-cp314-macosx_12_0_x86_64.whl (251.2 kB view details)

Uploaded CPython 3.14macOS 12.0+ x86-64

pymongoarrow-1.11.1-cp314-cp314-macosx_12_0_arm64.whl (235.5 kB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

pymongoarrow-1.11.1-cp313-cp313-win_amd64.whl (223.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongoarrow-1.11.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

pymongoarrow-1.11.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

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

pymongoarrow-1.11.1-cp313-cp313-macosx_12_0_x86_64.whl (250.8 kB view details)

Uploaded CPython 3.13macOS 12.0+ x86-64

pymongoarrow-1.11.1-cp313-cp313-macosx_12_0_arm64.whl (234.8 kB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

pymongoarrow-1.11.1-cp312-cp312-win_amd64.whl (223.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongoarrow-1.11.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

pymongoarrow-1.11.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

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

pymongoarrow-1.11.1-cp312-cp312-macosx_12_0_x86_64.whl (252.0 kB view details)

Uploaded CPython 3.12macOS 12.0+ x86-64

pymongoarrow-1.11.1-cp312-cp312-macosx_12_0_arm64.whl (235.9 kB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

pymongoarrow-1.11.1-cp311-cp311-win_amd64.whl (223.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongoarrow-1.11.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.11.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.11.1-cp311-cp311-macosx_12_0_x86_64.whl (251.7 kB view details)

Uploaded CPython 3.11macOS 12.0+ x86-64

pymongoarrow-1.11.1-cp311-cp311-macosx_12_0_arm64.whl (237.1 kB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

pymongoarrow-1.11.1-cp310-cp310-win_amd64.whl (223.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongoarrow-1.11.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

pymongoarrow-1.11.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

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

pymongoarrow-1.11.1-cp310-cp310-macosx_12_0_x86_64.whl (252.4 kB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

pymongoarrow-1.11.1-cp310-cp310-macosx_12_0_arm64.whl (237.6 kB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pymongoarrow-1.11.1.tar.gz
Algorithm Hash digest
SHA256 dd814b71a249cac1c2fc3363facb5f5d694f579c3e380cd11b8b65c47bf7eb86
MD5 e424bf17dd375478a7aad9e32dc29662
BLAKE2b-256 b24a22145f7b074b859cd29808c827f39ce0267bf2b957a3df22e18e4e51a777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8f6a7f5a4858275118e62d317d91d7677326efe7af800d607629b7ee86f0a13
MD5 5cb4f78fca81453fa6b8c5037d8615ea
BLAKE2b-256 82f116c3907ea78f73e0c2a78f5ae4e5df821e166b82041ba131ce0216906a59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f77847ff5341699068059e39f227f007a55d20856d951527c005a7fb8a775f46
MD5 a915fb432e930da13e47b185c47a0378
BLAKE2b-256 1132fc3d85f5df3023231f2503f9d8c4bca31dbfc8d1e0163d913f1748206266

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 beda6671d57b330e4bfc4fca3617f369df57bebe5b3df8281a727951cce66c73
MD5 1457e091ea6da5ad1f7484c1cb34abbf
BLAKE2b-256 3205d58e9db4e6b306c1fa3791b07095fb62e6a552fddb8636fdfae88e8a2319

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 37cc068dd8fd5d7710919435679976cb2ee56ad8130685b8c1a07723e1264553
MD5 7e600f1bde4deef56dff68af53c7ceb0
BLAKE2b-256 555e725bdf20a78efde11e62ef0e609852e1167792f79cf80a8c22a202aedb7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 68f48e2a77362b13998c8c73242371c757927247b78b0d41cc475af1e3c146f4
MD5 d4a609eeff387b8b40f3dd51102bb870
BLAKE2b-256 ebacb47a9e715fd3c438c9f6a33f3f0b80922610e96f046de58ef8b99c8485e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8497a03ba4cc4962f8df6b766fc7f83ff82de7baae34a00eb77a38ca49bfb4b4
MD5 ed985111b84dd28c477b46e65f5e2583
BLAKE2b-256 ff7dd74998f0ee915a717a79c98433bf6e0c6530e1fded2e9a70651cef83f34b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3147388c9d9d2fb276f579ef8beb9756fc01af4cc5b64b735f71a5ff4e85cb0f
MD5 1597e5abd709e52174cf6539346d201b
BLAKE2b-256 66c48e214bf34b9199fe9592d5f3b035dd59055e0d0a83b715808acafe6e18fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 2e553bde8b868bfd9a4bb8edb53c9f43b58f59659242b184f7d1d866625be35c
MD5 7391943b8987754e9071122e089f1988
BLAKE2b-256 0cb0e7ef131573f14da731cdba59d407c6faf904549c72e75e465fc1ca5b6a2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 12d468dcad89d818b070cc4406a9b1ed83deab21be2d9c1dfbc39b50b98ddb17
MD5 1d0e7b2da5f1b468bc8c5323eff694cc
BLAKE2b-256 ee32991969b85ab09e325b9ae59c606d470313391df12017e5aea99b54f93415

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6e03f8b4b37b14fae6a0de340f882c04a5f338a00bf907553b0978c4ea983a0f
MD5 e4e112809b36930f55a8067ed43438c7
BLAKE2b-256 65c24d8e6e627121f5f6b0285572b829dc7830c396a6c1c9e49d56f93de9cc76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfe2ac42952554ef2c17df7c753e7075e015ae06b76c696f960aa9e6c48f22da
MD5 b242279ec89aa56515709fc09010540d
BLAKE2b-256 d31ff43ec81ec3c0f5890144b413905d22049c83cb36efafb1fcd6b619ecebb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bccf377ae7d646a021482d689cf3317df77c377fac6d4cb30a2c33c9b296b08b
MD5 7750fc210035ba0cfb19d3161397a35a
BLAKE2b-256 df20bcafbc43e36b94ef1f222cce395adc5575d7b519cc9bce5476a4f38dd8ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 7fadf087858cfbc283ac5f163eec735ca6193c5734dfe49502f3f884f7d63764
MD5 99f0252f7a9b4c55e0e83393979f78e7
BLAKE2b-256 c3d1ae23eedf29ea8da463db30d6f10141156c1899445781aab8b7d1eac63243

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 e8a6b9221c7262dafe7cc054de74ad976a05678a8ebd0f98329468ed4e2dbba0
MD5 3b3d2552dc5691b4f65ede19da204872
BLAKE2b-256 292c252eb7532b2434bba2e68d327b92a73809c6e81de3a1f030202349a02d83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 40c2a0e71f3196243e19b57f9a5a4e9a8b271523ac87fb2a7968ea3cfe0a9707
MD5 c123fc9fdb87b6078cb05805c861aba8
BLAKE2b-256 dc79a31160b94dc345c6ce19f6a7c9fd01cdc7a64f573a6c25918a28f0e042ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7470c5cc175370768ac02486d3850744970a228c0efbbfc98e88922cf30ac250
MD5 45d0bab7ac147d9c1c85d1e109869b54
BLAKE2b-256 6760c5ba66b0114fd61871b15184c848bcdeb8c6559b06227d1d1f6eb4adbe09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35f93a83442bd315d1a48829b004212078a383aa44baaea75d9184951e2d2af8
MD5 92bafa08d480ab93a4e0bea81a3068ca
BLAKE2b-256 f67090700aea3c64f207794ad07425d6054ad338b7de7bd9e516a6068a32bc77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 1948cf3866acfd4375978f1085ff1cd0e20dad50ebf0a8bf9562236de5427edf
MD5 e00160009cb70b1223862d2a2ff7c259
BLAKE2b-256 1d58a4d162f9c76f162e08ef54eb90f99ee63e2311de65491a143bb1ab41364d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 e91581699933f8e121aa0da8771eb79b0810a029119ca729e5ba539d39f80e0f
MD5 3a155eaf9c326f43fbc3a10456ddadd8
BLAKE2b-256 982137a2579b232b4bd184cdf68768d40edd97265cc79025695c184d6ce14f38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cdeeec0d1b0c5339730f6fcb9ece04c308a5906bed94ecc5c45b03e10c982d37
MD5 643c6be65fb8ecf3110dcb0ac6e02e77
BLAKE2b-256 f4e95e6605e9920ae9987180f10dbc324f14d908a93d9473db72124b5d7fb492

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac83bbf13cfbdb8e1b20360e285faaef527b989eb0b6cdf8010609c3c9e49631
MD5 044534c7e4b5ae0f6c593a0c5d3907ef
BLAKE2b-256 1af64f6a9ff1c823e2df89f3a7442fb461e2f6170d08116700068ce27349cd28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a237220303e81cf9cd05a9edd9e7fdd6aed135dd9e7133241ab394a257563960
MD5 18d593ec0ccfbae3a21f1dbbafe6736b
BLAKE2b-256 7a8bb3ddb426df7fd08c73020606c469621efff4a65a2c38db0978934b250a05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 134b3b93c6adf1279b4f7cbab51e9e62cba227b941fe8e9585000d62565a1990
MD5 3b24136342618f69ca8c0d71e5867ba1
BLAKE2b-256 f599c02c6cbe7b608debdb8fd4eda98ee48fb495ecb83172c1bfc086be9d61df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 123f4c7a0c745e6f97c894e32e572e15c6aaddac4be047f3204d957db8763775
MD5 474356804a6f3b80c4182bc340b99f3f
BLAKE2b-256 65debbff47bfdf7b72c8cd1e56da2df0359bdce69510fe521567246e347a7781

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2467b7632715ac0e6e226a8f2c0b9e037c96ed4b40515cacee0523b833b19fba
MD5 7cc1823f844ddcc0df37a390f4f09263
BLAKE2b-256 53796a9cf49d24ce1a7ce64c2e9ace89f33e95ee510c31e9dda3aab694e91ef1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0513ad47ed92e5cdb4b76bb3542de9279a5a449ab785ae7c0f3dd909b843162
MD5 3b8de698c6c7ec535c0e70a20fc64f99
BLAKE2b-256 04cf5bb36de7e7637833efbf4e58a8d5c170f72fa57af3bb40795b1a53f02d69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 662edf60e65b4249a5f92ba9d7be375cd2f9f01656fb4f21a9f0bc7b013754f3
MD5 3c25a80fc8fc8f2673e3f3068098831c
BLAKE2b-256 af94fda1f24652db56d5a30f598aaf605ed260365e7102a43f623b0720081080

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 311bd1b5294ef97cff9503dfe4f4da13599530fcb34f6e0f00c4d717d73c14a9
MD5 aa30bf954917385b58caa837aa6f7bad
BLAKE2b-256 e81196cc0c5518451f68090afb23c95ea60424a87f761749b2eead8561ad0db8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.11.1-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 702b170626d5bfa30510c0b305fd9b9722c0c015fffa2ba09cae25112a8f4136
MD5 7a8b631dda4e32cc83d296db7785a0f2
BLAKE2b-256 c8d38abb41f7b343b532675e521e864b8660916c9bb67a00eedba2b064a266c9

See more details on using hashes here.

Provenance

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