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.0.tar.gz (69.5 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.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.13.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.13.0-cp314-cp314t-macosx_12_0_x86_64.whl (263.0 kB view details)

Uploaded CPython 3.14tmacOS 12.0+ x86-64

pymongoarrow-1.13.0-cp314-cp314t-macosx_12_0_arm64.whl (248.7 kB view details)

Uploaded CPython 3.14tmacOS 12.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

pymongoarrow-1.13.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.13.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.13.0-cp314-cp314-macosx_12_0_x86_64.whl (256.7 kB view details)

Uploaded CPython 3.14macOS 12.0+ x86-64

pymongoarrow-1.13.0-cp314-cp314-macosx_12_0_arm64.whl (240.3 kB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

pymongoarrow-1.13.0-cp313-cp313-win_amd64.whl (228.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongoarrow-1.13.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.13.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.13.0-cp313-cp313-macosx_12_0_x86_64.whl (256.3 kB view details)

Uploaded CPython 3.13macOS 12.0+ x86-64

pymongoarrow-1.13.0-cp313-cp313-macosx_12_0_arm64.whl (239.6 kB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

pymongoarrow-1.13.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.13.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.13.0-cp312-cp312-macosx_12_0_x86_64.whl (257.6 kB view details)

Uploaded CPython 3.12macOS 12.0+ x86-64

pymongoarrow-1.13.0-cp312-cp312-macosx_12_0_arm64.whl (240.4 kB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

pymongoarrow-1.13.0-cp311-cp311-win_amd64.whl (228.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongoarrow-1.13.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.13.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.13.0-cp311-cp311-macosx_12_0_x86_64.whl (257.2 kB view details)

Uploaded CPython 3.11macOS 12.0+ x86-64

pymongoarrow-1.13.0-cp311-cp311-macosx_12_0_arm64.whl (241.7 kB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

pymongoarrow-1.13.0-cp310-cp310-win_amd64.whl (228.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongoarrow-1.13.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.13.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.13.0-cp310-cp310-macosx_12_0_x86_64.whl (257.9 kB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

pymongoarrow-1.13.0-cp310-cp310-macosx_12_0_arm64.whl (242.2 kB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

File details

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

File metadata

  • Download URL: pymongoarrow-1.13.0.tar.gz
  • Upload date:
  • Size: 69.5 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.0.tar.gz
Algorithm Hash digest
SHA256 ca8b179e38450d21c5622b2ae48099e63284d1d12419f3db7ae48647c1c01e68
MD5 4d4157f1145f8b453a97f375cc6f6fd6
BLAKE2b-256 1102cbf29107cb64d28f6d40d507069c68281018c313ec31d9d24a9907a252d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9fac616cf557a7eaf81bc554a2fb4a59838503bf708a7fa4cdb81d684d91cf54
MD5 d34b8a620d6ca7a40a131c3e21046805
BLAKE2b-256 4597e3bbcc6175710a24efbdcbabaf4c1f10024fb0dc0304c4f17935a2be09e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a24370a062c1aae8ff70f542df69242921954b3946444de4ebefe0958fcfc63f
MD5 2ceb9e95341f86ce20f7a3cdffc17836
BLAKE2b-256 702a4c477e9867b8814de6a565e9060cd37dd5bd230b22e8ab3d4e9d4b1682c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 8449cfd2e423de41216f359d56f046bb794456d4f91e27b79d226d8188d1e1e6
MD5 e0db01b9d936302b241b1ab7a6c9c918
BLAKE2b-256 c144bd78f01f65dbb903f698371984e8804fcf8b362c7565c6379d0c1cb8b897

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 2b89c5b8566118179a160d4f4ca84411a13f69170a420133d5b838e6e1579570
MD5 5da98126eef785bda7be05cd1273233e
BLAKE2b-256 00ead3ca2ec26ab060b75544a946f7ee93cc3c0f1d74b06621a0e5aea0db9626

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c3f37dad2905276c974a65eac717be9bc33c56aa334f1279596c909ba5edb37b
MD5 deddf0d8af9972beb68444148e7d2e8f
BLAKE2b-256 373a4238d3245e4d3d3977db5c005749da578702a05e0d0c205a8755489d2b40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44c410d73a3da70e3e324aae97356358d472adec83cfca32220e1eb5220a14f9
MD5 b428865c794af5bbbca06d3198b036c3
BLAKE2b-256 11d4f06d3b01b0b6298c512cf95b28a47f972d80024c0571d6665bbcb1fa6fbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c89872d530de17f52a4035c9647fa690797e5cb0f69523ec74a273293e5e584
MD5 bb529e62bd8200673ae68033a1131d13
BLAKE2b-256 4bda352cd1dce44bf7aae0b61bd68d8aa628b882b900c2d23e21847a1c62e6dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 55bc2cdfdb18359842c5056098f8c9823b5f0fc6cd813d9413026401431b2d5b
MD5 8707e12bc79cbbfd8e5ba43a5d120361
BLAKE2b-256 6eef0ac983ef37f305970ec21fbb81256a2a5ba4f8c46dcc511d271151571b75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 34e8895a7818b9b395292ba02a76dbbd17f3fa42ca507234992dd5e939e7b2cc
MD5 0b80a6784da59b98edec57df0bf56c40
BLAKE2b-256 674a9b8385d3772c35a69c99267a2ebbc70b01dc3690bf126a9b3998e4e47d18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4731e90b69b54a2fdb8acac00643be6bccbd159c500e540dd42021f0a67fe6e1
MD5 3057ee7a3e3287d04e19185db34c0ab7
BLAKE2b-256 99bd6bc034e64fa22efca52346b8348821de608a6d5cca426b78325cfac1acc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a15917cf6ec6412f8b71d8e3cdd0adc37dca217bc11a17c5594d2677394d9b5
MD5 765d5c6d6dc104761a8f2916cd6ae680
BLAKE2b-256 ccd42961d1a2a7d21c90979b0afb24444bb1aeb21f73cfce50ec659a9a0305dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8f241b399e5c123b738e9d9f7b7e71dbc7d7fd94fd7b7048258a18a47ceb022
MD5 d8dbaca36e29c23de4a72cea024bfbdf
BLAKE2b-256 742f5bf45a6ea678c5f812fade2c15c02830a2b67cb089f1919de4a3e9640a97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 5074d79e4bd5b0ae6e15b92c685b6aef089aeb99eadc865cacc316c18c1269de
MD5 a80217d852ee45cb91a31cbc24aa5a14
BLAKE2b-256 44b2c3013ae7a5684ac8dec8e33c6bcc48a5bcd93250274a7adcf4ebcb4123c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 da9bf7ddbec256b21500c4cabe953de28fba8f20c67d059eff9a743dc778e2eb
MD5 bbdbdadd4ac28d03a410394ed0720738
BLAKE2b-256 447563102ac7f76868723ffdfa67866aecb3cc6a030512580f7ba4a6a9ba81f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 82f95098c441b1d7d788044a25ea8c53ba8099085f1bdf841a259833171c2091
MD5 615cb3dac4d9e9a60980dc9f2d53ed21
BLAKE2b-256 450d164027125c191c7643528e2921596fc2a35f18df803ad8202ca16a97522f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c488aa1f3b5571b311c4ec399793504f011daf94751b52df6e2dc27daf820a5b
MD5 852b51239dc8dd07a64775f52e3f82df
BLAKE2b-256 a00a730250b625a7d787090fe2b66f22b055fa153c776921446a630c432bda83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48af6b1219099a3153b20657934b2aa3ffecff2eb1323392bfcabbf2679b5fc0
MD5 ffcbfdb36665634c634c0c52a345eb84
BLAKE2b-256 158dbf266ae477d79c05a18ea62a076659679ce1a9310199e6d0db8fff273130

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 c6c010d7f185b53b388d0cff196527d6c732b493949a39feffd7dc032b875b37
MD5 425f9f6e2c08bc2710fc94215a21276f
BLAKE2b-256 0b32431dcbb267c5b9bc5b83951dc7b074e79e9fd38064641573bbe90f46e330

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 3dfd2774bd3b09932eb4db2244071509fe43b132f2e6b68823f1602fbf4e7d78
MD5 02b66ebba745c1a2c70a17b3a4e006f0
BLAKE2b-256 a4ca536cb88926304911e188cc125b2677bd6df8e6664ec761b29374d7ca9381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d0510ef34aec4e40437f37f5a406525f470e46213a8554592b6dbbaa130c0cfd
MD5 73af716c6290ba5eb1563944c34df2b1
BLAKE2b-256 1c71e478627a43b2d2aec2598bed5089128ee5cada92edf1dd85a5f865aab8c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fcfb44d3f6bf879a8f608fa3a7f35bb51b5045656ae03980b9d9e289e97244ff
MD5 265aafd3b22169eb75377e8168da38bf
BLAKE2b-256 0fc3c77735fc13341acaade2513395ba8493c7b52ad18fba35f0b84442e0af5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 42b06889b00d51f4c349255def76e32c54f686251a4e14d14a96eab6bbfbe78a
MD5 80fd5d622d9b242dd50bbc4ea5055f71
BLAKE2b-256 e789883dfbb430b9d3283c3a202bf1068f7ab92e72ca8a325cd8b23e62f7931b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 585d6a83fcd09c3e46b8a6ac9d411d2cc7533fb41c2a4068c043ca51c21e134c
MD5 9c45b5d2bbfb5590dece66db8f6e0639
BLAKE2b-256 02cae350c1f73b8ac6027ed6d85a5115262a2178585702f0907f72ffee2a8f42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 74b0819fdf635555967e3ed513ab76bf538a844099f8972011da1b45d5f0c18c
MD5 d32ed33b093746cf7c57b9ef55816892
BLAKE2b-256 bd1a858d1e67cb03fc02cfa6e615bec206a6da68d23846ea199a7aaf555a1c9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4a0a8b7f83af948d9c2e2e037417f3682ae54202052387097764cce797077804
MD5 f5bf41db8b19253914c9f620b6537ceb
BLAKE2b-256 12160ae421de86d8b6ca155fdf92f9ba8979f120d589cbf8a1566b8714c5e97d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9758ec223ab3b7abb0fbbb782b973eb3d950dc998d230cc118524b2abc0ee4a
MD5 d92bf3b395bd74d47453e48d8390f248
BLAKE2b-256 3a05ab07a399c3072c60665422be4c780ac88455a3d6e0d24649744a0c66706b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8be5b5f5c94db794e778e42646a243d2c97c46a8bad672c457aa41c7a97fe7a9
MD5 f556e5a3f4b864e8207d195304e11fd8
BLAKE2b-256 71ff5cce361d640949ed04758201f42a6467fec732988b2eff8a21b9f349cd12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 9ce51e31a36b686476ea77b212c0cc47ddfdd44d5f23487b76c2150097394eec
MD5 2ee07467e490622a60b8986146ac992c
BLAKE2b-256 017fde992375f6f414b4146845a4770ef4c7f52b5500f17810b673c96f5a94b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.13.0-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 884f772d7799f0eab49807c0365a050a06f52641b7e84c3fc111effa965ad7e9
MD5 a6f163b93d074dbaa5bff2959b0ad13e
BLAKE2b-256 224c6e68c22fcb2a855526cb6d90fda69d7dae4dfe723300adc69a4380d0b11a

See more details on using hashes here.

Provenance

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