pymongoarrow


Namepymongoarrow JSON
Version 1.10.0 PyPI version JSON
download
home_pageNone
SummaryTools for using NumPy, Pandas, Polars, and PyArrow with MongoDB
upload_time2025-08-05 15:31:14
maintainerMongoDB, Inc.
docs_urlNone
authorPrashant Mital
requires_python>=3.9
licenseApache License, Version 2.0
keywords mongo mongodb pymongo arrow bson numpy pandas polars
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyMongoArrow

[![PyPI Version](https://img.shields.io/pypi/v/pymongoarrow)](https://pypi.org/project/pymongoarrow)
[![Python Versions](https://img.shields.io/pypi/pyversions/pymongoarrow)](https://pypi.org/project/pymongoarrow)
[![Monthly Downloads](https://static.pepy.tech/badge/pymongoarrow/month)](https://pepy.tech/project/pymongoarrow)
[![Documentation Status](https://readthedocs.org/projects/mongo-arrow/badge/?version=stable)](http://mongo-arrow.readthedocs.io/en/stable/?badge=stable)

**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.

```pycon
>>> 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:

```bash
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:

```bash
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:

```bash
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](https://mongo-arrow.readthedocs.io/en/latest).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pymongoarrow",
    "maintainer": "MongoDB, Inc.",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "mongo, mongodb, pymongo, arrow, bson, numpy, pandas, polars",
    "author": "Prashant Mital",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/3e/b2/59a3f9a5d3740a3ebeb371359b555c981955d9eb8f6c83e402868aa890b4/pymongoarrow-1.10.0.tar.gz",
    "platform": "Linux",
    "description": "# PyMongoArrow\n\n[![PyPI Version](https://img.shields.io/pypi/v/pymongoarrow)](https://pypi.org/project/pymongoarrow)\n[![Python Versions](https://img.shields.io/pypi/pyversions/pymongoarrow)](https://pypi.org/project/pymongoarrow)\n[![Monthly Downloads](https://static.pepy.tech/badge/pymongoarrow/month)](https://pepy.tech/project/pymongoarrow)\n[![Documentation Status](https://readthedocs.org/projects/mongo-arrow/badge/?version=stable)](http://mongo-arrow.readthedocs.io/en/stable/?badge=stable)\n\n**PyMongoArrow** is a companion library to PyMongo that contains tools\nfor loading MongoDB query result sets as Apache Arrow tables, Pandas\nDataFrames or NumPy arrays.\n\n```pycon\n>>> from pymongoarrow.monkey import patch_all\n... patch_all()\n... from pymongoarrow.api import Schema\n... schema = Schema({\"_id\": int, \"qty\": float})\n... from pymongo import MongoClient\n... client = MongoClient()\n... client.db.data.insert_many(\n...     [{\"_id\": 1, \"qty\": 25.4}, {\"_id\": 2, \"qty\": 16.9}, {\"_id\": 3, \"qty\": 2.3}]\n... )\n... data_frame = client.db.test.find_pandas_all({}, schema=schema)\n... data_frame\n   _id   qty\n0    1  25.4\n1    2  16.9\n2    3   2.3\n... arrow_table = client.db.test.find_arrow_all({}, schema=schema)\n# The schema may also be omitted\n... arrow_table = client.db.test.find_arrow_all({})\n... arrow_table\npyarrow.Table\n_id: int64\nqty: double\n... ndarrays = client.db.test.find_numpy_all({}, schema=schema)\n... ndarrays\n{'_id': array([1, 2, 3]), 'qty': array([25.4, 16.9,  2.3])}\n```\n\n**PyMongoArrow** is the recommended way to materialize MongoDB query\nresult sets as contiguous-in-memory, typed arrays suited for in-memory\nanalytical processing applications.\n\n## Installing PyMongoArrow\n\nPyMongoArrow is available on PyPI:\n\n```bash\npython -m pip install pymongoarrow\n```\n\nTo use PyMongoArrow with MongoDB Atlas' `mongodb+srv://` URIs, you will\nneed to also install PyMongo with the `srv` extra:\n\n```bash\npython -m pip install 'pymongo[srv]' pymongoarrow\n```\n\nTo use PyMongoArrow APIs that return query result sets as pandas\nDataFrame instances, you will also need to have the `pandas` package\ninstalled:\n\n```bash\npython -m pip install pandas\n```\n\nNote: `pymongoarrow` is not supported or tested on big-endian systems\n(e.g. Linux s390x).\n\n## Development Install\n\nSee the instructions in the [Contributing Guide][./CONTRIBUTING.md]\n\n## Documentation\n\nFull documentation is available on [Read the\nDocs](https://mongo-arrow.readthedocs.io/en/latest).\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0",
    "summary": "Tools for using NumPy, Pandas, Polars, and PyArrow with MongoDB",
    "version": "1.10.0",
    "project_urls": {
        "Documentation": "https://mongo-arrow.readthedocs.io",
        "Homepage": "https://www.mongodb.org",
        "Source": "https://github.com/mongodb-labs/mongo-arrow/tree/main/bindings/python",
        "Tracker": "https://jira.mongodb.org/projects/INTPYTHON/issues"
    },
    "split_keywords": [
        "mongo",
        " mongodb",
        " pymongo",
        " arrow",
        " bson",
        " numpy",
        " pandas",
        " polars"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea1513c65ad99f5c830dde768f014404a8b435cf27fd53d283de471a990bbc42",
                "md5": "0cf24d6990140fbc9ecc5909e30957b5",
                "sha256": "ef06079db2aab1f05481b5d32a4a299a47950a7488c6e46f9cca47436cface12"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp310-cp310-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0cf24d6990140fbc9ecc5909e30957b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 240165,
            "upload_time": "2025-08-05T15:30:33",
            "upload_time_iso_8601": "2025-08-05T15:30:33.737674Z",
            "url": "https://files.pythonhosted.org/packages/ea/15/13c65ad99f5c830dde768f014404a8b435cf27fd53d283de471a990bbc42/pymongoarrow-1.10.0-cp310-cp310-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aab6d5c25944e8fb33de3afdd159a4cc3a3e3b3d0f16f5c7fb0a83300d46f8bf",
                "md5": "e8e21bf647ece138ad40ab370d40dcc9",
                "sha256": "6e181e6693d7460b1116a5ac649b5bc6174627be99a9a04155e9988067ee4529"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp310-cp310-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e8e21bf647ece138ad40ab370d40dcc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 255994,
            "upload_time": "2025-08-05T15:30:35",
            "upload_time_iso_8601": "2025-08-05T15:30:35.557099Z",
            "url": "https://files.pythonhosted.org/packages/aa/b6/d5c25944e8fb33de3afdd159a4cc3a3e3b3d0f16f5c7fb0a83300d46f8bf/pymongoarrow-1.10.0-cp310-cp310-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f55df5b6f300e5b2d4e55d09a777c855c20f077da05b0e866253092e116ef566",
                "md5": "0954ef8b2658a26a7211d2e6b74bd52a",
                "sha256": "c08cf54f59316672b2e4298ed75bb25b264b518723c3c39a433a51ae2504766d"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0954ef8b2658a26a7211d2e6b74bd52a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1451062,
            "upload_time": "2025-08-05T15:30:36",
            "upload_time_iso_8601": "2025-08-05T15:30:36.760005Z",
            "url": "https://files.pythonhosted.org/packages/f5/5d/f5b6f300e5b2d4e55d09a777c855c20f077da05b0e866253092e116ef566/pymongoarrow-1.10.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d5833752b1de066bd85fa01749f7d833858d15069c3ed20c77e0581cd5179a1",
                "md5": "5cea2b5934593f784aed5f058085edcc",
                "sha256": "b34a98dc88db2351f1eca6809eced94b86db546d35d7e79c1cdbc262b23944a3"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5cea2b5934593f784aed5f058085edcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1459981,
            "upload_time": "2025-08-05T15:30:38",
            "upload_time_iso_8601": "2025-08-05T15:30:38.040282Z",
            "url": "https://files.pythonhosted.org/packages/2d/58/33752b1de066bd85fa01749f7d833858d15069c3ed20c77e0581cd5179a1/pymongoarrow-1.10.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "441c41b2c6e2fb4c0f5c643223e76f10677ea00e7974f64d62310fa36becdc89",
                "md5": "b9f30fb128f6e7b3ece3675efa422d64",
                "sha256": "c18c46438dc9027c91cd1fba9a420fa4a97103bd3c4a700d35ee826b23e25116"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b9f30fb128f6e7b3ece3675efa422d64",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 223878,
            "upload_time": "2025-08-05T15:30:40",
            "upload_time_iso_8601": "2025-08-05T15:30:40.547029Z",
            "url": "https://files.pythonhosted.org/packages/44/1c/41b2c6e2fb4c0f5c643223e76f10677ea00e7974f64d62310fa36becdc89/pymongoarrow-1.10.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c090616b7aff6f85b0eb0562a13f996158203c383c00088b266d9ededa24186",
                "md5": "f924cd1d7452f7bf72e33175d9a9b0f1",
                "sha256": "7bdb8bbf62f4d64442db2597a41815353a5f6d4c13408275080a307d63820b1b"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp311-cp311-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f924cd1d7452f7bf72e33175d9a9b0f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 240869,
            "upload_time": "2025-08-05T15:30:41",
            "upload_time_iso_8601": "2025-08-05T15:30:41.745994Z",
            "url": "https://files.pythonhosted.org/packages/8c/09/0616b7aff6f85b0eb0562a13f996158203c383c00088b266d9ededa24186/pymongoarrow-1.10.0-cp311-cp311-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bb4b55306819c9d5187cb12ca302ef6a0eef0c5b861de21e1d218a4b285aad0",
                "md5": "9a3d8195768f44d2e82cbc1edf5b7b86",
                "sha256": "5422e8fde2003706b0eab4ce1fcf2e42ca173f04f9160acbaa531e17c5944ab2"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp311-cp311-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a3d8195768f44d2e82cbc1edf5b7b86",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 256667,
            "upload_time": "2025-08-05T15:30:42",
            "upload_time_iso_8601": "2025-08-05T15:30:42.949998Z",
            "url": "https://files.pythonhosted.org/packages/6b/b4/b55306819c9d5187cb12ca302ef6a0eef0c5b861de21e1d218a4b285aad0/pymongoarrow-1.10.0-cp311-cp311-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a8faab8fb68c5817489402774789bce16cb833a287dca4b4b578cf7fa83a946",
                "md5": "ae2513493ba523d09de5c78763302975",
                "sha256": "25c1ad1ff86f4f1f9565da49fe11811483467832b5c1230d9b5d60e352531812"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ae2513493ba523d09de5c78763302975",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1483823,
            "upload_time": "2025-08-05T15:30:44",
            "upload_time_iso_8601": "2025-08-05T15:30:44.179361Z",
            "url": "https://files.pythonhosted.org/packages/5a/8f/aab8fb68c5817489402774789bce16cb833a287dca4b4b578cf7fa83a946/pymongoarrow-1.10.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16633074fb4be817fd57783a93b93cb9969080d0349672063d4c74a075a19958",
                "md5": "afc293891ce56f85f51cb60a2fdb2ea8",
                "sha256": "fa6349ec8127e1d6f3c904123111c9e864395fbe696ae3d7c34054f2c03afb1f"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "afc293891ce56f85f51cb60a2fdb2ea8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1493167,
            "upload_time": "2025-08-05T15:30:45",
            "upload_time_iso_8601": "2025-08-05T15:30:45.477226Z",
            "url": "https://files.pythonhosted.org/packages/16/63/3074fb4be817fd57783a93b93cb9969080d0349672063d4c74a075a19958/pymongoarrow-1.10.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04a5d0d334c80ca9fe9b69094e86662e3c98542ed2eded12fd8d3691ab6ee6bf",
                "md5": "0f726556e8e5d2e01e37ae9d2f9c3b00",
                "sha256": "d524bc6530d8274e9869a7a2436afd3fa303c4db60422da10ea69fbd5b6d34a4"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0f726556e8e5d2e01e37ae9d2f9c3b00",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 224379,
            "upload_time": "2025-08-05T15:30:47",
            "upload_time_iso_8601": "2025-08-05T15:30:47.017884Z",
            "url": "https://files.pythonhosted.org/packages/04/a5/d0d334c80ca9fe9b69094e86662e3c98542ed2eded12fd8d3691ab6ee6bf/pymongoarrow-1.10.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "305e723372ae76faf8fd4520514c955f410d1bde79e0b9d21e8c9c9e51317eb7",
                "md5": "3d8123c25b5911551bb697525a11d1ea",
                "sha256": "f9a3011aa250fdcc4e42a821d0e1f3770fdad8a90e5f0b2d454bb52e0b9b59d8"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp312-cp312-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3d8123c25b5911551bb697525a11d1ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 239512,
            "upload_time": "2025-08-05T15:30:48",
            "upload_time_iso_8601": "2025-08-05T15:30:48.262241Z",
            "url": "https://files.pythonhosted.org/packages/30/5e/723372ae76faf8fd4520514c955f410d1bde79e0b9d21e8c9c9e51317eb7/pymongoarrow-1.10.0-cp312-cp312-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6df1d195387f91838163a29d6dc5c858359daf7809b63067bd42c8b66b379dea",
                "md5": "08bb1258a2c5b7dab4f4e1a97a8c23ba",
                "sha256": "70784c417603acc6239758d1d1bfcefc1232264633332b29b2c6ce813763d3b8"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp312-cp312-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08bb1258a2c5b7dab4f4e1a97a8c23ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 256832,
            "upload_time": "2025-08-05T15:30:49",
            "upload_time_iso_8601": "2025-08-05T15:30:49.607398Z",
            "url": "https://files.pythonhosted.org/packages/6d/f1/d195387f91838163a29d6dc5c858359daf7809b63067bd42c8b66b379dea/pymongoarrow-1.10.0-cp312-cp312-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d595b183fa231ec715497f9235660eb5b2149c2dcfa1b8f3848865f042d92d8",
                "md5": "122a5b108a0e38e7b609d0a7613ca64d",
                "sha256": "cd3fed9cfac578a797eaff03f0911c9818dee6cb218155ff923a071bbaa398d7"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "122a5b108a0e38e7b609d0a7613ca64d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1453443,
            "upload_time": "2025-08-05T15:30:51",
            "upload_time_iso_8601": "2025-08-05T15:30:51.250352Z",
            "url": "https://files.pythonhosted.org/packages/8d/59/5b183fa231ec715497f9235660eb5b2149c2dcfa1b8f3848865f042d92d8/pymongoarrow-1.10.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c77dff7025c2a5ecdad1f4171e700914e29dfb15c70d2027e6c1bb1a052f4652",
                "md5": "219d14b0ca6bf5c259304703764efc37",
                "sha256": "fec85cbba905ac5ff512a73b8266b87188d64e062757767e77a15c9d7ca85c8b"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "219d14b0ca6bf5c259304703764efc37",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1468939,
            "upload_time": "2025-08-05T15:30:52",
            "upload_time_iso_8601": "2025-08-05T15:30:52.603288Z",
            "url": "https://files.pythonhosted.org/packages/c7/7d/ff7025c2a5ecdad1f4171e700914e29dfb15c70d2027e6c1bb1a052f4652/pymongoarrow-1.10.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b1709a3da7452e67042fe76148f236527ead09879cfaedc1d473ac848f41f1d",
                "md5": "287097277bcd7ef25ab954040a8dbbc4",
                "sha256": "7b343b7324118636c89bc5c4899bcf55c1cb1d20daae9877daf06a1730dacb7b"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "287097277bcd7ef25ab954040a8dbbc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 223605,
            "upload_time": "2025-08-05T15:30:54",
            "upload_time_iso_8601": "2025-08-05T15:30:54.303735Z",
            "url": "https://files.pythonhosted.org/packages/7b/17/09a3da7452e67042fe76148f236527ead09879cfaedc1d473ac848f41f1d/pymongoarrow-1.10.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ad731f4d3bb6bd39eeb1ca7642bf6444cf5be28237db43fd7d2130546709a72",
                "md5": "31eb50f6ef1e2878e9d013abf548497e",
                "sha256": "093c8ee445e49c0b5a072c415ecbe8a36386054f7d2ac733581cdeb4204f1009"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp313-cp313-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "31eb50f6ef1e2878e9d013abf548497e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 238542,
            "upload_time": "2025-08-05T15:30:55",
            "upload_time_iso_8601": "2025-08-05T15:30:55.441288Z",
            "url": "https://files.pythonhosted.org/packages/7a/d7/31f4d3bb6bd39eeb1ca7642bf6444cf5be28237db43fd7d2130546709a72/pymongoarrow-1.10.0-cp313-cp313-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f7aa93e610967788bbf01b3ad239674ff94b83188e73c7877ddfb271a4e3261",
                "md5": "4396786e560351e994ab37dd7e664708",
                "sha256": "03ca3c834578236e280050e0bb7c7c4f7163e9f96042fbb1844b5f95d1dd8a9a"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp313-cp313-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4396786e560351e994ab37dd7e664708",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 255323,
            "upload_time": "2025-08-05T15:30:56",
            "upload_time_iso_8601": "2025-08-05T15:30:56.614240Z",
            "url": "https://files.pythonhosted.org/packages/1f/7a/a93e610967788bbf01b3ad239674ff94b83188e73c7877ddfb271a4e3261/pymongoarrow-1.10.0-cp313-cp313-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45ce82fea4b3b9bb9edb72f497f863984cbbd49c7c9bf5c079d5c04eedd5f4dc",
                "md5": "515e0cbe9df39d5b4c19c23c62994bf7",
                "sha256": "e7693479e9c985ebe5dc0652e0a72bd045dd368c6c53cf78245187cb5e60eba0"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "515e0cbe9df39d5b4c19c23c62994bf7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1447495,
            "upload_time": "2025-08-05T15:30:58",
            "upload_time_iso_8601": "2025-08-05T15:30:58.210300Z",
            "url": "https://files.pythonhosted.org/packages/45/ce/82fea4b3b9bb9edb72f497f863984cbbd49c7c9bf5c079d5c04eedd5f4dc/pymongoarrow-1.10.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4330171b400f40eaac0be9d3907e4f25f02506bb372b6d1e5c55a2a52ae81b76",
                "md5": "62d0dc6692f49d36fa2404ab7bad5901",
                "sha256": "35409809601cd878d60603973611cbd98036e60631b71bc8e36b754ae366195b"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "62d0dc6692f49d36fa2404ab7bad5901",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1463983,
            "upload_time": "2025-08-05T15:30:59",
            "upload_time_iso_8601": "2025-08-05T15:30:59.471241Z",
            "url": "https://files.pythonhosted.org/packages/43/30/171b400f40eaac0be9d3907e4f25f02506bb372b6d1e5c55a2a52ae81b76/pymongoarrow-1.10.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a821f1d0f979ffb58d9da41442e70ac45fe24c40dd7cb5dff641487438d2124",
                "md5": "922d5d5f454133be6643ddeb868ba194",
                "sha256": "3d96b31efc65d63fe1ed69e29ae8ca1f45fd3f2099e62a80a27936d305966925"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp313-cp313t-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "922d5d5f454133be6643ddeb868ba194",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 246788,
            "upload_time": "2025-08-05T15:31:02",
            "upload_time_iso_8601": "2025-08-05T15:31:02.344845Z",
            "url": "https://files.pythonhosted.org/packages/8a/82/1f1d0f979ffb58d9da41442e70ac45fe24c40dd7cb5dff641487438d2124/pymongoarrow-1.10.0-cp313-cp313t-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d7746303447f5d81a0609a0210be6d61f67086f6e998fc2a976512938659311",
                "md5": "e8a8462d52d2fa3bc131b55114014397",
                "sha256": "0141f081944100026512d7e1d9da37c3c6414954909cb4f8951e0ef3e4cb6f61"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp313-cp313t-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e8a8462d52d2fa3bc131b55114014397",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 261381,
            "upload_time": "2025-08-05T15:31:03",
            "upload_time_iso_8601": "2025-08-05T15:31:03.485329Z",
            "url": "https://files.pythonhosted.org/packages/0d/77/46303447f5d81a0609a0210be6d61f67086f6e998fc2a976512938659311/pymongoarrow-1.10.0-cp313-cp313t-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a119c1a1d7aea6d1b444b9c6cf0edf708b55bfe5b1824b119f80960f86ad843f",
                "md5": "07652b53d361135fab8557a82df15362",
                "sha256": "eaf884a76a12b373ad8e0faeb18ba12746d374880508e212f88a07e0b6798def"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "07652b53d361135fab8557a82df15362",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1474811,
            "upload_time": "2025-08-05T15:31:05",
            "upload_time_iso_8601": "2025-08-05T15:31:05.006727Z",
            "url": "https://files.pythonhosted.org/packages/a1/19/c1a1d7aea6d1b444b9c6cf0edf708b55bfe5b1824b119f80960f86ad843f/pymongoarrow-1.10.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8007b8f031c58c5391dfffb8b9cabbd1b2163c584029d1d1259537f535dd240e",
                "md5": "33a7394150190b7282caffa7f4fca825",
                "sha256": "efeee960e1b7f2e1307e0fa41f04a35be4e1c6f8918f2c091ae71e503f02a126"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33a7394150190b7282caffa7f4fca825",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1470376,
            "upload_time": "2025-08-05T15:31:06",
            "upload_time_iso_8601": "2025-08-05T15:31:06.314203Z",
            "url": "https://files.pythonhosted.org/packages/80/07/b8f031c58c5391dfffb8b9cabbd1b2163c584029d1d1259537f535dd240e/pymongoarrow-1.10.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c99c91680c20f8f8c24b6d7c66a03fe7d48b0b3fe72ded5df5f69423f216637b",
                "md5": "7d8057fa12803ab1fb644e0626d1e18d",
                "sha256": "89f12dfd9f4a9801e5c54e0e0dd6669a308531e8853f2db025b26e8f769aac1f"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7d8057fa12803ab1fb644e0626d1e18d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 223533,
            "upload_time": "2025-08-05T15:31:01",
            "upload_time_iso_8601": "2025-08-05T15:31:01.200491Z",
            "url": "https://files.pythonhosted.org/packages/c9/9c/91680c20f8f8c24b6d7c66a03fe7d48b0b3fe72ded5df5f69423f216637b/pymongoarrow-1.10.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6c90ad9409ecedeb8721c2809990f994ab3e479fefaf183749862fa5444ebfd",
                "md5": "bdabf36696dcd0faa5a3f0520d6a2b10",
                "sha256": "f19547954d5c33f74b90f8d462477a357e32176e93bee19a1f5c4580a0880c71"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp39-cp39-macosx_12_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bdabf36696dcd0faa5a3f0520d6a2b10",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 240187,
            "upload_time": "2025-08-05T15:31:07",
            "upload_time_iso_8601": "2025-08-05T15:31:07.568833Z",
            "url": "https://files.pythonhosted.org/packages/b6/c9/0ad9409ecedeb8721c2809990f994ab3e479fefaf183749862fa5444ebfd/pymongoarrow-1.10.0-cp39-cp39-macosx_12_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64f5cc57a3ecd75c1c43379f85bd786e94a4ac35964fcdcae8b82a70908e4845",
                "md5": "436a6336592b47875b46c781c562c4e6",
                "sha256": "838ed9bd62eaeb6a0993e8edffd2f83f840b7643c16e3eee28a2996d29a4b8e0"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp39-cp39-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "436a6336592b47875b46c781c562c4e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 256804,
            "upload_time": "2025-08-05T15:31:09",
            "upload_time_iso_8601": "2025-08-05T15:31:09.138657Z",
            "url": "https://files.pythonhosted.org/packages/64/f5/cc57a3ecd75c1c43379f85bd786e94a4ac35964fcdcae8b82a70908e4845/pymongoarrow-1.10.0-cp39-cp39-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd4235e20234b0203127f3c1397cd5000c63ede1744efc5e157c387f323a3d0d",
                "md5": "e515fde42205aa58295ca6686ca322e5",
                "sha256": "908ae37294319ae40576454a0e5d0f51972d3bef6d047eb177d05e6ca8834919"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e515fde42205aa58295ca6686ca322e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1449565,
            "upload_time": "2025-08-05T15:31:10",
            "upload_time_iso_8601": "2025-08-05T15:31:10.310338Z",
            "url": "https://files.pythonhosted.org/packages/bd/42/35e20234b0203127f3c1397cd5000c63ede1744efc5e157c387f323a3d0d/pymongoarrow-1.10.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "da61a446cf6e11a0666773f6052cead001abf0e112f180197bc1b7644c3b5d34",
                "md5": "65a9c8df3e11792dfe7e11b6172c23ba",
                "sha256": "551e348ed51af9339dca6cb89119124971a59ef1aa6a6723a4cb77cbe73b22ef"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "65a9c8df3e11792dfe7e11b6172c23ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1458732,
            "upload_time": "2025-08-05T15:31:11",
            "upload_time_iso_8601": "2025-08-05T15:31:11.606268Z",
            "url": "https://files.pythonhosted.org/packages/da/61/a446cf6e11a0666773f6052cead001abf0e112f180197bc1b7644c3b5d34/pymongoarrow-1.10.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77fb779d1b48ad6aa786f019eb6d182962a4b774c000900d81253b0a95a6a248",
                "md5": "f47f35135bb523bd37daadb104f290cc",
                "sha256": "a6c73a3b7615415c3aa3c764c15f84b66e6e26b341390d6383d1eb5366b5049e"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f47f35135bb523bd37daadb104f290cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 224208,
            "upload_time": "2025-08-05T15:31:12",
            "upload_time_iso_8601": "2025-08-05T15:31:12.900553Z",
            "url": "https://files.pythonhosted.org/packages/77/fb/779d1b48ad6aa786f019eb6d182962a4b774c000900d81253b0a95a6a248/pymongoarrow-1.10.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3eb259a3f9a5d3740a3ebeb371359b555c981955d9eb8f6c83e402868aa890b4",
                "md5": "984ff222a55a9fb09de1f1cdea919c9a",
                "sha256": "e0ed9f6ebdd9863d03dfce796730e047dfce5b1426b6a48991ab55eefad51398"
            },
            "downloads": -1,
            "filename": "pymongoarrow-1.10.0.tar.gz",
            "has_sig": false,
            "md5_digest": "984ff222a55a9fb09de1f1cdea919c9a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 65712,
            "upload_time": "2025-08-05T15:31:14",
            "upload_time_iso_8601": "2025-08-05T15:31:14.182147Z",
            "url": "https://files.pythonhosted.org/packages/3e/b2/59a3f9a5d3740a3ebeb371359b555c981955d9eb8f6c83e402868aa890b4/pymongoarrow-1.10.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-05 15:31:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mongodb-labs",
    "github_project": "mongo-arrow",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pymongoarrow"
}
        
Elapsed time: 1.25116s