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

Uploaded Source

Built Distributions

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

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

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

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

pymongoarrow-1.9.0-cp313-cp313t-macosx_12_0_x86_64.whl (259.6 kB view details)

Uploaded CPython 3.13tmacOS 12.0+ x86-64

pymongoarrow-1.9.0-cp313-cp313t-macosx_12_0_arm64.whl (245.4 kB view details)

Uploaded CPython 3.13tmacOS 12.0+ ARM64

pymongoarrow-1.9.0-cp313-cp313-win_amd64.whl (223.7 kB view details)

Uploaded CPython 3.13Windows x86-64

pymongoarrow-1.9.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.9.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.9.0-cp313-cp313-macosx_12_0_x86_64.whl (253.4 kB view details)

Uploaded CPython 3.13macOS 12.0+ x86-64

pymongoarrow-1.9.0-cp313-cp313-macosx_12_0_arm64.whl (237.4 kB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

pymongoarrow-1.9.0-cp312-cp312-win_amd64.whl (224.0 kB view details)

Uploaded CPython 3.12Windows x86-64

pymongoarrow-1.9.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.9.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.9.0-cp312-cp312-macosx_12_0_x86_64.whl (255.2 kB view details)

Uploaded CPython 3.12macOS 12.0+ x86-64

pymongoarrow-1.9.0-cp312-cp312-macosx_12_0_arm64.whl (238.6 kB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

pymongoarrow-1.9.0-cp311-cp311-win_amd64.whl (224.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pymongoarrow-1.9.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.9.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.9.0-cp311-cp311-macosx_12_0_x86_64.whl (255.1 kB view details)

Uploaded CPython 3.11macOS 12.0+ x86-64

pymongoarrow-1.9.0-cp311-cp311-macosx_12_0_arm64.whl (239.6 kB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

pymongoarrow-1.9.0-cp310-cp310-win_amd64.whl (224.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pymongoarrow-1.9.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.9.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.9.0-cp310-cp310-macosx_12_0_x86_64.whl (254.6 kB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

pymongoarrow-1.9.0-cp310-cp310-macosx_12_0_arm64.whl (239.1 kB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

pymongoarrow-1.9.0-cp39-cp39-win_amd64.whl (224.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pymongoarrow-1.9.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

pymongoarrow-1.9.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

pymongoarrow-1.9.0-cp39-cp39-macosx_12_0_x86_64.whl (255.4 kB view details)

Uploaded CPython 3.9macOS 12.0+ x86-64

pymongoarrow-1.9.0-cp39-cp39-macosx_12_0_arm64.whl (239.1 kB view details)

Uploaded CPython 3.9macOS 12.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pymongoarrow-1.9.0.tar.gz
Algorithm Hash digest
SHA256 1e76bc5a365d504c9779aeafcf054c2ff8b55b29e0e850e0d2995a17ec9535da
MD5 97bebd8d87135bd42cfcef3b74d4dfff
BLAKE2b-256 ef09c7fc9147d5b77695d6f3f769699e615199851fbfefe171c6d66895519e9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a06830fa047c548a667f170f5ed35485aef0d5a2830bbfd71b7cdf92578ce3f
MD5 73894a160cd42429592cdfbbd9b32c91
BLAKE2b-256 806fe321fd545c06b975d99f62e42cc6781a9d238c0fb989c5502ce4a490e27a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2372a53ee1c44cc302b1281c4c2a3a8bad4da9fd0401587ab2cff1619de1a56
MD5 a73fc2b133c126ba5cf09c16a270855e
BLAKE2b-256 07b3a0400110d63732e7dd15224098f072897e5eb722455328328814a1b0b78d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp313-cp313t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 0dd7b24869c4d9e10016ed27945c14de5416d5a5a4f64b9c9a37b20874d7223f
MD5 69862f591dc7d4c6ff0e67c10543ec0b
BLAKE2b-256 9a6485df7330ab13a768cdad8cbc28143066b94838245970639e8edde723788e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp313-cp313t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 68ac0ec6bedebb2ad5225c3b4de36598cb803220aa235f7963ba830350608381
MD5 641225a84659a3b8938eb5692cd71d88
BLAKE2b-256 b4810067950955894f805de80c29330d5052bbe56c37ed1df93dc5dd7f51f2bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3721b2d0e5272e05704f48ddae344bd32a9c7ab66b55c5285538ced25f820974
MD5 ad6a3f4f74aebd27638de35f0c56a414
BLAKE2b-256 060974a4cabdb226f9040a8451c65662c7f8661918b6ed5a4181e6c11ad39854

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9eda3b02c28ff3bda9384938b0c07ac2746173a707c2ee9b940924c687791096
MD5 644773195937d1e793e98b3cc35c14e8
BLAKE2b-256 cc190a454f5beb34fe211ce9a0ff591da9cea17d6bf2cd853209bc64c924b1bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1838601d970f007b1706d3585c9dfe84b435554de3a40de152ca6ed34f1c695
MD5 2471ec22e070d07832747ea42a343cf9
BLAKE2b-256 cb1efc6e7a2dab46ff45d5cf0cf1aa7751150a6bd17f21fa7890473b6a14853a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 3d35e2c1e88668ee1157e17419ccc104f0f0e21482479289904e6ec810a34e17
MD5 ca35af2707e07430d460b4553b2ec54a
BLAKE2b-256 c9297eeeef9426aa66707557609cd34358560daad9b58f2f7bea5e233dc083fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 12b41cce32406bbbc2c4dfb17ec7a99b5c2065e019a95f91684cdbd8c5066e36
MD5 5420d840a31e06504e4cb6e6d6956d47
BLAKE2b-256 33217a2aa0ef0ddea163c3d15ccb6bce8e8e60f3c659adbd62afb67dcb060008

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4e41bf7ce4a98a185a596ddee91815e319ce9c3c8185e5baa61808811fe1eb69
MD5 565db40087cdb964ecb45934eba494e3
BLAKE2b-256 d3d49b01cde72b0f83656cbc6f76b5ab72f88e5e9d6ea79afd9e40d82821bb86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43a1151e21b303df734f8a6b7f047211b9d953df89ada2a74811151e54342438
MD5 628daca196eaa26fcde10326d231b991
BLAKE2b-256 109119ad816973956af15671b65f86273f8a6eb9e22f0dca2cf20948cb5f4811

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 274c528e1d65386989272f3c719a9476eac7b1db14101c875e19de5f514dd55f
MD5 ebc23ba42642b68c8b0df93bec69a991
BLAKE2b-256 c7d194beb38c4a756cd00c5aeeee0685236cbd943cd797b5c44fa720c971acd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 4c965ca2bb74c3de9dc13a13dbe0ab40fb5a615d2e88172ffe525e4c6b26937e
MD5 42047531fef8b1b1f1f342358aa7252f
BLAKE2b-256 e0952ca54191d7b7b082afe0c6ec1e3e0e34393455a21065311825b9d323894c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 d6f1f99fdcc238e44173fb480fbb5cb1e579a303cc9b2805a17821c7f0bf1493
MD5 4336acd00482a3f8b685b4fe661cde26
BLAKE2b-256 0fee204fb626a65054714a596138ed2a1e084910b80a87b1d484631542281fe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a27a03e56afc31931dc711bb8a980161ad2fe7e6c61a100cc4ef971927db7b5a
MD5 78944c893887d098a198289a837cc721
BLAKE2b-256 daa1c0be3955577730030e6a6711bc165d0644d9ff645368f76d419d212a1e39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f578f3113c1c71f93eabb83007eb547fb038981e9d322fffedfe25b78bc8e5ac
MD5 cf7ec32443f30cc90512a3f32fcb1aeb
BLAKE2b-256 5613781a56b040dafa4934e586efb0cba55fa02489b703e12e3e24c5b5d799dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd55aabe84d7102b9aa22e49d3ee96ced42075a4063f1a6de8f95ce4232e0a0d
MD5 b3f9236b87a7aed49976e3fd371bc9e8
BLAKE2b-256 040bc52f9758b58f5f2fa104a8ec829949918fa6595655f2c218ffa9713d2790

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 e1c69055567a5a77689e37e421728a4ee72533109b9537f3bf32abec54ce901b
MD5 c66069f7029bdc0353f3f9bb56618974
BLAKE2b-256 645373de0ef8b6ea27804bb114aeda94f8681dd36e032b1326f6361a20f495f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 2a1ab6c56d624e47ac4bf5ceb157c7bded9dfaf43a518e4d6f16f9cf592444a4
MD5 c130d1d632b8ab3687c18478863ef871
BLAKE2b-256 3ccf30295caddaf1e90942c6aab1c7cfb56acd486144b017f64b2bd9908a4174

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fa40a5c949e0b1729d0bf89306dcd6afe891c82ef7cd1ec0f29634240753414a
MD5 d0a23a529e7342cdb8936f11c09fb36a
BLAKE2b-256 054d5384b5f520b55616a3da5efa7899f841f55c71c769c98cc88d1c7479429c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad8404817047cfa2f614914306ae0364cc1c2357b7d22e704b63b74761944a01
MD5 2a234d439672d1942c8faee2e435e5b5
BLAKE2b-256 b22a43773277b1958aeb998892589eca0522bb5c6e81fcd48028bb01ca11d4b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b46530c0b1a8b05d782f3ffd5932f7a5be2384846d96496358fffc197227846
MD5 2d4afa9f66a8a92b6a6c764c413b15c9
BLAKE2b-256 606d63ba3c2c48f327aef42037547e5ad2bcc77fbed4691303de244d6b1a39f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 0352451eed61b0c5a8ecc6c1b230c47122773ae3a6dc51faf3d34091862063d1
MD5 c34bfb64bd0da845a0acf7340ae6489f
BLAKE2b-256 e37346f6759e66c0515212b509d7d3edc09744d093cab9bd3dca1391331f5803

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 f12d970f0c5cf3d079e8d7233bb7248e6b51d6d71d5bff6d61db81c49b1b5ef1
MD5 03d25cfe3631bacac3484ca40d1b1d6c
BLAKE2b-256 f113d7c354d5ad24a1564989d24847cd73ce0e50315177e407b084b8182f34ff

See more details on using hashes here.

Provenance

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

File details

Details for the file pymongoarrow-1.9.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pymongoarrow-1.9.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 224.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pymongoarrow-1.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8118ad4aa8dad449d21541103c2afa8892cbfda8eae32423e3cd197e717e6677
MD5 7280df41d86b24d23064b470f5eba52f
BLAKE2b-256 564a67cbace925dfa0a2d9111fe39fbd0e0626ebb2ff38e68a32e801f6c06a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.9.0-cp39-cp39-win_amd64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.9.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 583faf0212a5c7313ded4db343b9f3efd5ce3fc77252c4b2086fc5d90af25130
MD5 5bdabc83e901a68e166827a997584bc1
BLAKE2b-256 835fec2c3127257bb97c9d9e35e541869bc97efbe8c0ee0f284000020837a94e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 657bce513df62e8f6e3446adaea7862687d1841fe267c638ba0e544a165434e8
MD5 f9e476192415b8304c27b076b0430816
BLAKE2b-256 e015119325d6c617cbff6b12be527034ca620a0cf4ac5cc87bed80948b50fcfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 cf030387570abafb6fbb5fa758e5be83e3aacd9de6ae36f91c200547eb7c4fd0
MD5 6deeac56f50e04a7fee0afa8b1dd3cb7
BLAKE2b-256 b6e57623502cb60a8f6eed3b0068fb809a99eb68c22c623885882ad0af119c92

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.9.0-cp39-cp39-macosx_12_0_x86_64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymongoarrow-1.9.0-cp39-cp39-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pymongoarrow-1.9.0-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 4f8f44e12e97ccd99c01695671b3e214eba112e2e262b855a6899afffce16a83
MD5 10ef2324e764dbc6e37fcfaf538efaa8
BLAKE2b-256 bd1088202798dcee83dbe5052cc11a4e84facfd9f1301babb707002523288b64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymongoarrow-1.9.0-cp39-cp39-macosx_12_0_arm64.whl:

Publisher: release-python.yml on mongodb-labs/mongo-arrow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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